@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
12 lines (11 loc) • 484 B
TypeScript
import { QuantityInterface, Address } from '@melonproject/token-math';
export declare type TakeOasisDexOrderResult = any;
export interface TakeOasisDexOrderArgs {
id: number;
makerQuantity: QuantityInterface;
takerQuantity: QuantityInterface;
maker: Address;
fillTakerQuantity?: QuantityInterface;
}
declare const takeOasisDexOrder: import("../../../../utils/solidity/transactionFactory").EnhancedExecute<TakeOasisDexOrderArgs, any>;
export { takeOasisDexOrder };