@melonproject/protocol
Version:
Technology Regulated and Operated Investment Funds
43 lines (42 loc) • 2.17 kB
JavaScript
;
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());
});
};
Object.defineProperty(exports, "__esModule", { value: true });
const order_utils_1 = require("@0x/order-utils");
const Contracts_1 = require("../../../../Contracts");
const transactionFactory_1 = require("../../../../utils/solidity/transactionFactory");
const getExchangeIndex_1 = require("../calls/getExchangeIndex");
const FunctionSignatures_1 = require("../utils/FunctionSignatures");
const emptyAddress_1 = require("../../../../utils/constants/emptyAddress");
const prepareArgs = (environment, { signedOrder, orderHashHex: givenOrderHashHex }, contractAddress) => __awaiter(this, void 0, void 0, function* () {
const exchangeIndex = yield getExchangeIndex_1.getExchangeIndex(environment, contractAddress, {
exchange: Contracts_1.Exchanges.ZeroEx,
});
const orderHashHex = givenOrderHashHex || order_utils_1.orderHashUtils.getOrderHashHex(signedOrder);
const args = [
exchangeIndex,
FunctionSignatures_1.FunctionSignatures.cancelOrder,
[
emptyAddress_1.emptyAddress,
emptyAddress_1.emptyAddress,
emptyAddress_1.emptyAddress,
emptyAddress_1.emptyAddress,
emptyAddress_1.emptyAddress,
emptyAddress_1.emptyAddress,
],
[0, 0, 0, 0, 0, 0, 0, 0],
orderHashHex,
'0x0',
'0x0',
'0x0',
];
return args;
});
const cancel0xOrder = transactionFactory_1.transactionFactory('callOnExchange', Contracts_1.Contracts.Trading, undefined, prepareArgs);
exports.cancel0xOrder = cancel0xOrder;