UNPKG

@metaplex-foundation/mpl-candy-machine-core

Version:

MPL Candy Machine Core JavaScript API. This MPL package is for the current generation of the Candy Machine Core (a.k.a. Candy Machine V3).

14 lines (13 loc) 652 B
import * as beet from '@metaplex-foundation/beet'; import * as web3 from '@solana/web3.js'; export declare const setMintAuthorityStruct: beet.BeetArgsStruct<{ instructionDiscriminator: number[]; }>; export declare type SetMintAuthorityInstructionAccounts = { candyMachine: web3.PublicKey; authority: web3.PublicKey; mintAuthority: web3.PublicKey; anchorRemainingAccounts?: web3.AccountMeta[]; }; export declare const setMintAuthorityInstructionDiscriminator: number[]; export declare function createSetMintAuthorityInstruction(accounts: SetMintAuthorityInstructionAccounts, programId?: web3.PublicKey): web3.TransactionInstruction;