UNPKG

gill

Version:

a modern javascript/typescript client library for interacting with the Solana blockchain

27 lines 912 B
/** * 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, type Option, type OptionOrNullable } from '@solana/kit'; import { type Creator, type CreatorArgs } from '.'; export type Data = { name: string; symbol: string; uri: string; sellerFeeBasisPoints: number; creators: Option<Array<Creator>>; }; export type DataArgs = { name: string; symbol: string; uri: string; sellerFeeBasisPoints: number; creators: OptionOrNullable<Array<CreatorArgs>>; }; export declare function getDataEncoder(): Encoder<DataArgs>; export declare function getDataDecoder(): Decoder<Data>; export declare function getDataCodec(): Codec<DataArgs, Data>; //# sourceMappingURL=data.d.ts.map