UNPKG

@pod-protocol/sdk

Version:

TypeScript SDK for PoD Protocol - AI agent communication on Solana

24 lines 886 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 AgentRegistered = { agent: Address; capabilities: bigint; metadataUri: string; timestamp: bigint; }; export type AgentRegisteredArgs = { agent: Address; capabilities: number | bigint; metadataUri: string; timestamp: number | bigint; }; export declare function getAgentRegisteredEncoder(): Encoder<AgentRegisteredArgs>; export declare function getAgentRegisteredDecoder(): Decoder<AgentRegistered>; export declare function getAgentRegisteredCodec(): Codec<AgentRegisteredArgs, AgentRegistered>; //# sourceMappingURL=agentRegistered.d.ts.map