Coda by Ian Macalinao
    Preparing search index...

    Interface ResizeInput<TAccountMetadata, TAccountEdition, TAccountMint, TAccountPayer, TAccountAuthority, TAccountToken, TAccountSystemProgram>

    interface ResizeInput<
        TAccountMetadata extends string = string,
        TAccountEdition extends string = string,
        TAccountMint extends string = string,
        TAccountPayer extends string = string,
        TAccountAuthority extends string = string,
        TAccountToken extends string = string,
        TAccountSystemProgram extends string = string,
    > {
        authority?: TransactionSigner<TAccountAuthority>;
        edition: Address<TAccountEdition>;
        metadata: Address<TAccountMetadata>;
        mint: Address<TAccountMint>;
        payer: Address<TAccountPayer> | TransactionSigner<TAccountPayer>;
        systemProgram?: Address<TAccountSystemProgram>;
        token?: Address<TAccountToken>;
    }

    Type Parameters

    • TAccountMetadata extends string = string
    • TAccountEdition extends string = string
    • TAccountMint extends string = string
    • TAccountPayer extends string = string
    • TAccountAuthority extends string = string
    • TAccountToken extends string = string
    • TAccountSystemProgram extends string = string
    Index

    Properties

    authority?: TransactionSigner<TAccountAuthority>

    Owner of the asset for (p)NFTs, or mint authority for fungible assets, if different from the payer

    edition: Address<TAccountEdition>

    The master edition or edition account of the digital asset, an uninitialized account for fungible assets

    metadata: Address<TAccountMetadata>

    The metadata account of the digital asset

    mint: Address<TAccountMint>

    Mint of token asset

    payer: Address<TAccountPayer> | TransactionSigner<TAccountPayer>

    The recipient of the excess rent and authority if the authority account is not present

    systemProgram?: Address<TAccountSystemProgram>

    System program

    token?: Address<TAccountToken>

    Token or Associated Token account