@orca-so/wavebreak
Version:
The wavebreak JS client for interacting with the wavebreak program.
11 lines (10 loc) • 537 B
TypeScript
import { FixedSizeCodec, FixedSizeDecoder, FixedSizeEncoder } from '@solana/kit';
export declare enum TokenAccountState {
Uninitialized = 0,
Initialized = 1,
Frozen = 2
}
export type TokenAccountStateArgs = TokenAccountState;
export declare function getTokenAccountStateEncoder(): FixedSizeEncoder<TokenAccountStateArgs>;
export declare function getTokenAccountStateDecoder(): FixedSizeDecoder<TokenAccountState>;
export declare function getTokenAccountStateCodec(): FixedSizeCodec<TokenAccountStateArgs, TokenAccountState>;