Pages:
Author

Topic: Electrum address beyond the gap limit - page 2. (Read 416 times)

newbie
Activity: 11
Merit: 4
February 15, 2023, 09:01:15 AM
#14

If your seed phrase is correct, it should generate correct addresses and if the wallet is synced, it should display the correct balance. Otherwise, the seed phrase you entered is wrong.

just to clarify, if i create a wallet and generate, let's say 3 more addresses (to the 20 default) and then do a seed recovery of the wallet and generate, let's say 10 more addresses (to the 20 default), then pop the 3 addresses (from the first creation of the wallet) directly under the 10?
legendary
Activity: 2380
Merit: 5213
February 15, 2023, 07:58:07 AM
#13
I'm relatively sure that the seed fits the wallet and I didn't add any more words to the seed.
If your seed phrase is correct, it should generate correct addresses and if the wallet is synced, it should display the correct balance. Otherwise, the seed phrase you entered is wrong.

Quote from: pclaas link=topic=5316980.msg61766390#msg61766390
Seed Phrase was generated by electrum itself. What is HD wallet?
HD wallet is a wallet in which you have numerous addresses all generated from a seed. HD stands for Hierarchical Deterministic.
newbie
Activity: 11
Merit: 4
February 15, 2023, 07:31:51 AM
#12
After successfully restoring the wallet with the seed, I don't see my balance.
Do the addresses generated by electrum start with the same character as the address you are looking for? If no, you have selected an incorrect script type.
(If the seed phrase has been generated by electrum itself, this can't be the problem.)


is it possible to manually enter this address individually in electrum?
Take note that you can't import an address or a private key into a HD wallet.
If you own the private key of an address, you can create a new wallet with that private key.

Seed Phrase was generated by electrum itself. What is HD wallet?
I only have the seed and can extract the master private key
newbie
Activity: 11
Merit: 4
February 15, 2023, 07:18:52 AM
#11
Hello, I unfortunately have a problem with my electrum wallet.
After successfully restoring the wallet with the seed, I don't see my balance. It seems that i added an additional address, but it doesn't show up in the address list anymore. I've tried increasing the gap to 150 but to no avail. I know the address with the credit. is it possible to manually enter this address individually in electrum?

1. You should make your own topic instead of reviving (and hijacking) an old one.
2. You cannot add addresses to Electrum like that (a new wallet based on an address would be watch only anyway, hence not spendable) and the address you cannot find may be from a different derivation path, or from a different seed, or by using a passphrase over the seed. You may have to think a little more about how your initial wallet was made (you no longer have that wallet file at all?).


I'm relatively sure that the seed fits the wallet and I didn't add any more words to the seed. I was able to restore the wallet file, but unfortunately a little too late because it started to be overwritten. when I want to open the wallet, electrum gives the error: can not read file/UnicodeDecodeError

legendary
Activity: 2380
Merit: 5213
February 15, 2023, 06:52:25 AM
#10
After successfully restoring the wallet with the seed, I don't see my balance.
Do the addresses generated by electrum start with the same character as the address you are looking for? If no, you have selected an incorrect script type.
(If the seed phrase has been generated by electrum itself, this can't be the problem.)


is it possible to manually enter this address individually in electrum?
Take note that you can't import an address or a private key into a HD wallet.
If you own the private key of an address, you can create a new wallet with that private key.
legendary
Activity: 3500
Merit: 6205
Looking for campaign manager? Contact icopress!
February 15, 2023, 06:40:30 AM
#9
Hello, I unfortunately have a problem with my electrum wallet.
After successfully restoring the wallet with the seed, I don't see my balance. It seems that i added an additional address, but it doesn't show up in the address list anymore. I've tried increasing the gap to 150 but to no avail. I know the address with the credit. is it possible to manually enter this address individually in electrum?

1. You should make your own topic instead of reviving (and hijacking) an old one.
2. You cannot add addresses to Electrum like that (a new wallet based on an address would be watch only anyway, hence not spendable) and the address you cannot find may be from a different derivation path, or from a different seed, or by using a passphrase over the seed. You may have to think a little more about how your initial wallet was made (you no longer have that wallet file at all?).
newbie
Activity: 11
Merit: 4
February 15, 2023, 05:47:56 AM
#8
Hello, I unfortunately have a problem with my electrum wallet.
After successfully restoring the wallet with the seed, I don't see my balance. It seems that i added an additional address, but it doesn't show up in the address list anymore. I've tried increasing the gap to 150 but to no avail. I know the address with the credit. is it possible to manually enter this address individually in electrum?

legendary
Activity: 2954
Merit: 4158
February 13, 2021, 11:30:21 AM
#7
No I am not restoring anything. But I read that Addresses beyond the gap limit are red. If money is sent to one of them but never to the g addresses before them, Electrum will not look for it does that mean I will not be able to see the total balance if I will receive money on that red marked address? Ok is I if I will use use the new receiving address will be I able to send the total amount received on both addresses? I do not want to lose my BTC.  
Only if you are going to restore your wallet. Once generated, it functions like any other addresses. Yes, you will be able to use those receiving addresses like how you would use any other normal addresses.

Electrum not looking for them only applies if you are restoring your wallet. You have to manually generate those addresses or increase the gap limit. The way Electrum works when generating a wallet is to follow a gap limit of 20 (for normal receiving addresses), which means it will keep generating addresses for the hierarchical deterministic seeds until it reaches 20 unused addresses. If the address is generated after the gap limit, Electrum will not generate those addresses. It is not lost, however just not generated yet.
legendary
Activity: 2268
Merit: 18509
February 13, 2021, 11:04:19 AM
#6
To increase the gap limit open the console and enter the following command:
So, minor correction. The command you have given doesn't actually increase the gap limit. What it does is simply generate and display the next 50 or so addresses beyond the last address in your wallet, without paying any attention to the gap limit. Addresses which it generates which are beyond the gap limit will show up with a red background.

If you want to actually change the gap limit, you would use the command:
Code:
wallet.change_gap_limit(50)

You can change the value of "50" to any value you like. If you decrease the gap limit from what it currently is, you will need to restart Electrum before the extra addresses disappear from your "Addresses" tab.

You can also use the following command to view your current gap limit:
Code:
wallet.gap_limit
copper member
Activity: 2170
Merit: 4238
Join the world-leading crypto sportsbook NOW!
February 13, 2021, 10:49:23 AM
#5
What ranochigo is saying is that in the case that you do have to restore your wallet, the funds will be there.  You won't lose them, but they will not be visible initially.  You'll have to increase the gap limit yourself.

To increase the gap limit open the console and enter the following command:

Code:
[wallet.create_new_address(False) for i in range(50)]
Source: https://electrum.readthedocs.io/en/latest/faq.html#gap-limit

This will add 50 addresses to list of wallet addresses.  You can change the number of addresses you want to generate to anything you like.
legendary
Activity: 3584
Merit: 1560
February 13, 2021, 10:45:51 AM
#4
you won't lose your btc. what you're describing only happens during wallet restoration which you've already been warned about. don't worry just use that address.
member
Activity: 252
Merit: 20
February 13, 2021, 10:42:24 AM
#3
Yes. Just remember if you're restoring from your seed that those addresses are not generated with the default gap limit and you'll have to change the gaplimit settings or generate the addresses on your own. They're still generated from your seeds so you won't lose it.

No I am not restoring anything. But I read that Addresses beyond the gap limit are red. If money is sent to one of them but never to the g addresses before them, Electrum will not look for it does that mean I will not be able to see the total balance if I will receive money on that red marked address? Ok is I if I will use use the new receiving address will be I able to send the total amount received on both addresses? I do not want to lose my BTC.   
legendary
Activity: 2954
Merit: 4158
February 13, 2021, 10:32:54 AM
#2
Yes. Just remember if you're restoring from your seed that those addresses are not generated with the default gap limit and you'll have to change the gaplimit settings or generate the addresses on your own. They're still generated from your seeds so you won't lose it.
member
Activity: 252
Merit: 20
February 13, 2021, 10:24:57 AM
#1
I received some BTC to one of my Electrum wallet addresses. But now it has a red background that means the address is beyond the gap limit. Can I still receive and send funds using that address?
Pages:
Jump to: