Type alias BaseTransaction

BaseTransaction: {
    data?: Bytes;
    from: Hex | Uint8Array;
    gasLimit: Bytes;
    nonce: Bytes;
    to: Hex | Uint8Array;
    value: Bytes;
}

Base Ethereum Transaction

Type declaration

  • Optional data?: Bytes

    Arbitrary data.

  • from: Hex | Uint8Array

    The address of the sender, that will be signing the transaction

  • gasLimit: Bytes

    Maximum amount of gas units that this transaction can consume.

  • nonce: Bytes

    Sequentially incrementing counter which indicates the transaction number from the account

  • to: Hex | Uint8Array

    The receiving address. If an externally-owned account, the transaction will transfer value. If a contract account, the transaction will execute the contract code.

  • value: Bytes

    The amount of Ether sent.