Post
Topic
Board Bitcoin Technical Support
Re: Electrum - How to create more Receiving Addresses?
by
BlackHatCoiner
on 10/10/2021, 09:01:00 UTC
wallet.change_gap_limit(number)

Instead of this solution that requires to restart Electrum, I'm providing another one that doesn't have this requirement.



Go to View -> Console and type:
Code:
for i in range (n): print (wallet.create_new_address(False))

If you want to generate receiving addresses or:

Code:
for i in range (n): print (wallet.create_new_address(True))

If you want change addresses. Replace n with the number of addresses you want to generate.