Coda by Ian Macalinao
    Preparing search index...

    Interface VerifyInput<TAccountAuthority, TAccountDelegateRecord, TAccountMetadata, TAccountCollectionMint, TAccountCollectionMetadata, TAccountCollectionMasterEdition, TAccountSystemProgram, TAccountSysvarInstructions>

    interface VerifyInput<
        TAccountAuthority extends string = string,
        TAccountDelegateRecord extends string = string,
        TAccountMetadata extends string = string,
        TAccountCollectionMint extends string = string,
        TAccountCollectionMetadata extends string = string,
        TAccountCollectionMasterEdition extends string = string,
        TAccountSystemProgram extends string = string,
        TAccountSysvarInstructions extends string = string,
    > {
        authority: TransactionSigner<TAccountAuthority>;
        collectionMasterEdition?: Address<TAccountCollectionMasterEdition>;
        collectionMetadata?: Address<TAccountCollectionMetadata>;
        collectionMint?: Address<TAccountCollectionMint>;
        delegateRecord?: Address<TAccountDelegateRecord>;
        metadata: Address<TAccountMetadata>;
        systemProgram?: Address<TAccountSystemProgram>;
        sysvarInstructions?: Address<TAccountSysvarInstructions>;
        verificationArgs: VerificationArgs;
    }

    Type Parameters

    • TAccountAuthority extends string = string
    • TAccountDelegateRecord extends string = string
    • TAccountMetadata extends string = string
    • TAccountCollectionMint extends string = string
    • TAccountCollectionMetadata extends string = string
    • TAccountCollectionMasterEdition extends string = string
    • TAccountSystemProgram extends string = string
    • TAccountSysvarInstructions extends string = string
    Index

    Properties

    authority: TransactionSigner<TAccountAuthority>

    Creator to verify, collection update authority or delegate

    collectionMasterEdition?: Address<TAccountCollectionMasterEdition>

    Master Edition Account of the Collection Token

    collectionMetadata?: Address<TAccountCollectionMetadata>

    Metadata Account of the Collection

    collectionMint?: Address<TAccountCollectionMint>

    Mint of the Collection

    delegateRecord?: Address<TAccountDelegateRecord>

    Delegate record PDA

    metadata: Address<TAccountMetadata>

    Metadata account

    systemProgram?: Address<TAccountSystemProgram>

    System program

    sysvarInstructions?: Address<TAccountSysvarInstructions>

    Instructions sysvar account

    verificationArgs: VerificationArgs