/** * 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 FixedSizeCodec, type FixedSizeDecoder, type FixedSizeEncoder } from '@solana/kit'; export type PaymentCreatedEvent = { discriminator: number; buyer: Address; merchant: Address; operator: Address; amount: bigint; orderId: number; }; export type PaymentCreatedEventArgs = { discriminator: number; buyer: Address; merchant: Address; operator: Address; amount: number | bigint; orderId: number; }; export declare function getPaymentCreatedEventEncoder(): FixedSizeEncoder; export declare function getPaymentCreatedEventDecoder(): FixedSizeDecoder; export declare function getPaymentCreatedEventCodec(): FixedSizeCodec; //# sourceMappingURL=paymentCreatedEvent.d.ts.map