UNPKG

@melonproject/protocol

Version:

Technology Regulated and Operated Investment Funds

15 lines (14 loc) 541 B
import { QuantityInterface, Address } from '@melonproject/token-math'; export declare type MakeOasisDexOrderResult = { buy: QuantityInterface; sell: QuantityInterface; maker: Address; id: string; timestamp: string; }; export interface MakeOasisDexOrderArgs { makerQuantity: QuantityInterface; takerQuantity: QuantityInterface; } declare const makeOasisDexOrder: import("../../../../utils/solidity/transactionFactory").EnhancedExecute<MakeOasisDexOrderArgs, MakeOasisDexOrderResult>; export { makeOasisDexOrder };