EthSignTransactionParams
Experimental
EthSignTransactionParams:
object
Based on the JSON-RPC request for eth_signTransaction procedure
Type declaration
data?
optionalreadonlydata:Hex
The compiled code of a contract OR the hash of the invoked method signature and encoded parameters. Optional if creating a contract.
from
readonlyfrom:Address
The address from which the transaction is sent from
gas?
optionalreadonlygas:bigint
The gas provded for transaction execution. It will return unused gas. Default value is 90000
gasPrice?
optionalreadonlygasPrice:bigint
Integer of the gasPrice used for each paid gas, in Wei. If not provided tevm will default to the eth_gasPrice value
nonce?
optionalreadonlynonce:bigint
Integer of a nonce. This allows to overwrite your own pending transactions that use the same nonce.
to?
optionalreadonlyto:Address
The address the transaction is directed to. Optional if creating a contract
value?
optionalreadonlyvalue:bigint
Integer of the value sent with this transaction, in Wei.
Source
packages/actions/src/eth/EthParams.ts:249