Coda by Ian Macalinao
    Preparing search index...

    Interface SetCollectionSizeInput<TAccountCollectionMetadata, TAccountCollectionAuthority, TAccountCollectionMint, TAccountCollectionAuthorityRecord>

    interface SetCollectionSizeInput<
        TAccountCollectionMetadata extends string = string,
        TAccountCollectionAuthority extends string = string,
        TAccountCollectionMint extends string = string,
        TAccountCollectionAuthorityRecord extends string = string,
    > {
        collectionAuthority: TransactionSigner<TAccountCollectionAuthority>;
        collectionAuthorityRecord?: Address<TAccountCollectionAuthorityRecord>;
        collectionMetadata: Address<TAccountCollectionMetadata>;
        collectionMint: Address<TAccountCollectionMint>;
        setCollectionSizeArgs: SetCollectionSizeArgsArgs;
    }

    Type Parameters

    • TAccountCollectionMetadata extends string = string
    • TAccountCollectionAuthority extends string = string
    • TAccountCollectionMint extends string = string
    • TAccountCollectionAuthorityRecord extends string = string
    Index

    Properties

    collectionAuthority: TransactionSigner<TAccountCollectionAuthority>

    Collection Update authority

    collectionAuthorityRecord?: Address<TAccountCollectionAuthorityRecord>

    Collection Authority Record PDA

    collectionMetadata: Address<TAccountCollectionMetadata>

    Collection Metadata account

    collectionMint: Address<TAccountCollectionMint>

    Mint of the Collection

    setCollectionSizeArgs: SetCollectionSizeArgsArgs