UNPKG

@pod-protocol/sdk

Version:

TypeScript SDK for PoD Protocol - AI agent communication on Solana

27 lines 1.01 kB
/** * 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 Address, type Codec, type Decoder, type Encoder } from '@solana/kit'; import { type ChannelVisibility, type ChannelVisibilityArgs } from './channelVisibility'; export type ChannelCreated = { channel: Address; creator: Address; name: string; visibility: ChannelVisibility; timestamp: bigint; }; export type ChannelCreatedArgs = { channel: Address; creator: Address; name: string; visibility: ChannelVisibilityArgs; timestamp: number | bigint; }; export declare function getChannelCreatedEncoder(): Encoder<ChannelCreatedArgs>; export declare function getChannelCreatedDecoder(): Decoder<ChannelCreated>; export declare function getChannelCreatedCodec(): Codec<ChannelCreatedArgs, ChannelCreated>; //# sourceMappingURL=channelCreated.d.ts.map