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

    Interface TransactResult

    The response from a [[Session.transact]] call.

    interface TransactResult {
        chain: ChainDefinition;
        request: SigningRequest;
        resolved: ResolvedSigningRequest | undefined;
        response?: { [key: string]: any };
        returns: TransactResultReturnValue[];
        revisions: TransactRevisions;
        signatures: Signature[];
        signer: PermissionLevel;
        transaction: ResolvedTransaction | undefined;
    }
    Index

    The chain that was used.

    The SigningRequest representation of the transaction.

    resolved: ResolvedSigningRequest | undefined

    The ResolvedSigningRequest of the transaction

    response?: { [key: string]: any }

    The response from the API after sending the transaction, only present if transaction was broadcast.

    The return values provided by the transaction

    An array containing revisions of the transaction as modified by plugins as ESR payloads

    signatures: Signature[]

    The transaction signatures.

    The signer authority.

    transaction: ResolvedTransaction | undefined

    The resulting transaction.