Coda by Ian Macalinao
    Preparing search index...

    Type Alias MintV1AsyncInput<TAccountTreeAuthority, TAccountLeafOwner, TAccountLeafDelegate, TAccountMerkleTree, TAccountPayer, TAccountTreeDelegate, TAccountLogWrapper, TAccountCompressionProgram, TAccountSystemProgram>

    type MintV1AsyncInput<
        TAccountTreeAuthority extends string = string,
        TAccountLeafOwner extends string = string,
        TAccountLeafDelegate extends string = string,
        TAccountMerkleTree extends string = string,
        TAccountPayer extends string = string,
        TAccountTreeDelegate extends string = string,
        TAccountLogWrapper extends string = string,
        TAccountCompressionProgram extends string = string,
        TAccountSystemProgram extends string = string,
    > = {
        compressionProgram?: Address<TAccountCompressionProgram>;
        leafDelegate: Address<TAccountLeafDelegate>;
        leafOwner: Address<TAccountLeafOwner>;
        logWrapper?: Address<TAccountLogWrapper>;
        merkleTree: Address<TAccountMerkleTree>;
        message: MintV1InstructionDataArgs["message"];
        payer: TransactionSigner<TAccountPayer>;
        systemProgram?: Address<TAccountSystemProgram>;
        treeAuthority?: Address<TAccountTreeAuthority>;
        treeDelegate: TransactionSigner<TAccountTreeDelegate>;
    }

    Type Parameters

    • TAccountTreeAuthority extends string = string
    • TAccountLeafOwner extends string = string
    • TAccountLeafDelegate extends string = string
    • TAccountMerkleTree extends string = string
    • TAccountPayer extends string = string
    • TAccountTreeDelegate extends string = string
    • TAccountLogWrapper extends string = string
    • TAccountCompressionProgram extends string = string
    • TAccountSystemProgram extends string = string
    Index

    Properties

    compressionProgram?: Address<TAccountCompressionProgram>

    The SPL/MPL Account Compression program that owns and manages the Merkle tree.

    leafDelegate: Address<TAccountLeafDelegate>

    Delegate authority for the leaf; defaults to the leaf owner when no delegate is set.

    leafOwner: Address<TAccountLeafOwner>

    Owner of the compressed NFT leaf being operated on.

    logWrapper?: Address<TAccountLogWrapper>

    The SPL/MPL Noop program, used to log leaf data so off-chain indexers can reconstruct the tree.

    merkleTree: Address<TAccountMerkleTree>

    The concurrent Merkle tree account storing the compressed leaves, owned by the account compression program.

    payer: TransactionSigner<TAccountPayer>

    Account that pays for the transaction and any account rent.

    systemProgram?: Address<TAccountSystemProgram>

    The Solana System program.

    treeAuthority?: Address<TAccountTreeAuthority>

    The tree's TreeConfig PDA, which stores its configuration and acts as the tree's authority for CPIs into the compression program.

    treeDelegate: TransactionSigner<TAccountTreeDelegate>

    Delegate authority of the tree, authorized to mint into and manage the tree on the creator's behalf.