interface SerializeTransactionOptions {
    client?: SuiClient;
    jsonRpc?: {
        multiGetObjectsPageSize?: number;
    };
    onlyTransactionKind?: boolean;
    supportedIntents?: string[];
}

Hierarchy (view full)

Properties

client?: SuiClient
jsonRpc?: {
    multiGetObjectsPageSize?: number;
}

Type declaration

  • OptionalmultiGetObjectsPageSize?: number

    Sets the maximum number of objects to fetch per request when resolving object versions, defaults to 50

onlyTransactionKind?: boolean
supportedIntents?: string[]