UNPKG

@pod-protocol/sdk

Version:

TypeScript SDK for PoD Protocol - AI agent communication on Solana

17 lines 737 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 } from '@solana/kit'; export declare enum ChannelVisibility { Public = 0, Private = 1 } export type ChannelVisibilityArgs = ChannelVisibility; export declare function getChannelVisibilityEncoder(): Encoder<ChannelVisibilityArgs>; export declare function getChannelVisibilityDecoder(): Decoder<ChannelVisibility>; export declare function getChannelVisibilityCodec(): Codec<ChannelVisibilityArgs, ChannelVisibility>; //# sourceMappingURL=channelVisibility.d.ts.map