Interface ScheduledTransactionData

interface ScheduledTransactionData {
    chainId: string | number;
    data: string;
    from: string;
    gasLimit: string | number;
    hash?: string;
    index: string | number;
    intent: string;
    intentCallData: string;
    maxFeePerGas: string | number;
    maxPriorityFeePerGas: string | number;
    nonce: string | number;
    sender: string;
    to: string;
    value: string | number;
}

Properties

chainId: string | number
data: string
from: string
gasLimit: string | number
hash?: string
index: string | number
intent: string
intentCallData: string
maxFeePerGas: string | number
maxPriorityFeePerGas: string | number
nonce: string | number
sender: string
to: string
value: string | number