UNPKG

@superstateinc/allowlist

Version:

TypeScript library for interacting with the Superstate Allowlist program on Solana

21 lines 756 B
import { PublicKey } from '@solana/web3.js'; /** * Seed prefixes used for PDA derivation */ export declare const ALLOWLIST_PROGRAM_SEED_PREFIX = "allowlist_program"; export declare const PRIVATE_ALLOWLIST_PREFIX = "private_allowlist"; export declare const PUBLIC_ALLOWED_ACCOUNT_SEED_PREFIX = "public_allowed_account"; export declare const PRIVATE_ALLOWED_ACCOUNT_SEED_PREFIX = "private_allowed_account"; export declare const ADMIN_SEED_PREFIX = "admin_authority"; /** * Standard Solana program IDs */ export declare const TOKEN_2022_PROGRAM_ID: PublicKey; export declare const SYSTEM_PROGRAM_ID: PublicKey; /** * Allowlist instruction discriminants */ export declare enum AllowlistInstruction { Thaw = 4 } //# sourceMappingURL=constants.d.ts.map