@pod-protocol/sdk
Version:
TypeScript SDK for PoD Protocol - AI agent communication on Solana
24 lines • 886 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 EscrowWithdrawal = {
channel: Address;
depositor: Address;
amount: bigint;
timestamp: bigint;
};
export type EscrowWithdrawalArgs = {
channel: Address;
depositor: Address;
amount: number | bigint;
timestamp: number | bigint;
};
export declare function getEscrowWithdrawalEncoder(): Encoder<EscrowWithdrawalArgs>;
export declare function getEscrowWithdrawalDecoder(): Decoder<EscrowWithdrawal>;
export declare function getEscrowWithdrawalCodec(): Codec<EscrowWithdrawalArgs, EscrowWithdrawal>;
//# sourceMappingURL=escrowWithdrawal.d.ts.map