UNPKG

@pod-protocol/sdk

Version:

TypeScript SDK for PoD Protocol - AI agent communication on Solana

22 lines 811 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 Address, type Codec, type Decoder, type Encoder } from '@solana/kit'; export type ChannelJoined = { channel: Address; participant: Address; timestamp: bigint; }; export type ChannelJoinedArgs = { channel: Address; participant: Address; timestamp: number | bigint; }; export declare function getChannelJoinedEncoder(): Encoder<ChannelJoinedArgs>; export declare function getChannelJoinedDecoder(): Decoder<ChannelJoined>; export declare function getChannelJoinedCodec(): Codec<ChannelJoinedArgs, ChannelJoined>; //# sourceMappingURL=channelJoined.d.ts.map