Coda by Ian Macalinao
    Preparing search index...

    Interface ParsedSetCollectionSizeInstruction<TProgram, TAccountMetas>

    interface ParsedSetCollectionSizeInstruction<
        TProgram extends string = typeof TOKEN_METADATA_PROGRAM_ADDRESS,
        TAccountMetas extends readonly AccountMeta[] = readonly AccountMeta[],
    > {
        accounts: {
            collectionAuthority: TAccountMetas[1];
            collectionAuthorityRecord?: TAccountMetas[3];
            collectionMetadata: TAccountMetas[0];
            collectionMint: TAccountMetas[2];
        };
        data: SetCollectionSizeInstructionData;
        programAddress: Address<TProgram>;
    }

    Type Parameters

    Index

    Properties

    accounts: {
        collectionAuthority: TAccountMetas[1];
        collectionAuthorityRecord?: TAccountMetas[3];
        collectionMetadata: TAccountMetas[0];
        collectionMint: TAccountMetas[2];
    }

    Type Declaration

    • collectionAuthority: TAccountMetas[1]

      Collection Update authority

    • OptionalcollectionAuthorityRecord?: TAccountMetas[3]

      Collection Authority Record PDA

    • collectionMetadata: TAccountMetas[0]

      Collection Metadata account

    • collectionMint: TAccountMetas[2]

      Mint of the Collection

    programAddress: Address<TProgram>