import type { SendAssetParams } from '@portal-hq/utils' import type { SendAssetResponse } from '../../../types' export interface SendOptions { sponsorGas?: boolean signatureApprovalMemo?: string traceId?: string } export interface ChainHandler { readonly namespace: string send( params: SendAssetParams, chainId: string, options: SendOptions, ): Promise }