@wharfkit/session - v4.0.1
    Preparing search index...

    Interface TransactArgs

    Payload accepted by the [[Session.transact]] method. Note that one of action, actions or transaction must be set.

    interface TransactArgs {
        action?: AnyAction;
        actions?: AnyAction[];
        context_free_actions?: ActionType[];
        context_free_data?: string[];
        request?: string | SigningRequest;
        transaction?: AnyTransaction;
    }
    Index
    action?: AnyAction

    Action to sign.

    actions?: AnyAction[]

    Actions to sign.

    context_free_actions?: ActionType[]

    Context free actions to include in the transaction

    context_free_data?: string[]

    Context free data to include in the transaction

    request?: string | SigningRequest

    An ESR payload

    transaction?: AnyTransaction

    Full transaction to sign.