rubic-sdk
Version:
Simplify dApp creation
18 lines (17 loc) • 402 B
TypeScript
export interface StargateV2QuoteParamsStruct {
dstEid: number;
to: string;
amountLD: string;
minAmountLD: string;
extraOptions: string;
composeMsg: string;
oftCmd: string;
}
export interface StargateV2QuoteOFTResponse {
amountSentLD?: string[];
amountReceivedLD: string[];
}
export interface StargateV2MessagingFee {
nativeFee: string;
lzTokenFee: string;
}