1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-13 19:39:05 +00:00
trezor-firmware/tools/helloworld.py

32 lines
797 B
Python
Raw Normal View History

#!/usr/bin/env python3
2014-08-11 18:19:05 +00:00
from trezorlib.client import TrezorClient
from trezorlib.transport import get_transport
2018-05-28 13:47:57 +00:00
from trezorlib.tools import parse_path
2018-12-03 15:09:52 +00:00
from trezorlib import btc
from trezorlib.ui import ClickUI
2014-08-11 18:19:05 +00:00
2017-06-23 19:31:42 +00:00
2014-08-11 18:19:05 +00:00
def main():
# Use first connected device
transport = get_transport()
2014-08-11 18:19:05 +00:00
# Creates object for manipulating TREZOR
2018-12-03 15:09:52 +00:00
ui = ClickUI()
client = TrezorClient(transport, ui)
2014-08-11 18:19:05 +00:00
# Print out TREZOR's features and settings
2016-05-20 11:36:17 +00:00
print(client.features)
2014-08-11 18:19:05 +00:00
2014-08-11 19:31:34 +00:00
# Get the first address of first BIP44 account
2017-01-10 14:25:13 +00:00
# (should be the same address as shown in wallet.trezor.io)
2018-05-28 13:47:57 +00:00
bip32_path = parse_path("44'/0'/0'/0/0")
2018-12-03 15:09:52 +00:00
address = btc.get_address(client, 'Bitcoin', bip32_path, True)
2016-05-20 11:36:17 +00:00
print('Bitcoin address:', address)
2014-08-11 18:19:05 +00:00
client.close()
2017-06-23 19:31:42 +00:00
2014-08-11 18:19:05 +00:00
if __name__ == '__main__':
main()