Bitcoin Forum
June 17, 2024, 02:47:16 AM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 [99] 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 ... 837 »
1961  Bitcoin / Bitcoin Technical Support / Re: Trying to run Coinbase multisig-tool locally on Linux on: March 17, 2023, 09:53:20 AM
What error do you see in the console (F12) now?
1962  Bitcoin / Bitcoin Technical Support / Re: How do timelocked transactions work? on: March 17, 2023, 08:49:37 AM
By Mistake? Yes, I was trying to create a two-factor authentication wallet willingly because I thought it would be more secure. The error says: Could Not Retrieve Terms of service: ErrorConnectingServer(TimeoutError())
There are some small security benefits to using a 2FA wallet, but it comes with an additional cost in fees (both larger transaction fees and fees to the third party TrustedCoin), as well as a loss of privacy due to the reliance on said third party. Such a set up can be better achieved by making your own multi-sig wallet between (for example) your computer and your phone, or by using a hardware wallet.

However, none of that matters here. In this case you are simply exporting a single private key in order to make your timelocked address. Any 2FA system will be bypassed by doing this, so it achieves nothing.
1963  Other / Off-topic / Re: Foxpup's Merit Cycling Club 🦊 🎉 🔞 4th Anniverary Foxhole "Festivities" [NSFW] on: March 17, 2023, 08:43:27 AM
Where is that FLÜGGÅӘNK∂€ČHIŒßØLʃÊN? Is it me the only one which did not have a slice?
Don't worry. There is plenty to go around! (Mildly NSFW gif.)
1964  Bitcoin / Bitcoin Technical Support / Re: Trying to run Coinbase multisig-tool locally on Linux on: March 17, 2023, 08:36:49 AM
Is the alternative "HTTP Server method" the "Running Locally" / make run method?
The make run command simply compiles the multisig.js file (which seems to be working fine for you - you can tell for sure by the presence of a file called multisig.js in your multisig-tool folder), and then attempts to launch an HTTP server. Running an HTTP server is the alternative to trying to launch chrome with --allow-file-access-from-files.

Since the make run command is trying to launch an HTTP server using a Python 2 command, and you have Python 3 installed, then instead of using make run you can just launch the HTTP server directly using the command I gave above:
Code:
python3 -m http.server

