import { BN } from '@coral-xyz/anchor'; import { PublicKey } from '@solana/web3.js'; export const UpdateSalePhaseTierEventName = 'UpdateSalePhaseTierEvent'; export interface UpdateSalePhaseTierEvent { timestamp: BN; salePhaseName: string; tierId: string; price: BN; mintLimit: BN; buyEnable: boolean; airdropEnable: boolean; }