xrpl
    Preparing search index...

    Interface ConfidentialMergeInboxParams

    interface ConfidentialMergeInboxParams {
        account: string;
        ledgerIndex?: LedgerIndex;
        mptIssuanceID: string;
        sequence?: number;
    }

    Hierarchy

    • BaseConfidentialParams
      • ConfidentialMergeInboxParams
    Index

    Properties

    account: string

    The holder's classic XRPL address.

    ledgerIndex?: LedgerIndex

    Advanced: the ledger index to read confidential state (balance, version, issuer/auditor keys) from, so a single proof is built from one coherent ledger snapshot. Defaults to the latest validated ledger. prepareConfidentialBatch sets it so every inner shares one ledger; standalone callers normally omit it.

    mptIssuanceID: string

    The 24-byte hex MPTokenIssuanceID.

    sequence?: number

    Optional explicit sequence number. When omitted the builder queries the account's current sequence. The returned transaction pins Sequence, so it must be submitted without re-deriving the sequence (the proof is bound to it).