@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
13 lines (12 loc) • 456 B
TypeScript
import { QuantityInterface } from '@melonproject/token-math';
export interface TakeOrderFromAccountOasisDexArgs {
id: number;
maxTakeAmount: QuantityInterface;
sell: QuantityInterface;
buy: QuantityInterface;
}
declare const takeOrderFromAccountOasisDex: import("../../../utils/solidity/transactionFactory").EnhancedExecute<any, {
bought: QuantityInterface;
sold: QuantityInterface;
}>;
export default takeOrderFromAccountOasisDex;