mirror of
https://github.com/mynodebtc/mynode.git
synced 2024-11-14 09:29:15 +00:00
29 lines
724 B
Python
Executable File
29 lines
724 B
Python
Executable File
#!/usr/bin/python3
|
|
from lnd_grpc import lnd_grpc
|
|
|
|
def format_seed_numbered(seed):
|
|
formatted_seed = ""
|
|
count = 1
|
|
for word in seed:
|
|
formatted_seed += "{}: {}\n".format(count, word)
|
|
count += 1
|
|
|
|
return formatted_seed.rstrip()
|
|
|
|
def format_seed_raw(seed):
|
|
s = ""
|
|
for word in seed:
|
|
s += word + " "
|
|
return s.rstrip()
|
|
|
|
# This is the main entry point for the program
|
|
if __name__ == "__main__":
|
|
|
|
# Generate the seed
|
|
rpc = lnd_grpc.Client(lnd_dir="/home/bitcoin/.lnd/",
|
|
macaroon_path="/home/bitcoin/.lnd/data/chain/bitcoin/mainnet/admin.macaroon")
|
|
|
|
# Get seed and print
|
|
data = rpc.gen_seed()
|
|
formatted_seed = format_seed_raw(data.cipher_seed_mnemonic)
|
|
print(formatted_seed) |