UNPKG

@leda-mint-io/candymachine-client-sdk

Version:

Metaplex Candy Machine Client SDK

41 lines (40 loc) 2.04 kB
export declare const SUPPORTED_IMAGE_TYPES: string[]; export declare const SUPPORTED_ANIMATION_TYPES: string[]; export declare const DEFAULT_GATEKEEPER: { gatekeeperNetwork: string; expireOnUse: boolean; }; export declare const JSON_EXTENSION = "application/json"; export declare const DEFAULT_TIMEOUT = 30000; export declare const NOTIFICATION_TIMEOUT_NEVER = -1; export declare const NOTIFICATION_TIMEOUT_DEFAULT = 5000; import { PublicKey } from '@safecoin/web3.js'; export declare const CANDY_MACHINE = "candy_machine"; export declare const AUCTION_HOUSE = "auction_house"; export declare const TOKEN_ENTANGLER = "token_entangler"; export declare const ESCROW = "escrow"; export declare const A = "A"; export declare const B = "B"; export declare const FEE_PAYER = "fee_payer"; export declare const TREASURY = "treasury"; export declare const MAX_NAME_LENGTH = 32; export declare const MAX_URI_LENGTH = 200; export declare const MAX_SYMBOL_LENGTH = 10; export declare const MAX_CREATOR_LEN: number; export declare const MAX_CREATOR_LIMIT = 5; export declare const ARWEAVE_PAYMENT_WALLET: PublicKey; export declare const CANDY_MACHINE_PROGRAM_ID: PublicKey; export declare const CANDY_MACHINE_PROGRAM_V2_ID: PublicKey; export declare const TOKEN_METADATA_PROGRAM_ID: PublicKey; export declare const SPL_ASSOCIATED_TOKEN_ACCOUNT_PROGRAM_ID: PublicKey; export declare const TOKEN_PROGRAM_ID: PublicKey; export declare const FAIR_LAUNCH_PROGRAM_ID: PublicKey; export declare const AUCTION_HOUSE_PROGRAM_ID: PublicKey; export declare const TOKEN_ENTANGLEMENT_PROGRAM_ID: PublicKey; export declare const WRAPPED_SOL_MINT: PublicKey; export declare const ARWEAVE_UPLOAD_ENDPOINT = "https://us-central1-metaplex-studios.cloudfunctions.net/uploadFile"; export declare const CONFIG_ARRAY_START: number; export declare const CONFIG_ARRAY_START_V2: number; export declare const CONFIG_LINE_SIZE_V2: number; export declare const CONFIG_LINE_SIZE: number; export declare const CACHE_PATH = "./.cache";