UNPKG

@orca-so/wavebreak

Version:

The wavebreak JS client for interacting with the wavebreak program.

12 lines (11 loc) 564 B
import { Codec, Decoder, Encoder } from '@solana/kit'; export declare enum BondingCurveCreationType { Manual = 0, Launch = 1, Lockedlaunch = 2, Presale = 3 } export type BondingCurveCreationTypeArgs = BondingCurveCreationType; export declare function getBondingCurveCreationTypeEncoder(): Encoder<BondingCurveCreationTypeArgs>; export declare function getBondingCurveCreationTypeDecoder(): Decoder<BondingCurveCreationType>; export declare function getBondingCurveCreationTypeCodec(): Codec<BondingCurveCreationTypeArgs, BondingCurveCreationType>;