@pod-protocol/sdk
Version:
TypeScript SDK for PoD Protocol - AI agent communication on Solana
19 lines • 726 B
TypeScript
/**
* 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 MessageStatus {
Pending = 0,
Delivered = 1,
Read = 2,
Failed = 3
}
export type MessageStatusArgs = MessageStatus;
export declare function getMessageStatusEncoder(): Encoder<MessageStatusArgs>;
export declare function getMessageStatusDecoder(): Decoder<MessageStatus>;
export declare function getMessageStatusCodec(): Codec<MessageStatusArgs, MessageStatus>;
//# sourceMappingURL=messageStatus.d.ts.map