@layerzerolabs/lz-sui-sdk-v2
Version:
17 lines (14 loc) • 385 B
text/typescript
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