mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-12 18:49:07 +00:00
37 lines
894 B
Python
Executable File
37 lines
894 B
Python
Executable File
#!/usr/bin/env python3
|
|
from __future__ import print_function
|
|
|
|
from trezorlib.client import TrezorClient
|
|
from trezorlib.device import TrezorDevice
|
|
|
|
|
|
def main():
|
|
# List all connected TREZORs on USB/UDP
|
|
devices = TrezorDevice.enumerate()
|
|
|
|
# Check whether we found any
|
|
if len(devices) == 0:
|
|
print('No TREZOR found')
|
|
return
|
|
|
|
# Use first connected device
|
|
transport = devices[0]
|
|
|
|
# Creates object for manipulating TREZOR
|
|
client = TrezorClient(transport)
|
|
|
|
# Print out TREZOR's features and settings
|
|
print(client.features)
|
|
|
|
# Get the first address of first BIP44 account
|
|
# (should be the same address as shown in wallet.trezor.io)
|
|
bip32_path = client.expand_path("44'/0'/0'/0/0")
|
|
address = client.get_address('Bitcoin', bip32_path)
|
|
print('Bitcoin address:', address)
|
|
|
|
client.close()
|
|
|
|
|
|
if __name__ == '__main__':
|
|
main()
|