1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-18 13:38:12 +00:00
trezor-firmware/tools/codegen/gen_eth_networks.py
2018-07-31 11:35:09 +02:00

15 lines
335 B
Python
Executable File

#!/usr/bin/env python3
import json
j = json.load(open("../../vendor/trezor-common/defs/ethereum/networks.json", "r"))
print("NETWORKS = [")
for n in j:
print(" NetworkInfo(")
for f in ["chain_id", "slip44", "shortcut", "name", "rskip60"]:
print(" %s=%s," % (f, repr(n[f])))
print(" ),")
print("]")