Documentation
    Preparing search index...

    Type Alias TransactionResult

    TransactionResult:
        | { $kind: "GasCoin"; GasCoin: true }
        | { $kind: "Input"; Input: number; type?: "pure" }
        | { $kind: "Input"; Input: number; type?: "object" }
        | { $kind: "Result"; Result: number }
        | { $kind: "NestedResult"; NestedResult: [number, number] }
        | TransactionResultType

    Union type for transaction results from Sui blockchain

    This type represents various forms of transaction results including direct results, nested results, and standard transaction result types.