Bitcoin Forum
May 04, 2024, 06:00:59 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 ... 514 »
2481  Bitcoin / Hardware wallets / Re: Thoughts about Passport hardware wallet on: July 29, 2020, 03:21:10 AM
BTW, I don't get, why camera is needed in hardware wallet?
So it can be fully "air gapped"... it'll be for scanning QR Codes etc... aside from the SDCard there is no other way for it to be able to read data in... it doesn't have BT or USB.
2482  Bitcoin / Hardware wallets / Re: Hardware Wallets - Key Index Attack on: July 29, 2020, 03:09:15 AM
Theoretically... that attack could be implemented on almost any HD wallet... I don't see how this would be limited to just hardware wallets? Huh You would simply need to create a clone of "OpenSourceHDWallet"™ that generates keys from incredibly large indexes...

Although, if you can trick someone into downloading your malware, it's probably just easier to steal their Bitcoins directly with fake keys/seeds or sending to your own address rather than attempting to go down the ransomware route.



Also, I don't believe that the instance of coin loss in your 3rd reference is related to something like this given the evidence I found...

And in the 2nd reference... it looks like the "missing" coins might have eventually moved in this transaction (some 2 months after the original transaction): https://www.blockchain.com/btc/tx/b89f1fd84eb1c64dd77acbe05625c91438585ecb696cb3debf7033a88995a412

Not sure if that was the original owner or a thief/hacker tho! Huh Or if that was the UTXO from the "bad transaction" as the OP seems to have removed TransactionIDs from and/or deleted posts and hasn't logged in since March... would be interesting to know if it was the OP... and if so, did they figure out where the coins went and how they recovered them??!?
2483  Bitcoin / Wallet software / Re: Have we got any NFC wallets? on: July 29, 2020, 12:26:48 AM
I'm fairly sure I've seen NFC capable "hardware wallets"... as in, you hold the card next to your phone to be able to sign transactions etc.

Coolwallet.io is possibly the one I'm thinking of... but I also found nfcwalletcard, but I don't think that is what I was thinking of.

The technology is certainly available, so I'm sure someone is "working on it" Wink
2484  Bitcoin / Development & Technical Discussion / Re: Making transaction in python using pybitcointool / pycryptotool on: July 29, 2020, 12:07:41 AM
... And why is tx serialized and pushed instead of tx2 and tx3 which are signed ?
Probably the result of a typo... as, logically, given the pattern the dev was using, it should have been "tx3" being serialized. Tongue


I believe that the reason this code actually works is the way Python deals with mutable object references and they way they are passed into/out of functions... In essence, tx2 and tx3 are actually just references to the original "tx" object (although I'm not a Python expert, so feel free to correct me if I'm wrong!)...

So, when the code is passing "tx2" and "tx3" to the sign() function... we're actually using the original "tx" object. So when the (accidental?) serialisation of "tx" happens at the end, it all works out. Wink
2485  Bitcoin / Bitcoin Technical Support / Re: Questions about Bitcoin Technical Support on: July 28, 2020, 11:03:28 PM
I concur with ETFbitcoin, if you're wanting to delve into the "technical" side of Bitcoin, then starting with Mastering Bitcoin is a good idea.

I'd also recommend firing up testnet (or regtest) and getting yourself some "free" coins and then simply try experimenting. Try the basics of sending/receiving... try handcrafting transactions... try multisig... try P2SH... try using the PSBT stuff... experiment with different wallets (again, on testnet/regtest) if you can.

And if you get stuck somewhere, or don't understand something, ask for help... There are plenty of knowledgeable folks around here Smiley
2486  Bitcoin / Bitcoin Technical Support / Re: exires after? on: July 28, 2020, 10:52:52 PM
I have to say, I'm not an overly huge fan of the "new" receive tab in Electrum, to be honest... Seems overly complicated to just get a receiving address Undecided

Forcing users to create a "request" that has a description, amount and an "expiry date" seems somewhat convoluted and potentially confusing for something as simple as trying to provide an address to another party... and yes, I realise that you don't actually have to enter any of that information to create the "request"... but if you put all those boxes on the screen it seems to imply that you do. Undecided
2487  Bitcoin / Bitcoin Technical Support / Re: How to calculate bitcoin segwit transaction fee and some other questions. on: July 28, 2020, 10:45:25 PM
But I did not see the formula on another site, so this makes it not authentic yet for me, supposing I have seeing it on two or three sites, I would have believed.
Just to confirm for you what the others have indicated... Direct from Bitcoin Core in their Segwit Wallet Developers guide:
Transaction Fee Estimation
  • Instead of transaction size, a new metric is defined, called “virtual size” (vsize)
  • vsize of a transaction equals to 3 times of the size with original serialization, plus the size with new serialization, divide the result by 4 and round up to the next integer. For example, if a transaction is 200 bytes with new serialization, and becomes 99 bytes with marker, flag, and witness removed, the vsize is (99 * 3 + 200) / 4 = 125 with round up.
  • vsize of a non-segwit transaction is simply its size
  • Transaction fee should be estimated by comparing the vsize with other transactions, not the size.
  • Developers should be careful not to make an off-by-4-times mistake in fee estimation.


