@unilogin/sdk
Version:
SDK is a JS library, that communicates with relayer. SDK allows managing contract, by creating basic contract-calling messages.
336 lines • 17.1 kB
JavaScript
"use strict";
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
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) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
var __generator = (this && this.__generator) || function (thisArg, body) {
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
function verb(n) { return function (v) { return step([n, v]); }; }
function step(op) {
if (f) throw new TypeError("Generator is already executing.");
while (_) try {
if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
if (y = 0, t) op = [op[0] & 2, t.value];
switch (op[0]) {
case 0: case 1: t = op; break;
case 4: _.label++; return { value: op[1], done: false };
case 5: _.label++; y = op[1]; op = [0]; continue;
case 7: op = _.ops.pop(); _.trys.pop(); continue;
default:
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
if (t[2]) _.ops.pop();
_.trys.pop(); continue;
}
op = body.call(thisArg, _);
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
}
};
var __read = (this && this.__read) || function (o, n) {
var m = typeof Symbol === "function" && o[Symbol.iterator];
if (!m) return o;
var i = m.call(o), r, ar = [], e;
try {
while ((n === void 0 || n-- > 0) && !(r = i.next()).done) ar.push(r.value);
}
catch (error) { e = { error: error }; }
finally {
try {
if (r && !r.done && (m = i["return"])) m.call(i);
}
finally { if (e) throw e.error; }
}
return ar;
};
Object.defineProperty(exports, "__esModule", { value: true });
var commons_1 = require("@unilogin/commons");
var contracts_1 = require("@unilogin/contracts");
var testutils_1 = require("@unilogin/contracts/testutils");
var chai_1 = require("chai");
var ethereum_waffle_1 = require("ethereum-waffle");
var ethers_1 = require("ethers");
var WalletContractService_1 = require("../../../src/integration/ethereum/WalletContractService");
var Beta2Service_1 = require("../../../src/integration/ethereum/Beta2Service");
var GnosisSafeService_1 = require("../../../src/integration/ethereum/GnosisSafeService");
describe('INT: WalletContractService', function () {
var provider = ethereum_waffle_1.createMockProvider();
var _a = __read(ethereum_waffle_1.getWallets(provider), 1), wallet = _a[0];
var walletService = new WalletContractService_1.WalletContractService(new contracts_1.BlockchainService(provider), new Beta2Service_1.Beta2Service(provider), new GnosisSafeService_1.GnosisSafeService(provider));
var proxyWallet;
var keyPair;
describe('beta2', function () {
before(function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0: return [4 /*yield*/, testutils_1.setupWalletContract(wallet)];
case 1:
(_a = _b.sent(), proxyWallet = _a.proxyWallet, keyPair = _a.keyPair);
return [2 /*return*/];
}
});
}); });
it('getWalletService', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.getWalletService(proxyWallet.address)];
case 1:
_a.apply(void 0, [(_b.sent()) instanceof Beta2Service_1.Beta2Service]).to.be.true;
return [2 /*return*/];
}
});
}); });
it('last nonce returns proper number', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.lastNonce(proxyWallet.address)];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq(0);
return [2 /*return*/];
}
});
}); });
it('key exists return true', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.keyExist(proxyWallet.address, keyPair.publicKey)];
case 1:
_a.apply(void 0, [_b.sent()]).to.be.true;
return [2 /*return*/];
}
});
}); });
it('returns proper number of requiredSignatures', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.requiredSignatures(proxyWallet.address)];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq(1);
return [2 /*return*/];
}
});
}); });
it('correctly calculates signature', function () { return __awaiter(void 0, void 0, void 0, function () {
var msg, bytes, signer, _a, _b, _c;
return __generator(this, function (_d) {
switch (_d.label) {
case 0:
msg = 'simple message';
bytes = ethers_1.utils.toUtf8Bytes(msg);
signer = new ethers_1.Wallet(keyPair.privateKey);
_b = chai_1.expect;
return [4 /*yield*/, walletService.signMessage(proxyWallet.address, keyPair.privateKey, bytes)];
case 1:
_c = (_a = _b.apply(void 0, [_d.sent()]).to).eq;
return [4 /*yield*/, signer.signMessage(msg)];
case 2:
_c.apply(_a, [_d.sent()]);
return [2 /*return*/];
}
});
}); });
it('returns KeyAdded for KeyAdded event', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.getEventNameFor(proxyWallet.address, 'KeyAdded')];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq('KeyAdded');
return [2 /*return*/];
}
});
}); });
it('returns KeyRemoved for KeyRemoved event', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.getEventNameFor(proxyWallet.address, 'KeyRemoved')];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq('KeyRemoved');
return [2 /*return*/];
}
});
}); });
});
describe('beta3', function () {
before(function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0: return [4 /*yield*/, testutils_1.setupGnosisSafeContract(wallet)];
case 1:
(_a = _b.sent(), proxyWallet = _a.proxy, keyPair = _a.keyPair);
return [2 /*return*/];
}
});
}); });
it('getWalletService', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.getWalletService(proxyWallet.address)];
case 1:
_a.apply(void 0, [(_b.sent()) instanceof GnosisSafeService_1.GnosisSafeService]).to.be.true;
return [2 /*return*/];
}
});
}); });
it('last nonce returns proper number', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.lastNonce(proxyWallet.address)];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq(0);
return [2 /*return*/];
}
});
}); });
it('key exists return true', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.keyExist(proxyWallet.address, keyPair.publicKey)];
case 1:
_a.apply(void 0, [_b.sent()]).to.be.true;
return [2 /*return*/];
}
});
}); });
it('returns proper number of requiredSignatures', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.requiredSignatures(proxyWallet.address)];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq(1);
return [2 /*return*/];
}
});
}); });
it('correctly calculates signature', function () { return __awaiter(void 0, void 0, void 0, function () {
var message, messagePayload, msgHash, signature, _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
message = 'Hi, how are you?';
messagePayload = ethers_1.utils.arrayify(ethers_1.utils.toUtf8Bytes(message));
msgHash = contracts_1.calculateGnosisStringHash(messagePayload, proxyWallet.address);
signature = contracts_1.signStringMessage(msgHash, keyPair.privateKey);
_a = chai_1.expect;
return [4 /*yield*/, walletService.signMessage(proxyWallet.address, keyPair.privateKey, messagePayload)];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq(signature);
return [2 /*return*/];
}
});
}); });
it('encodes function that adds key', function () { return __awaiter(void 0, void 0, void 0, function () {
var publicKey, expectedEncodedFunction, _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
publicKey = commons_1.createKeyPair().publicKey;
expectedEncodedFunction = contracts_1.GnosisSafeInterface.functions.addOwnerWithThreshold.encode([publicKey, 1]);
_a = chai_1.expect;
return [4 /*yield*/, walletService.encodeFunction(proxyWallet.address, 'addKey', [publicKey])];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq(expectedEncodedFunction);
return [2 /*return*/];
}
});
}); });
it('encodes removeKey', function () { return __awaiter(void 0, void 0, void 0, function () {
var publicKey, expectedEncodedFunction, _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
publicKey = commons_1.createKeyPair().publicKey;
return [4 /*yield*/, testutils_1.executeAddKeyGnosis(wallet, proxyWallet.address, publicKey, keyPair.privateKey)];
case 1:
_b.sent();
expectedEncodedFunction = contracts_1.GnosisSafeInterface.functions.removeOwner.encode([contracts_1.SENTINEL_OWNERS, publicKey, 1]);
_a = chai_1.expect;
return [4 /*yield*/, walletService.encodeFunction(proxyWallet.address, 'removeKey', [publicKey])];
case 2:
_a.apply(void 0, [_b.sent()]).to.eq(expectedEncodedFunction);
return [2 /*return*/];
}
});
}); });
it('encodes setRequiredSignatures', function () { return __awaiter(void 0, void 0, void 0, function () {
var expectedEncodedFunction, _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
expectedEncodedFunction = contracts_1.GnosisSafeInterface.functions.changeThreshold.encode([2]);
_a = chai_1.expect;
return [4 /*yield*/, walletService.encodeFunction(proxyWallet.address, 'setRequiredSignatures', [2])];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq(expectedEncodedFunction);
return [2 /*return*/];
}
});
}); });
it('returns AddedOwner for KeyAdded event', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.getEventNameFor(proxyWallet.address, 'KeyAdded')];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq('AddedOwner');
return [2 /*return*/];
}
});
}); });
it('returns RemovedOwner for KeyRemoved event', function () { return __awaiter(void 0, void 0, void 0, function () {
var _a;
return __generator(this, function (_b) {
switch (_b.label) {
case 0:
_a = chai_1.expect;
return [4 /*yield*/, walletService.getEventNameFor(proxyWallet.address, 'KeyRemoved')];
case 1:
_a.apply(void 0, [_b.sent()]).to.eq('RemovedOwner');
return [2 /*return*/];
}
});
}); });
});
});
//# sourceMappingURL=WalletContractService.test.js.map