@superstateinc/allowlist
Version:
TypeScript library for interacting with the Superstate Allowlist program on Solana
13 lines • 606 B
TypeScript
import { TransactionInstruction } from '@solana/web3.js';
import { ThawInstructionParams } from './types';
/**
* Creates a thaw instruction for the allowlist program
*
* This instruction thaws a user's token account if they are allowed on either
* the public allowlist or the private allowlist for the specific mint.
*
* @param params Parameters for creating the thaw instruction
* @returns A TransactionInstruction that can be added to a transaction
*/
export declare function createThawInstruction(params: ThawInstructionParams): TransactionInstruction;
//# sourceMappingURL=instructions.d.ts.map