UNPKG

@melonproject/protocol

Version:

Technology Regulated and Operated Investment Funds

59 lines (58 loc) 2.93 kB
"use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { return new (P || (P = Promise))(function (resolve, reject) { function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } function step(result) { result.done ? resolve(result.value) : new P(function (resolve) { resolve(result.value); }).then(fulfilled, rejected); } step((generator = generator.apply(thisArg, _arguments || [])).next()); }); }; var __importStar = (this && this.__importStar) || function (mod) { if (mod && mod.__esModule) return mod; var result = {}; if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; result["default"] = mod; return result; }; Object.defineProperty(exports, "__esModule", { value: true }); const web3Utils = __importStar(require("web3-utils")); const transactionFactory_1 = require("../../../../utils/solidity/transactionFactory"); const getExchangeIndex_1 = require("../calls/getExchangeIndex"); const ensureFundOwner_1 = require("../guards/ensureFundOwner"); const Contracts_1 = require("../../../../Contracts"); const FunctionSignatures_1 = require("../utils/FunctionSignatures"); const emptyAddress_1 = require("../../../../utils/constants/emptyAddress"); const guard = (environment, { id, maker, makerAsset, takerAsset }, contractAddress) => __awaiter(this, void 0, void 0, function* () { yield ensureFundOwner_1.ensureFundOwner(environment, contractAddress); }); const prepareArgs = (environment, { id, maker, makerAsset, takerAsset }, contractAddress) => __awaiter(this, void 0, void 0, function* () { const exchangeIndex = yield getExchangeIndex_1.getExchangeIndex(environment, contractAddress, { exchange: Contracts_1.Exchanges.MatchingMarket, }); return [ exchangeIndex, FunctionSignatures_1.FunctionSignatures.cancelOrder, [ maker.toString(), emptyAddress_1.emptyAddress, makerAsset.toString(), takerAsset.toString(), emptyAddress_1.emptyAddress, emptyAddress_1.emptyAddress, ], ['0', '0', '0', '0', '0', '0', '0', 0], `0x${Number(id) .toString(16) .padStart(64, '0')}`, web3Utils.padLeft('0x0', 64), web3Utils.padLeft('0x0', 64), web3Utils.padLeft('0x0', 64), ]; }); const postProcess = (_, receipt) => __awaiter(this, void 0, void 0, function* () { return { id: web3Utils.toDecimal(receipt.events.LogKill.returnValues.id), }; }); const cancelOasisDexOrder = transactionFactory_1.transactionFactory('callOnExchange', Contracts_1.Contracts.Trading, guard, prepareArgs, postProcess); exports.cancelOasisDexOrder = cancelOasisDexOrder;