Documentation
    Preparing search index...

    Type Alias InitializeTokenBadgeParams

    Parameters to initialize a TokenBadge account.

    The public key for the WhirlpoolsConfig

    The public key for the WhirlpoolsConfigExtension

    The public key for the tokenBadgeAuthority

    The public key for the mint for which the TokenBadge is being initialized

    The PDA for the TokenBadge account

    The account that would fund the creation of this account

    type InitializeTokenBadgeParams = {
        funder: PublicKey;
        tokenBadgeAuthority: PublicKey;
        tokenBadgePda: PDA;
        tokenMint: PublicKey;
        whirlpoolsConfig: PublicKey;
        whirlpoolsConfigExtension: PublicKey;
    }
    Index

    Properties

    funder: PublicKey
    tokenBadgeAuthority: PublicKey
    tokenBadgePda: PDA
    tokenMint: PublicKey
    whirlpoolsConfig: PublicKey
    whirlpoolsConfigExtension: PublicKey