There is also a lot of other really useful information in that guide relating to Segwit.
2488  Bitcoin / Bitcoin Technical Support / Re: Why can't I compile the bitcoin source code? on: July 28, 2020, 10:18:28 PM
And what error(s) or info is shown in "C:\Users\LE\Pictures\vcpkg-master\buildtrees\bzip2\msys-pacman-x86-windows-err.log"? Huh

Anything useful that might give a clue as to why the bash.exe command failed? Huh
2489  Bitcoin / Bitcoin Technical Support / Re: My Patience Is Running Out! on: July 28, 2020, 10:13:00 PM
I find my wallet's fee estimation quite low, but there's an option to set the mining fee manually.
Use something like mempool.space to improve your approximation.
In addition, you can also use https://jochen-hoenicke.de/queue/#0,24h to get some graphical presentations of the network "congestion"... by hovering over the right hand edge of the bottom graph, you can also get a rough idea of what a "good" fee rate might be...

If you aim around the 0.5MB mark, you'll "normally" get next block or 2... however there are caveats on that.

For instance, if the next block takes an hour to find, then you might find that your transaction has been pushed down the stack by the time the block is found, so you might have to wait some more. Also, this assumes that there aren't any prior unconfirmed transactions that your current transaction is relying on (such as in your case).

To prevent a similar situation in the future, it might also be worth seeing if there is a setting in your wallet that will prevent it from attempting to spend "unconfirmed coins".
2490  Bitcoin / Bitcoin Technical Support / Re: Found 74k Bitcoin on my old machine, how i can recover ? on: July 28, 2020, 09:45:12 PM
I concur with Dave, Abdussamad and the others. The most likely scenario is that this wallet.dat is from some "Bitcoin compatible" altcoin.

If you load an altcoin wallet.dat in Bitcoin Core, it will show a Bitcoin address generated from the altcoin public key... You should be able to open (a copy of) the wallet.dat in a text editor and search for "name" (or use Pywallet etc)... that should show you the actual coin address and you might be able to figure out from the address prefix what the coin actually is.

Something like this: https://bitcoin.stackexchange.com/questions/19589/how-to-determine-what-type-of-coins-a-wallet-dat-contains
2491  Economy / Service Announcements / Re: [ANN] ChipMixer.com - Bitcoin mixer / Bitcoin tumbler - mixing reinvented on: July 28, 2020, 09:25:09 PM
after destroying the session i got the same again
Oh... well in that case, I'd agree that it doesn't seem right. Are you still able to see the details (like the deposits, private keys etc) of the "old" session, once you have destroyed it and then been given the same token? Huh
2492  Bitcoin / Development & Technical Discussion / Re: Fork Sweeper on: July 28, 2020, 09:09:06 PM
Oh, Yeah... true.

Hmmm, I had vague recollections that it would actually create raw unsigned transactions for you... I must be getting it confused with another website. Undecided

In my defence, it was "years ago" that all the fork craziness happened. Wink Tongue
2493  Bitcoin / Wallet software / Re: [RESOLVED] Atomic wallet. Bitcoin sent to a Dogecoin address... on: July 28, 2020, 08:52:23 PM
Glad that you managed to get it all sorted... and thanks for updating us on the result... I like happy endings and it's nice to know that we were able to help out.

Also, very happy to hear that Atomic have fixed this issue in their wallet!
2494  Economy / Service Announcements / Re: [ANN] ChipMixer.com - Bitcoin mixer / Bitcoin tumbler - mixing reinvented on: July 28, 2020, 08:43:49 PM
That problem with the remaining session code ist still present, even in tor.
It says on the initial page where the session token is issued (and all subsequent pages):
Quote from: chipmixer.com "Step 0" Page
Session ends 7 days after it was started. Time remaining 167 h 59 min
If your browser is unstable, keep this link to recover the session.
If you need to extend session (input transaction is delayed), us this link
So, I suspect that the persistent session code is "by design"... Are you reconnecting within the 7 day period? Or are you still getting the same session token after the 7 days have expired? Huh
2495  Bitcoin / Wallet software / Re: Atomic wallet. Bitcoin sent to a Dogecoin address, how was that possible? on: July 26, 2020, 01:52:29 AM
Holy crap, why?
What were they thinking?
I wouldn't mind finding out the answers to those questions myself... I suspect we'll never know... but I suspect that it is probably related in some part to Atomic being a multicurrency wallet and it's need to be able to generate different coin addresses from the same private keys etc. Huh

Still, that's still some very very very VERY poor (as in non-existent) address validation Undecided
2496  Bitcoin / Armory / Re: armory in ubuntu for newbees on: July 24, 2020, 10:09:38 AM
So far, I learned four things
- A system with some 400 Gbytes of HD is needed to store the blockchain.
Don't forget you'll need room for the OS and applications etc... go 1TB+ if you can

