EvmGenericTx: {
    data?: string;
    gasLimit: Amount;
    gasPrice: Amount;
    maxFeePerGas?: Amount;
    maxPriorityFeePerGas?: Amount;
    network: BlockchainNetwork;
    nonce?: string;
    publicKeyId?: string;
    templateKind: EvmGenericTx;
    to: string;
    typedData?: Eip712TypedData;
    value?: string;
}

Type declaration

  • Optional data?: string
  • gasLimit: Amount
  • gasPrice: Amount
  • Optional maxFeePerGas?: Amount

    the maximum amount of gas willing to be paid for the transaction (inclusive of baseFeePerGas and maxPriorityFeePerGas)

  • Optional maxPriorityFeePerGas?: Amount

    the maximum amount of gas to be included as a tip to the miner

  • network: BlockchainNetwork
  • Optional nonce?: string
  • Optional publicKeyId?: string
  • templateKind: EvmGenericTx
  • to: string
  • Optional typedData?: Eip712TypedData
  • Optional value?: string

Generated using TypeDoc