Interface TransactionResult

interface TransactionResult {
    blockNumber: number;
    events?: any[];
    gasUsed: bigint;
    success: boolean;
    transactionHash: string;
}

Properties

blockNumber: number
events?: any[]
gasUsed: bigint
success: boolean
transactionHash: string