chainlib-eth

Ethereum implementation of the chainlib interface
Info | Log | Files | Refs | README | LICENSE

constant.py (248B)


      1 ZERO_ADDRESS = '0x{:040x}'.format(0)
      2 ZERO_CONTENT = '0x{:064x}'.format(0)
      3 MINIMUM_FEE_UNITS = 21000
      4 MINIMUM_FEE_PRICE = 1000000000
      5 DEFAULT_FEE_LIMIT = 8000000
      6 MAX_UINT = int('0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff', 16)