rubic-sdk
Version:
Simplify dApp creation
19 lines (18 loc) • 354 B
TypeScript
export interface OpenoceanSwapQuoteResponse {
code: number;
data: {
data: string;
outAmount: string;
value: string;
to: string;
};
error?: string;
}
export interface OpenoceanSuiSwapQuoteResponse {
code: number;
data: {
data: string;
outAmount: string;
};
error?: string;
}