gill
Version:
a modern javascript/typescript client library for interacting with the Solana blockchain
21 lines • 823 B
TypeScript
/**
* This code was AUTOGENERATED using the codama library.
* Please DO NOT EDIT THIS FILE, instead use visitors
* to add features, then rerun codama to update it.
*
* @see https://github.com/codama-idl/codama
*/
import { type Codec, type Decoder, type Encoder } from "@solana/kit";
export declare enum TokenStandard {
NonFungible = 0,
FungibleAsset = 1,
Fungible = 2,
NonFungibleEdition = 3,
ProgrammableNonFungible = 4,
ProgrammableNonFungibleEdition = 5
}
export type TokenStandardArgs = TokenStandard;
export declare function getTokenStandardEncoder(): Encoder<TokenStandardArgs>;
export declare function getTokenStandardDecoder(): Decoder<TokenStandard>;
export declare function getTokenStandardCodec(): Codec<TokenStandardArgs, TokenStandard>;
//# sourceMappingURL=tokenStandard.d.ts.map