@aptos-labs/ts-sdk - v7.1.0
    Preparing search index...

    Type Alias DecryptedEncryptedTransactionPayloadResponse

    Encrypted payload response after the node has successfully decrypted it. Narrow on encrypted_state === "decrypted" to access decrypted_payload.

    type DecryptedEncryptedTransactionPayloadResponse = {
        ciphertext: string;
        claimed_entry_fun: ClaimedEntryFunctionResponse | null;
        decrypted_payload:
            | EntryFunctionPayloadResponse
            | ScriptPayloadResponse
            | MultisigPayloadResponse;
        decryption_nonce: string;
        encrypted_state: "decrypted";
        encryption_epoch?: string;
        payload_hash: string;
        type: string;
    }
    Index

    Properties

    ciphertext: string

    claimed_entry_fun

    claimed_entry_fun: ClaimedEntryFunctionResponse | null
    decrypted_payload:
        | EntryFunctionPayloadResponse
        | ScriptPayloadResponse
        | MultisigPayloadResponse
    decryption_nonce: string
    encrypted_state: "decrypted"
    encryption_epoch?: string
    payload_hash: string
    type: string