Bitcoin Forum
June 19, 2024, 05:21:44 PM *
News: Voting for pizza day contest
 
  Home Help Search Login Register More  
  Show Posts
Pages: « 1 ... 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 ... 309 »
1181  Bitcoin / Electrum / Re: can't access electrum wallet on: March 22, 2023, 05:26:02 AM
In the folder where "wallets" folder is located, there should be a file named "config"

Does the "recently_open" have more than one path?
The "recently_open" paths in the config file is the same as the list in the GUI's menu: "File->Recently open".
Both lists has a limit of 5 paths to a wallet file.

In my opinion, using the menu will be much more simpler.
1182  Bitcoin / Electrum / Re: can't access electrum wallet on: March 21, 2023, 01:45:56 PM
3. When I did the restore the box said the seed type was "Electrum". I did not change it.
Electrum will never show "Electrum" after pasting an electrum seed.
It's either "segwit", "standard", "2fa-segwit", "2fa" or "old" if BIP39 checkbox isn't ticked, otherwise, it'll be "BIP39: (checksum: failed)".

2. -snip- Honestly, it's been so long since I was in this wallet I don't remember if I ever saw a balance of more than "0". I think, early on, a balance did show but I'm not absolutely sure. I found it easier to check the blockchain site. All the addresses begin with bc1q.
It's hard to call that it's caused by a malware/hacker since you've mentioned that the funds are still there and it's more than a year.
There's a possibility that you've been unintentionally using a different wallet file during those times.

You can try to search your drive for any "wallets" or "electrum_data" folder
and see if there are files inside without any extension but with the wallet name that you've used or "default_wallet" / "wallet_1" if you didn't named it.
Since there are only 8 transactions, the size should be only around 20KBħ, and will show base64 characters if your open it with a text editor or readable text if it's not encrypted.
1183  Bitcoin / Electrum / Re: can't access electrum wallet on: March 21, 2023, 05:07:09 AM
Nothing in addresses. Command returned "Traceback"
ismine() command isn't necessary if you've checked the addresses tab thoroughly.
Because it'll only check the current keypool which is as much as the addresses listed in your addresses tab.

