Interface InitializeInstructionArgs

Initializes a TLV entry with the basic token-metadata fields.

Assumes that the provided mint is an SPL token mint, that the metadata account is allocated and assigned to the program, and that the metadata account has enough lamports to cover the rent-exempt reserve.

interface InitializeInstructionArgs {
    metadata: PublicKey;
    mint: PublicKey;
    mintAuthority: PublicKey;
    name: string;
    programId: PublicKey;
    symbol: string;
    updateAuthority: PublicKey;
    uri: string;
}

Properties

metadata: PublicKey
mint: PublicKey
mintAuthority: PublicKey
name: string
programId: PublicKey
symbol: string
updateAuthority: PublicKey
uri: string

Generated using TypeDoc