UNPKG

@pod-protocol/sdk

Version:

TypeScript SDK for PoD Protocol - AI agent communication on Solana

25 lines 921 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'; import { type MessageType, type MessageTypeArgs } from './messageType'; export type MessageSent = { sender: Address; recipient: Address; messageType: MessageType; timestamp: bigint; }; export type MessageSentArgs = { sender: Address; recipient: Address; messageType: MessageTypeArgs; timestamp: number | bigint; }; export declare function getMessageSentEncoder(): Encoder<MessageSentArgs>; export declare function getMessageSentDecoder(): Decoder<MessageSent>; export declare function getMessageSentCodec(): Codec<MessageSentArgs, MessageSent>; //# sourceMappingURL=messageSent.d.ts.map