Example #1
0
 CoinType(
     coin_name='Bitcoin',
     coin_shortcut='BTC',
     coin_label='Bitcoin',
     address_type=0,
     address_type_p2sh=5,
     maxfee_kb=2000000,
     minfee_kb=1000,
     signed_message_header='Bitcoin Signed Message:\n',
     hash_genesis_block=
     '000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f',
     xprv_magic=0x0488ade4,
     xpub_magic=0x0488b21e,
     bech32_prefix='bc',
     bip44=0,
     segwit=True,
     forkid=None,
     force_bip143=False,
     default_fee_b={
         'Low': 10,
         'Economy': 70,
         'Normal': 140,
         'High': 200
     },
     dust_limit=546,
     blocktime_minutes=10,
     firmware='stable',
     address_prefix='bitcoin:',
     min_address_length=27,
     max_address_length=34,
     bitcore=[
         'https://btc-bitcore3.trezor.io', 'https://btc-bitcore1.trezor.io'
     ],
 ),
Example #2
0
# the following list is generated using tools/codegen/gen_coins.py
# do not edit manually!
COINS = [
    CoinType(
        coin_name='Bitcoin',
        coin_shortcut='BTC',
        coin_label='Bitcoin',
        address_type=0,
        address_type_p2sh=5,
        maxfee_kb=500000,
        minfee_kb=1000,
        signed_message_header='Bitcoin Signed Message:\n',
        hash_genesis_block='000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f',
        xprv_magic=0x0488ade4,
        xpub_magic=0x0488b21e,
        bech32_prefix='bc',
        bip44=0,
        segwit=True,
        forkid=None,
        default_fee_b={'Low': 10, 'Economy': 70, 'Normal': 140, 'High': 200},
        dust_limit=546,
        blocktime_minutes=10,
        firmware='stable',
        address_prefix='bitcoin:',
        min_address_length=27,
        max_address_length=34,
        bitcore=['https://btc-bitcore3.trezor.io', 'https://btc-bitcore1.trezor.io'],
    ),
    CoinType(
        coin_name='Testnet',
        coin_shortcut='TEST',
Example #3
0
from trezor.messages.CoinType import CoinType

# the following list is generated using tools/codegen/gen_coins.py
# do not edit manually!
COINS = [
    CoinType(
        coin_name='Bitcoin',
        coin_shortcut='BTC',
        coin_label='Bitcoin',
        address_type=0,
        address_type_p2sh=5,
        maxfee_kb=2000000,
        signed_message_header='Bitcoin Signed Message:\n',
        xpub_magic=0x0488b21e,
        bech32_prefix='bc',
        segwit=True,
        forkid=None,
        force_bip143=False,
    ),
    CoinType(
        coin_name='Testnet',
        coin_shortcut='TEST',
        coin_label='Testnet',
        address_type=111,
        address_type_p2sh=196,
        maxfee_kb=10000000,
        signed_message_header='Bitcoin Signed Message:\n',
        xpub_magic=0x043587cf,
        bech32_prefix='tb',
        segwit=True,
        forkid=None,
Example #4
0
from trezor.messages.CoinType import CoinType

# the following list is generated using tools/coins-gen.py
# do not edit manually!
COINS = [
    CoinType(
        coin_name='Bitcoin',
        coin_shortcut='BTC',
        address_type=0,
        address_type_p2sh=5,
        maxfee_kb=500000,
        signed_message_header='Bitcoin Signed Message:\n',
        xpub_magic=0x0488b21e,
        xprv_magic=0x0488ade4,
        bip44=0,
        segwit=False,
    ),
    CoinType(
        coin_name='Testnet',
        coin_shortcut='TEST',
        address_type=111,
        address_type_p2sh=196,
        maxfee_kb=10000000,
        signed_message_header='Bitcoin Signed Message:\n',
        xpub_magic=0x043587cf,
        xprv_magic=0x04358394,
        bip44=1,
        segwit=True,
    ),
    CoinType(
        coin_name='Namecoin',