export interface MessagingFee {
    nativeFee: bigint
    zroFee: bigint
}

export interface Timeout {
    expiry: bigint
    fallbackLib: string
}
/**
 * LayerZero protocol version constants
 */

export const OAppInfoVersion = { VERSION_1: 1, VERSION_2: 2 } as const
export const LzReceiveVersion = { VERSION_1: 1 } as const 
export const LzComposeVersion = { VERSION_1: 1 } as const
