import { type SuiExtraArgsV1 } from '../extra-args.ts'; import type { CCIPMessage_V1_6, ChainFamily } from '../types.ts'; /** Sui-specific CCIP v1.6 message type with Sui extra args. */ export type CCIPMessage_V1_6_Sui = CCIPMessage_V1_6 & SuiExtraArgsV1; /** * Unsigned Sui transaction, serialized via Transaction#serialize(). * Reconstruct with Transaction.from(transactions[0]). */ export type UnsignedSuiTx = { family: typeof ChainFamily.Sui; transactions: [string]; }; export declare const SuiExtraArgsV1Codec: import("@mysten/sui/bcs").BcsStruct<{ gasLimit: import("@mysten/sui/bcs").BcsType; allowOutOfOrderExecution: import("@mysten/sui/bcs").BcsType; tokenReceiver: import("@mysten/sui/bcs").BcsType & { length: number; }, string>; receiverObjectIds: import("@mysten/sui/bcs").BcsType & { length: number; }> & { length: number; }, string>; }, string>; /** Token amount data structure for Sui CCIP messages. */ export type SuiTokenAmount = { source_pool_address?: string; dest_token_address?: number[]; extra_data?: number[]; amount?: string | number; dest_exec_data?: number[]; dest_gas_amount?: string | number; }; /** * Encodes Sui v1 extra arguments using BCS encoding. * @param args - Sui extra arguments to encode. * @returns Encoded bytes with tag prefix. */ export declare function encodeSuiExtraArgsV1(args: SuiExtraArgsV1): string; /** * Sui-specific CCIP message log structure from events. */ export type SuiCCIPMessageLog = { dest_chain_selector: string; message: { data: number[]; extra_args: number[]; fee_token: string; fee_token_amount: string; fee_value_juels: string; header: { dest_chain_selector: string; message_id: number[]; nonce: string; sequence_number: string; source_chain_selector: string; }; receiver: number[]; sender: string; token_amounts: SuiTokenAmount[]; }; sequence_number: string; }; //# sourceMappingURL=types.d.ts.map