EthereumLitTransaction must be provided to the SignTransaction endpoint when network is evm.

interface EthereumLitTransaction {
    chain: string;
    chainId: number;
    dataHex?: string;
    gasLimit?: number;
    gasPrice?: string;
    toAddress: string;
    value: string;
}

Hierarchy

  • BaseLitTransaction
    • EthereumLitTransaction

Properties

chain: string
chainId: number

The chain ID of the target chain that the transaction will be executed on

dataHex?: string

Data in hex format to be included in the transaction

gasLimit?: number

The maximum gas price that you are willing to pay to execute the transaction

gasPrice?: string

The exact gas price that you are willing to pay to execute the transaction

toAddress: string

The address the transaction is 'to'

value: string

The value of the transaction to be sent