If you want, you can generate more to check it you somehow used an address at a higher index. (it's highly-unlikely though)
To generate more, enter the command:
Code:
[wallet.create_new_address(False) for i in range(500)]
Then use ismine() command.
Note: You can replace "500" with the amount of address that you want to generate; re-enter the command but with "True" to generate change addresses.

-snip- Did wallet new/restore using seed phrase. No luck.
Have you extended your seed phrase by ticking "Extend this seed with custom words" when you created the wallet?
Because if so, you'll have to enter the exact same seed phrase extension (a.k.a Passphrase) to restore the correct wallet.
1184  Bitcoin / Electrum / Re: How to send a NFT i minted with Electrum on ordinal wallet on: March 20, 2023, 01:40:48 PM
-snip-
-snip- but it seems i fond the solution i am just gonna transfer my wallet to sparrow and then send it from sparrow to ordinals
AFAIK, Sparrow also cannot send ordinals, it can only receive. (CMIIAW please)
If you're talking about the BIP39 seed phrase export option in Sparrow, it wont work since importing an Electrum wallet file to Sparrow wont produce a BIP39 seed that you can export to other wallets.

With that, your option is to export your address's private key which can be done by right-clicking the address in the "Addresses" tab.
However, it depends if ordinal wallet accepts individual private keys.

Another option is to export Electrum's master private key via console command: getmasterprivate()
and convert it into "xprv" via command: convert_xkey(xkey="your_zprv_key",xtype="standard")
But again, the problem is if ordinal wallet supports importation of master private keys.
("View->Show Addresses" and  "Show Console" to enable the mentioned tabs)
1185  Bitcoin / Electrum / Re: My wallet has been hacked. What to do? on: March 20, 2023, 10:05:57 AM
-snip- I can upload previously used standalone - it wasn't deleted. And it was checked by an antivirus without any warnings as well as all other files on my laptop
You can check the validity of each executable yourself by verifying their signatures.

Follow this guide to know how to verify your Electrum download: https://bitcoinelectrum.com/how-to-verify-your-electrum-download/
Signature files (.asc) for the older versions can be downloaded here: https://download.electrum.org/

By the way, Antivirus can't be a good indicator since even real Electrum, specially the older versions usually have false-positive detection from some Antivitus software.
1186  Bitcoin / Electrum / Re: How to send a NFT i minted with Electrum on ordinal wallet on: March 20, 2023, 09:53:26 AM
I'm not a fan nor expert in ordinals NFT but AFAIK Electrum doesn't support ordinals and currently can't create Taproot addresses.

So why and how did you managed to receive it to Electrum in the first place?
Is your wallet "[imported, watching only]"?
1187  Bitcoin / Bitcoin Technical Support / Re: 2013 wallet. Only wallet.aes.json file on: March 20, 2023, 09:36:05 AM
Recovery tool can find the password?
Take note that if you ever used that tool to decrypt your wallet.aes.json file (after recovering the password),
the private keys in the output will be in plain BASE58 format which doesn't have any network code, flag and checksum.
In other words, it's not readily compatible with most Bitcoin wallets.
It has to be encoded into WIF private key to be compatible.

The advantage though is you wont have to rely on their website and everything can be done offline where its safe.
There's no limit on how many tries so start with it using your mentioned 1~20 possible passwords.
1188  Bitcoin / Development & Technical Discussion / Re: Difference in getbalance and total sum of listunspent on: March 19, 2023, 07:22:38 AM
-snip-    "used": 0.00021342
"used" doesn't mean that those are spent, it only means (in layman terms) that you've received bitcoins through an addresses, spent it and then received coins through that address again.
In case you unintentionally enabled the flag, you can disable it with:
Code:
bitcoin-cli setwalletflag "avoid_reuse" false


On a side note, accumulating more UTXOs with small amounts like those could end up causing you to pay high txn fee if you need to spend hundreds of them in one transaction.
If those are mining pool payments, I'd consider setting a higher minimum payment amount.
1189  Bitcoin / Electrum / Re: My wallet has been hacked. What to do? on: March 19, 2023, 06:46:20 AM
The scheme of work is as follows: I use the standalone version of the client. The Electrum profile itself does not exist on the computer - it is in the archive under a password. If I need to make a transaction, I unpack the profile folder to a specific location, indicate this location to the program, enter the password and get access. At the end, I close the program, again I archive the profile folder with its removal from the location.
Those. Initially, there is no folder with a wallet or a file with a phrase on the PC. Therefore, I cannot understand how exactly without this phrase and in the absence of access to the wallet file, access to transactions could be obtained.
Look.
The transaction is dated 03/12/2023. At this point, there was no Electrum profile on the PC.
So basically, you're using the command line option -D or --dir to specify a custom data directory (the "profile folder")?

If so, it'll only provide you a "false sense of security" since it's still connected to the internet and using a possibly compromised PC.
Even if the wallet and data directory is not in your PC at that time, the hacker will only need one chance to get your private keys or seed phrase during the times when you unpack it.
With those info alone, he can create his own copy of your wallet that can send transactions anytime he like.

Isn't it looks like something just begun?
I gonna ask there as well
It happens all the time, usually it's the user's fault. However, we can't discount the possibility of a bug or security issue.
1190  Bitcoin / Electrum / Re: How do I create a channel with a receiving capacity >0? on: March 19, 2023, 06:14:36 AM
The issue is, all of my channels are being created with "Receiving capacity: 0". I am frequently getting "path not found" errors whenever trying to pay some services using LN, which I guess is the most impactful when I try to use the submarine swap feature that's built-in to Electrum, which says it can increase the receiving capacity, but the transaction also fails with a "path not found error".
Yes, 'Submarine Swap' should do the trick, so the actual issue is your channel's connectivity.
The "No path found" error happens if your channel cannot find a route to Boltz's channel to pay the to-be-swapped lightning funds.
Connecting to a well-connected node with many channels may help.
Also, if you're not using "trampoline routing", it may take a while to fully sync with the lightning network. (seen as the percentage in the lightning icon)

You can also try directly swapping through Boltz website and see if there's a difference: boltz.exchange
It's the same service as Electrum's swap feature.
1191  Bitcoin / Bitcoin Technical Support / Re: Transferring a wallet from electrum (2fa) on: March 19, 2023, 04:33:58 AM
upd:
22.0.0
That version supports descriptor wallets despite not creating such wallet by default.

-snip-
there is no such option "create unsigned"
Then, the mirrored wallet isn't "descriptor" with watching-only descriptors, it's the legacy version.
Because the "Send" button should've been replaced with "Create Unsigned" if it is.

The alternative for non-descriptor wallet is what o_e_l_e_o pointed out but you need to update your Bitcoin Core for it to appear in the "Confirm send coin" window.
1192  Bitcoin / Bitcoin Technical Support / Re: Transferring a wallet from electrum (2fa) on: March 18, 2023, 07:20:24 AM
There is no way to spend it with electrum?
Once it successfully synced, yes.
My reply above this quote is just an option in case Electrum didn't sync.

As additional note, if the watching-only wallet isn't a "descriptor" wallet, you won't be able to use that option either.
1193  Bitcoin / Bitcoin Technical Support / Re: Transferring a wallet from electrum (2fa) on: March 18, 2023, 05:43:24 AM
Thank you all for your advice, but the problem has not been solved yet. I followed the EPS path and installed it and did everything that was required by the instructions.  He successfully saw the tx and transactions were loaded into core in the watch only mode. But electrum does not connect to eps in any way. -snip-
If you want to spend them through that watching-only wallet, you can try this:

In Bitcoin Core, there should be a "Create Unsigned" option in 'Send' tab to create an 'unsigned RAW transaction'.
Create a transaction with appropriate amount of inputs and fee, then save the ".psbt" file in a flash drive.
(your txn will be high in size so don't set the fee rate too high)

Open your 2FA Electrum in an offline machine (restore it from seed to be able to use it offline).
Load the .psbt file through the menu "Tools->Load transaction->From file", you should be able to sign it using two keys (Review the outputs and amounts).
After signing, export it through "Export->Copy to Clipboard" and find a way to transfer the copied Signed RAW Transaction to your Bitcoin Core.

Lastly, in Bitcoin Core, open the console (Window->Console),
In the Console, enter the command: sendrawtransaction "PASTE_THE_SIGNED_RAW_TRANSACTION" to send the transaction to the network.

Note: tested only on single-sig SegWit, haven't tested if the watching-only wallet created for EPS includes the redeem script; depending on the watching-only copy, this method may not work.
1194  Bitcoin / Electrum / Re: Sent BTC but when I sent to my address it made two transactions then disappeared on: March 17, 2023, 09:05:01 AM
it's in the addresses window but it's not in my receive window, how can I return it?
The list in the 'Receive' tab is just for invoices, it's not remotely important when it comes with the balance so don't mind it that much.
The reason it's removed from the "receive queue" is because the address now received bitcoins and the invoice was fulfilled.

Since it's in your addresses tab, then it's not a clipboard malware but something to do with your PC's security.
Having fake Electrum isn't deducted to the possible cause either until you verified that the signature matches.

-snip- and is there any chance I'll get my BTC back?
I'm afraid only be finding the culprit to "convince" him to return the funds.
Due to Bitcoin's nature, there' no way to reverse an already confirmed transaction, by checking the address in question, all of its txns are already confirmed.
1195  Bitcoin / Electrum / Re: Sent BTC but when I sent to my address it made two transactions then disappeared on: March 17, 2023, 08:40:06 AM
I don't think the one I just had was that old, it was 4.3.0 something and the new one I downloaded is 4.3.4, why is my receive address gone though?
What do you mean "gone"? It's not in the 'Addresses' tab?
If you don't have Addresses tab activated, click "View->Show Addresses" to toggle the tab.

Because if it's not there and there's a similar address in the list (or even not), chances that you've been a victim of "Clipboard Hijacking Malware" is high.
You can Google search the term for more info.
1196  Bitcoin / Electrum / Re: Sent BTC but when I sent to my address it made two transactions then disappeared on: March 17, 2023, 08:32:45 AM
My wallet hasn't been hacked, -snip-
Well, Kraken can't be blamed here since they don't have access to your wallet's private keys.
After you've sent it to your Electrum, only the private key of the address where it was sent to can spend it, in this case, your Electrum wallet.
The possible causes are: compromised PC, leaked private key or seed phrase.

Based from available information at the moment, it seems like you're not the only one who's got robbed.
But it's not possible to tell how without knowing the PC's condition (how it's used) and how the wallet is created.

ive been using the same electrum ive had since 2018 so it's not possible that its fake
Have you updated Electrum lately? Say, a message when you tried to send a transaction?
If so, what was your Electrum version prior to the update?

That's because most versions from 2018 are vulnerable to phishing malicious messages from rogue public servers.

Also, verifying its signature will clear all doubt about it being fake, guide: https://bitcoinelectrum.com/how-to-verify-your-electrum-download/
You can download the signatures for old version in "Previous Releases" link in Electrum download page.
1197  Bitcoin / Electrum / Re: Sent BTC but when I sent to my address it made two transactions then disappeared on: March 17, 2023, 06:25:05 AM
Kraken can't control the funds sent to your Electrum; also, being hacked isn't the only way to compromise your Electrum.
For example, your seed phrase.
So, have you stored your seed phrase somewhere vulnerable?

The transaction going to 1DRJ3pkdSXTgYh59Rv7yUUQBErhTJ5rskB has a transaction fee.
Electrum just won't display it in the history tab, you'll have to open the transaction's details.
1198  Bitcoin / Bitcoin Technical Support / Re: [Question] Laptop reinstall, will assets be lost? on: March 16, 2023, 07:54:30 AM
Let's say I buy Bitcoin on a binance exchange and send it to an Electrum wallet to store it.
Can you explain so we can understand that we need to keep Bitcoin on the blockchain and not on Electrum.
They are talking about the Bitcoin "blockchain", and not "Blockchain online wallet" of blockchain(dot)com.
That's the huge set of files that most Bitcoin node have in their drive, it consist of "chain of blocks" where the transactions are recorded.

Electrum and any other Bitcoin wallets don't contain bitcoins, they only manage the coins accessible by the "private keys" stored in them.
And as an answer to your question, all of your wallet's "private keys" can be derived from your seed phrase so be sure to keep it safe.
1199  Bitcoin / Development & Technical Discussion / Re: Pywallet 2.2: manage your wallet [Update required] on: March 15, 2023, 07:15:47 AM
EDIT : pywallet complains if the wallet version is > 81000
Any chance that the wallet is created by later versions of Bitcoin Core?
Because if so, pywallet doesn't support "descriptor" wallet.dat which is the new default.

$ ./pywallet.py --version
./pywallet.py:22: UserWarning: Python 3 support is still experimental, you may encounter bugs
version says pywallet.py 1.1
(or is it 22?)
Version is '1.1'
The number '22' belongs to the error message.
1200  Bitcoin / Electrum / Re: Electrum-web.com on: March 15, 2023, 06:57:17 AM
A lawyer sent me a link to this site.  I will get my stolen money back. But tjis is not original page. This dobt looks good for me. Please confirm that this is fake ?
Not just the site, the lawyer is also a fake.
Electrum and Bitcoin don't work like a bank, stolen funds can't be recovered by an authority nor the developers of Electrum or even Bitcoin Core.
If you're scammed, chances that it's the same scammer who's trying to get more out of you.
Pages: « 1 ... 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 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 ... 309 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!