nimbus-eth1/nimbus/constants.nim

195 lines
5.7 KiB
Nim
Raw Normal View History

import
2018-05-30 16:11:15 +00:00
stint, math, strutils, utils/padding, eth_common
proc int256*(i: int): Int256 =
2018-02-07 16:16:04 +00:00
i.i256
2018-02-07 16:16:04 +00:00
# template i256*(i: int): Int256 =
# i.initBigInt
template i256*(i: Int256): Int256 =
i
template u256*(i: int): UInt256 =
i.uint.u256
template u256*(i: UInt256): UInt256 =
i
template getInt*(i: int): int =
i
# TODO
# We'll have a fast fixed i256, for now this works
proc `==`*(a: Int256, b: int): bool =
a == b.i256
proc `!=`*(a: Int256, b: int): bool =
a != b.i256
proc `==`*(a: UInt256, b: int): bool =
a == b.u256
proc `!=`*(a: UInt256, b: int): bool =
a != b.u256
# proc `^`*(base: int; exp: int): UInt256 =
# let base = base.u256
# var ex = exp
# result = 1.u256
# while ex > 0:
# result = result * base
# dec(ex)
proc `^`*(left: Int256, right: int): Int256 =
2018-02-07 16:16:04 +00:00
var value = right.i256
result = 1.i256
var m = right.i256
while value > 0.i256:
result = result * m
value -= 1.i256
proc `^`*(left: UInt256, right: UInt256): UInt256 =
var value = right
result = 1.u256
var m = right.u256
while value > 0.u256:
result = result * m
value -= 1.u256
proc `^`*(left: UInt256, right: int): UInt256 =
left ^ right.u256
proc `>`*(a: Int256, b: int): bool =
a > b.i256
proc `<`*(a: Int256, b: int): bool =
a < b.i256
proc `>`*(a: UInt256, b: int): bool =
a > b.u256
proc `<`*(a: UInt256, b: int): bool =
a < b.u256
proc `mod`*(a: Int256, b: int): Int256 =
a mod b.i256
proc `div`*(a: Int256, b: int): Int256 =
a div b.i256
proc `mod`*(a: UInt256, b: int): UInt256 =
a mod b.u256
proc `div`*(a: UInt256, b: int): UInt256 =
a div b.u256
template mapOp(op: untyped): untyped =
2018-02-07 16:16:04 +00:00
proc `op`*(left: Int256, right: int): Int256 =
result = left.i256
result = `op`(result, right.i256)
proc `op`*(left: UInt256, right: int): UInt256 =
result = left.u256
result = `op`(result, right.u256)
mapOp(`and`)
mapOp(`or`)
mapOp(`xor`)
2018-05-30 16:11:15 +00:00
proc default(t: typedesc): t = discard
# constants
let
UINT_256_MAX*: UInt256 = high(UInt256)
INT_256_MAX_AS_UINT256* = cast[Uint256](high(Int256))
NULLBYTE* = "\x00"
EMPTYWORD* = repeat(NULLBYTE, 32)
UINT160CEILING*: UInt256 = 2.u256 ^ 160
2018-05-30 16:11:15 +00:00
ZERO_ADDRESS* = default(EthAddress)
CREATE_CONTRACT_ADDRESS* = ZERO_ADDRESS
ZERO_HASH32* = Hash256()
STACK_DEPTH_LIMIT* = 1024
2018-04-11 10:42:04 +00:00
2018-05-30 16:11:15 +00:00
GAS_LIMIT_EMA_DENOMINATOR* = 1_024
GAS_LIMIT_ADJUSTMENT_FACTOR* = 1_024
GAS_LIMIT_USAGE_ADJUSTMENT_NUMERATOR* = 3
GAS_LIMIT_USAGE_ADJUSTMENT_DENOMINATOR* = 2
2018-04-05 17:32:18 +00:00
DIFFICULTY_ADJUSTMENT_DENOMINATOR* = 2_048.u256
DIFFICULTY_MINIMUM* = 131_072.u256
2018-04-05 17:32:18 +00:00
BYZANTIUM_DIFFICULTY_ADJUSTMENT_CUTOFF* = 9
BOMB_EXPONENTIAL_PERIOD* = 100_000.u256
BOMB_EXPONENTIAL_FREE_PERIODS* = 2.u256
2018-04-11 10:42:04 +00:00
BLOCK_REWARD* = 5.u256 * 2.u256 # denoms.ether
2018-04-11 10:42:04 +00:00
UNCLE_DEPTH_PENALTY_FACTOR* = 8.u256
2018-04-11 10:42:04 +00:00
MAX_UNCLE_DEPTH* = 6.u256
MAX_UNCLES* = 2.u256
2018-04-11 10:42:04 +00:00
SECPK1_P*: UInt256 = 2.u256 ^ 256 - 2.u256 ^ 32 - 977.u256
SECPK1_N*: UInt256 = "115792089237316195423570985008687907852837564279074904382605163141518161494337".u256
SECPK1_A* = 0.u256
SECPK1_B* = 7.u256
SECPK1_Gx* = 0.u256
SECPK1_Gy* = 0.u256
SECPK1_G* = (SECPK1Gx, SECPK1Gy)
2018-04-11 10:42:04 +00:00
2018-05-30 16:11:15 +00:00
EMPTY_UNCLE_HASH* = "1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347".toDigest
2018-04-11 10:42:04 +00:00
GENESIS_BLOCK_NUMBER* = 0.u256
GENESIS_DIFFICULTY* = 131_072.u256
2018-05-30 16:11:15 +00:00
GENESIS_GAS_LIMIT* = 3_141_592
GENESIS_PARENT_HASH* = ZERO_HASH32
GENESIS_COINBASE* = ZERO_ADDRESS
GENESIS_NONCE* = "\x00\x00\x00\x00\x00\x00\x00B"
GENESIS_MIX_HASH* = ZERO_HASH32
GENESIS_EXTRA_DATA* = ""
2018-05-30 16:11:15 +00:00
GAS_LIMIT_MINIMUM* = 5000
2018-04-11 10:42:04 +00:00
EMPTYSHA3 = "\xc5\xd2F\x01\x86\xf7#<\x92~}\xb2\xdc\xc7\x03\xc0\xe5\x00\xb6S\xca\x82';{\xfa\xd8\x04]\x85\xa4p"
2018-05-30 16:11:15 +00:00
BLANK_ROOT_HASH* = "56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421".toDigest()
2018-04-11 10:42:04 +00:00
GAS_MOD_EXP_QUADRATIC_DENOMINATOR* = 20.u256
MAX_PREV_HEADER_DEPTH* = 256.u256
2018-04-05 17:32:18 +00:00
FORK_ICEAGE_BLKNUM* = 200_000.u256
FORK_HOMESTED_BLKNUM* = 1_150_000.u256
FORK_DAO_BLKNUM* = 1_920_000.u256
FORK_TANGERINE_WHISTLE_BLKNUM* = 2_463_000.u256
FORK_SPURIOUS_DRAGON_BLKNUM* = 2_675_000.u256
FORK_BYZANTIUM_BLKNUM* = 4_370_000.u256
# TODO: Move the below to a new utils unit?
type
Fork = enum fkUnknown, fkFrontier, fkIceAge, fkHomested, fkDao, fkTangerineWhistle, fkSpuriousDragon, fkByzantium
UInt256Pair = tuple[a: Uint256, b: Uint256]
proc `..`*(a, b: Uint256): UInt256Pair = (a, b)
proc contains*(ab: UInt256Pair, v: UInt256): bool =
return v >= ab[0] and v <= ab[1]
proc toFork*(blockNumber: UInt256): Fork =
# TODO - Refactoring: superseded by newNimbusVM for the time being #https://github.com/status-im/nimbus/pull/37
# TODO - Refactoring: redundant with `chain.nim` getVM
2018-04-05 17:32:18 +00:00
result = fkUnknown
let one = u256(1)
if blockNumber in u256(0)..FORK_ICEAGE_BLKNUM - one: result = fkFrontier
elif blockNumber in FORK_ICEAGE_BLKNUM..FORK_HOMESTED_BLKNUM - one: result = fkIceAge
elif blockNumber in FORK_HOMESTED_BLKNUM..FORK_DAO_BLKNUM - one: result = fkHomested
elif blockNumber in FORK_DAO_BLKNUM..FORK_TANGERINE_WHISTLE_BLKNUM - one: result = fkDao
elif blockNumber in FORK_TANGERINE_WHISTLE_BLKNUM..FORK_SPURIOUS_DRAGON_BLKNUM - one: result = fkTangerineWhistle
elif blockNumber in FORK_SPURIOUS_DRAGON_BLKNUM..FORK_BYZANTIUM_BLKNUM - one: result = fkSpuriousDragon
else:
if blockNumber >= FORK_BYZANTIUM_BLKNUM: result = fkByzantium # Update for constantinople when announced