Quote
- When downloading bitcoin core, use the tgz and not the snap. With the tgz, the blockchain files will be stored in the .bitcoin/blocks directory where armory looks for them.
Not actually necessary. You can store the bitcoin blocks wherever you want... you just need to configure Armory appropriately. For instance, I have my Bitcoin Core blocks folder in a "non-standard" location... but by setting the paths appropriately in Armory (using "in app" settings or .conf files), Armory is able to find them just fine Wink

Quote
- Disable bitcoin core pruning.
VERY important! Wink


Quote
- Wait for bitcoin core to fully synchronize before launching armory.
Also a very good idea.


I will install ubuntu 18.04 lts Smiley
I have tested it on ubuntu 18.04 LTS and it works OK.
2497  Bitcoin / Wallet software / Re: Atomic wallet. Bitcoin sent to a Dogecoin address, how was that possible? on: July 24, 2020, 09:59:07 AM
Here is a test wallet, I sent some BTC , then sent it to a Doge address, it went through just like how OP explained, there is 0 relationship between the address Atomic wallet sends btc to and the seed, I tried all different combination like using Doge's PK to magically generate a BTC address, nothing worked, the address they send to is pretty strange
I think I have worked out what they have done... and, if you can get the private key for the DOGE address, I think the BTC could be recoverable!

Quote
...
Doge Address which BTC was sent to:
Code:
D95aC8TEQrbCRWqFVhYHzSj17uB7s8yd74
...
BTC addresss Atomic (magically) sent to:
Code:
14wUesWb7SgutWeem7YjSgZQEmSpUWKPm1

If we take the DOGE address and Base58Check Decode it:
Quote
1e2b35ec3cee8bf29b2e52c29add024953c31294eeb5dc265f

and if we take the "mystery" BTC address and do the same:
Quote
002b35ec3cee8bf29b2e52c29add024953c31294ee28c75ad0


Essentially, Atomic seems to have simply converted the DOGE address from Base58Check to HEX, then stripped off the DOGE "address prefix" (0x1e == "D") and the "checksum bytes", added the BTC address prefix (0x00 == "1") and then recalculated and appended the checksum and then converted from HEX back to Base58Check to end up with a BTC address... Undecided

Basically, if you can get the HEX Doge PK, you can get to the BTC address:

(Using Mikeywith's example)

DOGE PK:
QRw8xX9VAw67f9db8hqbN4EAWrj3Cwu1jZHDgoR6hg2nKBaKc7gD

--> HEX PK (using "wallet details" tab on DOGE paperwallet generator (TIP: click "skip" Wink):
6308E894B22395F94EF2E935762ADB9A4D5DCAAB672FAEDD51908FD24C6E2902



--> BTC (compressed) addy (using bitaddress.org):
14wUesWb7SgutWeem7YjSgZQEmSpUWKPm1



So, if OP can get the DOGE website to extract the DOGE private key, they'll be able to recover the full amount of BTC
2498  Bitcoin / Electrum / Re: Importing Paper wallet to Electrum - Decrypt the Private Key on: July 24, 2020, 02:12:12 AM
Just go to the paper wallet tab (instead of single wallet), write 1 (since you only want to generate one address) in the "addresses to generate" and tick "BIP38 Encryption", it will then allow you to write the encryption passphrase.
If you just want the raw private key/address data... the "Bulk Wallet" tab is "cleaner". Functionally, it is identical to the paper wallet tab, just without the pretty pictures Tongue


As for the method of securing it by cutting and scrambling... I'm always a bit skeptical when people come up with their own unique systems for achieving this. It's hard to determine the actual level of security it gives without knowing the full process.
2499  Bitcoin / Electrum / Re: Electrum 4.0.2 keeps Synchronizing on: July 24, 2020, 01:58:11 AM
Can confirm... I had a similar issue until I updated to Electrs 0.8.5... it was the "fee return" error patched here: https://github.com/romanz/electrs/commit/e55381fa6643661c0dad2c454415ed997084a13d

Without it, the client just keeps disconnecting/reconnecting. Once you update and restart electrs, it should start working properly again. Wink
2500  Bitcoin / Electrum / Re: Create a new seed in Electrum: any way to replace 2 words and keep seed valid? on: July 24, 2020, 01:55:42 AM
When I create a new wallet in Electrum v4 and choose to create a new seed (type segwit), the program generates 12 words.

Of course I can't do this so easy because the checksum is violated, If I understood correctly, the last word is control? So I agree to replace it too.
no, you are confusing BIP39 seeds with Electrum seeds. they are different and use a different algorithm. Electrum seeds don't have any checksum, instead they have a version bit(s) that has to be generated after computing HMACSHA512 of the seed phrase.
THIS^^

So, you're likely to have more success using BIP39 seeds to do what you're trying to achieve... although that comes with the caveat that Electrum make no guarantees that they will always support BIP39 (although I don't see any reason they'd drop the support at this point in time).

As others have mentioned, it seems like you're trying to memorise your seed... while that is admirable, it is a risky strategy for securing your seed mnemonic and not recommended.
Pages: « 1 ... 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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 ... 514 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!