bitcoinSignet property

ChainParams bitcoinSignet
final

Same network bytes as testnet, different identity.

Implementation

static final bitcoinSignet = ChainParams(
  chain: const Chain(
    wifPrefix: 0xef,
    p2pkhPrefix: 0x6f,
    p2shPrefix: 0xc4,
    bech32Hrp: 'tb',
    name: 'Bitcoin Signet',
    bip44CoinType: 1,
    supportsSegwit: true,
    supportsTaproot: true,
  ),
  chainName: 'Bitcoin Signet',
  ticker: 'sBTC',
  identifier: 'bitcoin-signet',
  bip44CoinType: 1,
  supportedAddrTypes: [
    AddrType.p2pkh,
    AddrType.p2sh,
    AddrType.p2wpkh,
    AddrType.p2wsh,
    AddrType.p2tr,
  ],
  supportsSegwit: true,
  supportsTaproot: true,
);