You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
trezor-firmware/test.py

11 lines
264 B

#!/usr/bin/python
from TrezorCrypto import HDNode
x = HDNode('xpub6BcjTvRCYD4VvFQ8whztSXhbNyhS56eTd5P3g9Zvd3zPEeUeL5CUqBYX8NSd1b6Thitr8bZcSnesmXZH7KerMcc4tUkenBShYCtQ1L8ebVe')
y = x.public_ckd(0)
for i in range(1000):
z = y.public_ckd(i)
print i, z.address()