@pod-protocol/sdk
Version:
TypeScript SDK for PoD Protocol - AI agent communication on Solana
24 lines • 856 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 Address, type Codec, type Decoder, type Encoder } from '@solana/kit';
export type EscrowDeposit = {
channel: Address;
depositor: Address;
amount: bigint;
timestamp: bigint;
};
export type EscrowDepositArgs = {
channel: Address;
depositor: Address;
amount: number | bigint;
timestamp: number | bigint;
};
export declare function getEscrowDepositEncoder(): Encoder<EscrowDepositArgs>;
export declare function getEscrowDepositDecoder(): Decoder<EscrowDeposit>;
export declare function getEscrowDepositCodec(): Codec<EscrowDepositArgs, EscrowDeposit>;
//# sourceMappingURL=escrowDeposit.d.ts.map