2018-04-06 14:52:10 +00:00
|
|
|
# Nimbus
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# Licensed under either of
|
|
|
|
# * Apache License, version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0)
|
|
|
|
# * MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT)
|
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2018-01-17 12:57:50 +00:00
|
|
|
import
|
2019-08-26 15:19:18 +00:00
|
|
|
constants, errors, eth/[common, rlp, keys], nimcrypto, utils,
|
|
|
|
./vm/interpreter/[vm_forks, gas_costs]
|
2018-01-17 12:57:50 +00:00
|
|
|
|
2019-08-13 08:13:22 +00:00
|
|
|
import eth/common/transaction as common_transaction
|
|
|
|
export common_transaction
|
2018-11-20 17:35:11 +00:00
|
|
|
|
2018-12-03 19:47:20 +00:00
|
|
|
func intrinsicGas*(data: openarray[byte]): GasInt =
|
|
|
|
result = 21_000 # GasTransaction
|
|
|
|
for i in data:
|
|
|
|
if i == 0:
|
|
|
|
result += 4 # GasTXDataZero
|
|
|
|
else:
|
|
|
|
result += 68 # GasTXDataNonZero
|
|
|
|
|
2019-08-26 15:19:18 +00:00
|
|
|
proc intrinsicGas*(tx: Transaction, fork: Fork): GasInt =
|
2018-01-17 12:57:50 +00:00
|
|
|
# Compute the baseline gas cost for this transaction. This is the amount
|
|
|
|
# of gas needed to send this transaction (but that is not actually used
|
|
|
|
# for computation)
|
2019-08-26 15:19:18 +00:00
|
|
|
result = tx.payload.intrinsicGas
|
2018-01-17 12:57:50 +00:00
|
|
|
|
2019-08-26 15:19:18 +00:00
|
|
|
if tx.isContractCreation:
|
|
|
|
result = result - gasFees[fork][GasTXCreate]
|
|
|
|
|
|
|
|
proc validate*(t: Transaction, fork: Fork) =
|
2018-01-17 12:57:50 +00:00
|
|
|
# Hook called during instantiation to ensure that all transaction
|
|
|
|
# parameters pass validation rules
|
2019-08-26 15:19:18 +00:00
|
|
|
if t.intrinsicGas(fork) > t.gasLimit:
|
2018-01-17 12:57:50 +00:00
|
|
|
raise newException(ValidationError, "Insufficient gas")
|
|
|
|
# self.check_signature_validity()
|
2018-01-17 14:16:00 +00:00
|
|
|
|
2018-09-10 08:44:07 +00:00
|
|
|
proc getSignature*(transaction: Transaction, output: var Signature): bool =
|
2018-08-24 15:46:48 +00:00
|
|
|
var bytes: array[65, byte]
|
|
|
|
bytes[0..31] = transaction.R.toByteArrayBE()
|
|
|
|
bytes[32..63] = transaction.S.toByteArrayBE()
|
2019-04-18 08:33:17 +00:00
|
|
|
|
2018-08-24 15:46:48 +00:00
|
|
|
# TODO: V will become a byte or range soon.
|
2019-04-18 08:33:17 +00:00
|
|
|
var v = transaction.V.int
|
|
|
|
if v >= EIP155_CHAIN_ID_OFFSET:
|
|
|
|
v = 28 - (v and 0x01)
|
2018-09-10 08:44:07 +00:00
|
|
|
elif v == 27 or v == 28:
|
2019-04-18 08:33:17 +00:00
|
|
|
discard
|
2018-09-10 08:44:07 +00:00
|
|
|
else:
|
|
|
|
return false
|
|
|
|
|
2019-04-18 08:33:17 +00:00
|
|
|
bytes[64] = byte(v - 27)
|
2018-09-10 08:44:07 +00:00
|
|
|
result = recoverSignature(bytes, output) == EthKeysStatus.Success
|
|
|
|
|
|
|
|
proc toSignature*(transaction: Transaction): Signature =
|
|
|
|
if not getSignature(transaction, result):
|
|
|
|
raise newException(Exception, "Invalid signaure")
|
2018-08-24 15:46:48 +00:00
|
|
|
|
|
|
|
proc getSender*(transaction: Transaction, output: var EthAddress): bool =
|
|
|
|
## Find the address the transaction was sent from.
|
2018-09-10 08:44:07 +00:00
|
|
|
var sig: Signature
|
|
|
|
if transaction.getSignature(sig):
|
|
|
|
var pubKey: PublicKey
|
2019-04-18 08:33:17 +00:00
|
|
|
var txHash = transaction.txHashNoSignature
|
2018-09-10 08:44:07 +00:00
|
|
|
if recoverSignatureKey(sig, txHash.data, pubKey) == EthKeysStatus.Success:
|
|
|
|
output = pubKey.toCanonicalAddress()
|
|
|
|
result = true
|
2018-08-24 15:46:48 +00:00
|
|
|
|
2018-08-29 15:52:12 +00:00
|
|
|
proc getSender*(transaction: Transaction): EthAddress =
|
|
|
|
## Raises error on failure to recover public key
|
|
|
|
if not transaction.getSender(result):
|
|
|
|
raise newException(ValidationError, "Could not derive sender address from transaction")
|
2018-09-10 08:44:07 +00:00
|
|
|
|
2019-02-26 07:04:12 +00:00
|
|
|
proc getRecipient*(tx: Transaction): EthAddress =
|
|
|
|
if tx.isContractCreation:
|
|
|
|
let sender = tx.getSender()
|
|
|
|
result = generateAddress(sender, tx.accountNonce)
|
|
|
|
else:
|
|
|
|
result = tx.to
|