You should run it from your multisig-tool folder, the one with "index.html" in it. Open a terminal here and enter the command. If it has worked, it should say something like:
Code:
Serving HTTP on 0.0.0.0 port 8000 (http://0.0.0.0:8000/)

Then you just open any web browser, and navigate to that address - http://0.0.0.0:8000. The tool will load and hopefully(!) be fully functional.
1965  Bitcoin / Bitcoin Technical Support / Re: Trying to run Coinbase multisig-tool locally on Linux on: March 16, 2023, 09:29:40 PM
index.html:1 Access to fetch at 'file:///home/revived/multisig-tool/lib/multisig/bip38.js' from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes
This means your --allow-file-access-from-files isn't working as intended. I've never used Chrome so can't advise otherwise here. I use the alternative HTTP Server method instead, which works just fine. Did you make any headway on that?

The command given above is for Python 2:
Code:
python -m SimpleHTTPServer

If you are using Python 3, try the following command:
Code:
python3 -m http.server
1966  Bitcoin / Bitcoin Technical Support / Re: Trying to run Coinbase multisig-tool locally on Linux on: March 16, 2023, 09:18:45 PM
What is the next step? Am I supposed to open the index.html file? Because using Chrome to simply use the web version is not an option as the API is broken (I tried it again, which resulted into "Failed!" addresses.)
Yes, open your local copy of index.html.

Once you open it, hit F12 on your keyboard and click on the Console tab. Does it show you any errors?
1967  Bitcoin / Bitcoin Technical Support / Re: How do timelocked transactions work? on: March 16, 2023, 07:38:49 PM
Leo? Oe Leo? A bit puzzled. Let me say buddy instead.
Leo. Tongue

I downloaded an Electrum wallet from Electrum.org for windows. It's installed fine. When I tried to create a wallet, it stuck in the last step where I have to accept the TOS and I can't click on Accept button.
There is no ToS to accept when creating a standard Electrum wallet. Are you trying to create a two-factor authentication wallet by mistake?

Do you know if coinb.in will be able to generate a segwit address or not? Segwit transactions are the cheapest I believe.
It won't generate a segwit timelocked address, no.

One more question, If I send my coins to a locked wallet. They will get a network confirmation. Right?
Correct. Transactions which send coins to your timelocked wallet will be like any other transaction and will confirm normally.
1968  Bitcoin / Bitcoin Technical Support / Re: How do timelocked transactions work? on: March 16, 2023, 06:44:48 PM
I am still wondering if it meets my needs. Can I send $10 every week to the locked wallet? Or it's just a one-time transaction?
Yes, absolutely. I've skimmed through the guide you linked and I can't see any major issues. It will create an address which you can send as many transaction as you like to, and none of the coins sent to that address can be redeemed until after the date or block height that you have chosen. The most important parts are to ensure you are downloading the legitimate versions of Electrum and Coinbin (i.e. download them from Github and verify their signatures), do the whole process on an offline (ideally permanently airgapped) device to protect your private keys, and to save the redeem script that you generate.

All you are using Electrum for here is generating a keypair to use in the Coinbin script. You could use any good piece of software, such as Bitcoin Core, to generate a keypair if you prefer.

I would also suggest that something like $50 a month is probably better than $10 a week, otherwise you will end up spending a large amount on transaction fees when you need to consolidate all your small inputs.

Edit: Seems not many people visit this section. I will write in a more crowded section.
For a technical question such as this, you are exponentially more likely to get useful replies rather than generic spam by posting in this board than by posting in a board such as Bitcoin Discussion.
1969  Bitcoin / Development & Technical Discussion / Re: 1111111111111111111114oLvT2 on: March 16, 2023, 12:12:00 PM
Sorry to raise this question again, but I see that Bitcoin Developer lists this as a required field in the second parameter (which is also required). If I do not want to make an OP_RETURN output, should I just pass a {"data": ""} argument? Or will I get away with leaving the object out, as I've seen Bitcoin Developer examples over here do?
Just leave it out. It is "required" only if you want to create a data output. If you don't want a data output, it isn't required and can be left out entirely.
1970  Other / Off-topic / Re: Foxpup's Merit Cycling Club 🦊 🎉 🔞 4th Anniverary Foxhole "Festivities" [NSFW] on: March 16, 2023, 10:17:48 AM
I keep learning new words!
Well, let's just hope you don't suffer from hippopotomonstrosesquippedaliophobia!
1971  Other / Off-topic / Re: Foxpup's Merit Cycling Club 🦊 🎉 🔞 4th Anniverary Foxhole "Festivities" [NSFW] on: March 16, 2023, 08:37:33 AM
I be like "Slob fluggin' my blobbitynob, F-F-Foxxx...*".
As you wish. BRING ON THE FLÜGGÅӘNK∂€ČHIŒßØLʃÊN!
1972  Bitcoin / Hardware wallets / Re: Square is considering making a hardware wallet for Bitcoin on: March 15, 2023, 09:37:06 PM
You can say that this is bad, but this will not stop their customers from using this device.
I don't disagree with you, that there are lots of people who will think that this is a good thing and who will absolutely buy this device.

But it is a triumph of marketing on behalf of companies such as Block and centralized exchanges that they have convinced people that they are too stupid/careless to be able to safely write down 12 words and keep them safe, and that they need to trust third parties with their coins, keys, seed phrases, or recovery processed instead. The whole point of bitcoin is that you don't need to rely on third parties.
1973  Bitcoin / Development & Technical Discussion / Re: Can time stamp be manipulated? on: March 15, 2023, 08:30:16 PM
Block explorers typically display the timestamp of when a block was initially created by the miner, before it was verified and added to the blockchain network.
No, they don't. They show the timestamp that miner used when they found a hash which met the target.

As for whether the timestamp can be manipulated or modified by the miner, it is technically possible but very difficult to do so.
It is absolutely trivial to do. A miner can freely pick a timestamp within about a 3 hour window, on average.

but the network uses a consensus algorithm to ensure that blocks are added to the blockchain in the correct order based on their timestamps.
Blocks are added based on block height, not timestamp. Block timestamps frequently go back in time.

Any attempt to manipulate the timestamp would likely be rejected by the network
Only if it were outwith the window as described above.



This reads like it was written by ChatGPT or similar. Can anyone confirm and report?
1974  Bitcoin / Bitcoin Technical Support / Re: Paper wallet on Android phone on: March 15, 2023, 08:25:48 PM
you should have a list of specific urls and website that you are gonna move from Google or type manually, no one should visit websites other than specific ones.
I do not know anybody who browses the internet in that way. And even if you do, that does nothing to protect you against your final destination being compromised or the many possible attacks which do not require you to connect to a specific website first.

For instance, I have created bitcoin wallet in 2021, on a laptop that was connected to the internet. I have some $$$$ into it. Till today, nothing suspicious has happened and I am in total control of my funds, at least no one has stolen them from me.
I also have a number of hot wallets on a number of different phones over many years, and have had nothing happen to them. I continue to use such wallets as my daily spending wallets. But I am under no illusion that although I have been safe thus far, these wallets have the worst security of any wallet I use, and therefore I only ever store an amount I am willing to lose in these wallets. They are for convenience, not safety. Given that OP is talking about buying bitcoin and holding it for "a very long time", a simple hot wallet like this would be a very poor choice.
1975  Other / Off-topic / Re: Foxpup's Merit Cycling Club 🦊 🎉 🔞 4th Anniverary Foxhole "Festivities" [NSFW] on: March 15, 2023, 07:53:47 PM
Four years really is a phenomenal achievement. I continue to be honored to be a member of this most exclusive of clubs!

Admit it, this is what you all came here to see
I've been waiting over 2 years for a fully uncensored version of this: https://bitcointalk.org/index.php?topic=5293897.msg55699259#msg55699259. Glad that day has finally arrived!

Local rules: No transphobia, homophobia, trypophobia, etc.
My only phobia is vestiphobia. Wink
1976  Bitcoin / Bitcoin Technical Support / Re: Paper wallet on Android phone on: March 15, 2023, 11:19:02 AM
Okay, I'm genuinely confident that if you visit only websites like Google
Google!? As in, the same Google that are infamous for hosting scams and malware, for accepting money from scammers to boost their scam sites to the top of search results, for accepting money from scammers to place scam ads everywhere, for hosting malicious apps on their playstore, and for harvesting data from your microphone and keyboard and storing it on their servers? Even if you think using Google is safe, all it takes is one wrong click to end up on one of the scams that they are quite happy to promote in exchange for payment. I'm not trusting the security of my wallets to one wrong click.

And even if you don't browse any websites at all, your device still has an internet connection meaning it is still a viable target for attacks.

He wants to hold long-term but his only option is android smartphone.
Hence the instructions I gave in the first post on this thread. These instruction, while still not perfect, are the best that can realistically be achieved using only a single smartphone and are far better than keeping coins in a hot wallet and hoping that you don't get any malware.
1977  Alternate cryptocurrencies / Service Discussion (Altcoins) / Re: Trust Wallet on: March 15, 2023, 11:03:10 AM
The site is Verirax.com.
It's a scam.

I mean, it is immediately obvious just looking at it that it is a scam, but if you spent 5 seconds searching online you would find dozens of other cookie cutter sites with different names using the exact same template. Here is one such example: https://ringmining.info/

They said upon completion of paying this tax, they will give me an ETH award double the tax (125091 USDT).
If anyone tells you to deposit money in order to be allowed to withdraw money, they are trying to scam you.

I have no idea how people throw around $300,000 in to any old shit they come across on Google without a second thought. Sorry OP, but you have lost everything. You will also lose any other money you give to these scammers.
1978  Bitcoin / Electrum / Re: I have only backup file but lost password and seed, i lost my btc on: March 15, 2023, 09:29:00 AM
Sorry if I'm missing something, but again I don't know of a scenario that would lead to the issue you've described.
When you are creating an Electrum wallet (or later adding a password to an already created Electrum wallet without a password) there is a checkbox which says "Encrypt wallet file". This is automatically checked, so in the vast majority of cases adding a password also encrypts the wallet file and therefore prevents you from opening it without the password. You can, however, uncheck this box, which will then only password protect the private keys. So you can open the wallet to view the transactions and addresses, but cannot spend without the password.

i think i opened without a password the back up file, then its a watch only wallet because i can see all the transations but still cannot use the btc, i believe this btc is lost, thank u for your help
If the wallet is truly watch only, then it will say that at the top of the wallet window. Something like "Electrum 4.x.x - WALLET_NAME [watching only]".

If it is not watching only, and you have simply forgotten the password, then you could attempt to bruteforce it using https://btcrecover.readthedocs.io/. This will require either for you to have some idea what the password might be, or to have used a weak password in the first place.
1979  Economy / Exchanges / Re: Is the Binance the next to bite the dust or FUD? on: March 15, 2023, 09:18:01 AM
This is good news for the market as now more people will be trusting bitcoin and Ethereum more than these stable coins.
If it takes an anti-bitcoin centralized exchange buying some bitcoin to convince someone to trust bitcoin more than a centralized fractional reserve scam stablecoin, then they really need to spend more time learning and less time throwing their money away on shitcoins.

If CZ was indeed serious and genuinly wanted to protect his users he would put the whole 1 billion USD into bitcoin only and not spread it across two other altcoins.
And miss an opportunity to pump his centralized BNB coin? The fact that he even puts BNB in the same category as bitcoin is laughable. BNB is just as centralized and just as risky as BUSD.
1980  Bitcoin / Hardware wallets / Re: Square is considering making a hardware wallet for Bitcoin on: March 15, 2023, 09:11:56 AM
This sentence from the second paragraph really does sum this whole thing up very well:

With a product that involves hardware, a mobile app, a public web presence, online purchase flow, recovery services that run on our servers, and so many other internal components, there’s a lot of surface area to cover as we validate our implementation.
That is an awful lot of things that could go wrong, a large attack surface, and lots of capacity for bugs and vulnerabilities. Compare to a standard hardware wallet which you can use with any open source software such as Electrum, and does not have any of this extraneous bloatware that Block are tacking on.

Also, why the hell would anyone want a recovery service that runs on their servers? I want a seed phrase which is under my control and my control only. Not some third party nonsense.

Quote
many of our internal beta customers are storing their bitcoin on custodial exchanges today
Exactly the kind of people you want designing and building a new hardware wallet, then. Roll Eyes Roll Eyes
Pages: « 1 ... 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 [99] 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 ... 837 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!