@airgap/astar 0.13.45-beta.1 → 0.13.45-beta.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/v0/index.js +6 -6
- package/v0/index.js.map +1 -1
- package/v0/protocol/astar/AstarProtocol.js +21 -40
- package/v0/protocol/astar/AstarProtocol.js.map +1 -1
- package/v0/protocol/astar/AstarProtocolOptions.js +39 -79
- package/v0/protocol/astar/AstarProtocolOptions.js.map +1 -1
- package/v0/protocol/shiden/ShidenProtocol.js +18 -37
- package/v0/protocol/shiden/ShidenProtocol.js.map +1 -1
- package/v0/protocol/shiden/ShidenProtocolOptions.js +30 -66
- package/v0/protocol/shiden/ShidenProtocolOptions.js.map +1 -1
- package/v1/controller/AstarAccountController.js +3 -23
- package/v1/controller/AstarAccountController.js.map +1 -1
- package/v1/controller/AstarTransactionController.js +3 -23
- package/v1/controller/AstarTransactionController.js.map +1 -1
- package/v1/index.js +3 -3
- package/v1/index.js.map +1 -1
- package/v1/module/AstarModule.d.ts +1 -1
- package/v1/module/AstarModule.js +40 -98
- package/v1/module/AstarModule.js.map +1 -1
- package/v1/module.js +2 -3
- package/v1/module.js.map +1 -1
- package/v1/node/AstarNodeClient.js +3 -23
- package/v1/node/AstarNodeClient.js.map +1 -1
- package/v1/protocol/AstarBaseProtocol.js +26 -88
- package/v1/protocol/AstarBaseProtocol.js.map +1 -1
- package/v1/protocol/AstarProtocol.js +18 -49
- package/v1/protocol/AstarProtocol.js.map +1 -1
- package/v1/protocol/ShidenProtocol.js +19 -50
- package/v1/protocol/ShidenProtocol.js.map +1 -1
- package/v1/serializer/v3/schemas/converter/transaction-converter.js +5 -6
- package/v1/serializer/v3/schemas/converter/transaction-converter.js.map +1 -1
- package/v1/serializer/v3/serializer-companion.js +75 -154
- package/v1/serializer/v3/serializer-companion.js.map +1 -1
- package/v1/serializer/v3/validators/transaction-validator.js +3 -23
- package/v1/serializer/v3/validators/transaction-validator.js.map +1 -1
- package/v1/serializer/v3/validators/validators.js +1 -1
- package/v1/serializer/v3/validators/validators.js.map +1 -1
- package/v1/types/configuration.d.ts +1 -1
- package/v1/types/crypto.d.ts +1 -1
- package/v1/types/protocol.d.ts +2 -2
|
@@ -3,7 +3,7 @@ import { AirGapModule, AirGapV3SerializerCompanion, ProtocolConfiguration } from
|
|
|
3
3
|
import { BlockExplorer } from '@airgap/module-kit/block-explorer/block-explorer';
|
|
4
4
|
import { OfflineProtocol, OnlineProtocol } from '@airgap/module-kit/protocol/protocol';
|
|
5
5
|
import { AstarProtocolNetwork } from '../types/protocol';
|
|
6
|
-
|
|
6
|
+
type SupportedProtocols = MainProtocolSymbols.ASTAR | MainProtocolSymbols.SHIDEN;
|
|
7
7
|
export declare class AstarModule implements AirGapModule<{
|
|
8
8
|
Protocols: SupportedProtocols;
|
|
9
9
|
ProtocolNetwork: AstarProtocolNetwork;
|
package/v1/module/AstarModule.js
CHANGED
|
@@ -1,113 +1,55 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
3
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
4
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
5
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
6
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
7
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
8
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
9
|
-
});
|
|
10
|
-
};
|
|
11
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
12
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
13
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
14
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
15
|
-
function step(op) {
|
|
16
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
17
|
-
while (_) try {
|
|
18
|
-
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;
|
|
19
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
20
|
-
switch (op[0]) {
|
|
21
|
-
case 0: case 1: t = op; break;
|
|
22
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
23
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
24
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
25
|
-
default:
|
|
26
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
27
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
28
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
29
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
30
|
-
if (t[2]) _.ops.pop();
|
|
31
|
-
_.trys.pop(); continue;
|
|
32
|
-
}
|
|
33
|
-
op = body.call(thisArg, _);
|
|
34
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
35
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
36
|
-
}
|
|
37
|
-
};
|
|
38
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
39
3
|
exports.AstarModule = void 0;
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
_a[coinlib_core_1.MainProtocolSymbols.ASTAR] = new module_kit_1.ModuleNetworkRegistry({
|
|
4
|
+
const coinlib_core_1 = require("@airgap/coinlib-core");
|
|
5
|
+
const errors_1 = require("@airgap/coinlib-core/errors");
|
|
6
|
+
const module_kit_1 = require("@airgap/module-kit");
|
|
7
|
+
const substrate_1 = require("@airgap/substrate");
|
|
8
|
+
const AstarProtocol_1 = require("../protocol/AstarProtocol");
|
|
9
|
+
const ShidenProtocol_1 = require("../protocol/ShidenProtocol");
|
|
10
|
+
const serializer_companion_1 = require("../serializer/v3/serializer-companion");
|
|
11
|
+
class AstarModule {
|
|
12
|
+
constructor() {
|
|
13
|
+
this.networkRegistries = {
|
|
14
|
+
[coinlib_core_1.MainProtocolSymbols.ASTAR]: new module_kit_1.ModuleNetworkRegistry({
|
|
52
15
|
supportedNetworks: [AstarProtocol_1.ASTAR_MAINNET_PROTOCOL_NETWORK]
|
|
53
16
|
}),
|
|
54
|
-
|
|
17
|
+
[coinlib_core_1.MainProtocolSymbols.SHIDEN]: new module_kit_1.ModuleNetworkRegistry({
|
|
55
18
|
supportedNetworks: [ShidenProtocol_1.SHIDEN_MAINNET_PROTOCOL_NETWORK]
|
|
56
|
-
})
|
|
57
|
-
|
|
19
|
+
})
|
|
20
|
+
};
|
|
58
21
|
this.supportedProtocols = (0, module_kit_1.createSupportedProtocols)(this.networkRegistries);
|
|
59
22
|
}
|
|
60
|
-
|
|
61
|
-
return
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
}
|
|
80
|
-
|
|
81
|
-
var _a;
|
|
82
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
83
|
-
var network;
|
|
84
|
-
return __generator(this, function (_b) {
|
|
85
|
-
network = typeof networkOrId === 'object' ? networkOrId : (_a = this.networkRegistries[identifier]) === null || _a === void 0 ? void 0 : _a.findNetwork(networkOrId);
|
|
86
|
-
if (network === undefined) {
|
|
87
|
-
throw new errors_1.ConditionViolationError(coinlib_core_1.Domain.SUBSTRATE, "Block Explorer network type not supported. (Astar)");
|
|
88
|
-
}
|
|
89
|
-
return [2 /*return*/, new substrate_1.SubscanBlockExplorer(network.blockExplorerUrl)];
|
|
90
|
-
});
|
|
91
|
-
});
|
|
92
|
-
};
|
|
93
|
-
AstarModule.prototype.createV3SerializerCompanion = function () {
|
|
94
|
-
return __awaiter(this, void 0, void 0, function () {
|
|
95
|
-
return __generator(this, function (_a) {
|
|
96
|
-
return [2 /*return*/, new serializer_companion_1.AstarV3SerializerCompanion()];
|
|
97
|
-
});
|
|
98
|
-
});
|
|
99
|
-
};
|
|
100
|
-
AstarModule.prototype.createProtocol = function (identifier, network) {
|
|
23
|
+
async createOfflineProtocol(identifier) {
|
|
24
|
+
return this.createProtocol(identifier);
|
|
25
|
+
}
|
|
26
|
+
async createOnlineProtocol(identifier, networkOrId) {
|
|
27
|
+
const network = typeof networkOrId === 'object' ? networkOrId : this.networkRegistries[identifier]?.findNetwork(networkOrId);
|
|
28
|
+
if (network === undefined) {
|
|
29
|
+
throw new errors_1.ConditionViolationError(coinlib_core_1.Domain.SUBSTRATE, `Protocol network type not supported. (Astar)`);
|
|
30
|
+
}
|
|
31
|
+
return this.createProtocol(identifier, network);
|
|
32
|
+
}
|
|
33
|
+
async createBlockExplorer(identifier, networkOrId) {
|
|
34
|
+
const network = typeof networkOrId === 'object' ? networkOrId : this.networkRegistries[identifier]?.findNetwork(networkOrId);
|
|
35
|
+
if (network === undefined) {
|
|
36
|
+
throw new errors_1.ConditionViolationError(coinlib_core_1.Domain.SUBSTRATE, `Block Explorer network type not supported. (Astar)`);
|
|
37
|
+
}
|
|
38
|
+
return new substrate_1.SubscanBlockExplorer(network.blockExplorerUrl);
|
|
39
|
+
}
|
|
40
|
+
async createV3SerializerCompanion() {
|
|
41
|
+
return new serializer_companion_1.AstarV3SerializerCompanion();
|
|
42
|
+
}
|
|
43
|
+
createProtocol(identifier, network) {
|
|
101
44
|
switch (identifier) {
|
|
102
45
|
case coinlib_core_1.MainProtocolSymbols.ASTAR:
|
|
103
|
-
return (0, AstarProtocol_1.createAstarProtocol)({ network
|
|
46
|
+
return (0, AstarProtocol_1.createAstarProtocol)({ network });
|
|
104
47
|
case coinlib_core_1.MainProtocolSymbols.SHIDEN:
|
|
105
|
-
return (0, ShidenProtocol_1.createShidenProtocol)({ network
|
|
48
|
+
return (0, ShidenProtocol_1.createShidenProtocol)({ network });
|
|
106
49
|
default:
|
|
107
|
-
throw new errors_1.ConditionViolationError(coinlib_core_1.Domain.SUBSTRATE,
|
|
50
|
+
throw new errors_1.ConditionViolationError(coinlib_core_1.Domain.SUBSTRATE, `Protocol ${identifier} not supported. (Astar)`);
|
|
108
51
|
}
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
}());
|
|
52
|
+
}
|
|
53
|
+
}
|
|
112
54
|
exports.AstarModule = AstarModule;
|
|
113
55
|
//# sourceMappingURL=AstarModule.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AstarModule.js","sourceRoot":"","sources":["../../../src/v1/module/AstarModule.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AstarModule.js","sourceRoot":"","sources":["../../../src/v1/module/AstarModule.ts"],"names":[],"mappings":";;;AAAA,uDAAkE;AAClE,wDAAqE;AACrE,mDAO2B;AAG3B,iDAAwD;AAExD,6DAA+F;AAC/F,+DAAkG;AAClG,gFAAkF;AAKlF,MAAa,WAAW;IAAxB;QACmB,sBAAiB,GAAsD;YACtF,CAAC,kCAAmB,CAAC,KAAK,CAAC,EAAE,IAAI,kCAAqB,CAAC;gBACrD,iBAAiB,EAAE,CAAC,8CAA8B,CAAC;aACpD,CAAC;YACF,CAAC,kCAAmB,CAAC,MAAM,CAAC,EAAE,IAAI,kCAAqB,CAAC;gBACtD,iBAAiB,EAAE,CAAC,gDAA+B,CAAC;aACrD,CAAC;SACH,CAAA;QACe,uBAAkB,GAAsD,IAAA,qCAAwB,EAAC,IAAI,CAAC,iBAAiB,CAAC,CAAA;IAgD1I,CAAC;IA9CQ,KAAK,CAAC,qBAAqB,CAAC,UAA8B;QAC/D,OAAO,IAAI,CAAC,cAAc,CAAC,UAAU,CAAC,CAAA;IACxC,CAAC;IAEM,KAAK,CAAC,oBAAoB,CAC/B,UAA8B,EAC9B,WAA2C;QAE3C,MAAM,OAAO,GACX,OAAO,WAAW,KAAK,QAAQ,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,UAAU,CAAC,EAAE,WAAW,CAAC,WAAW,CAAC,CAAA;QAE9G,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;YAC1B,MAAM,IAAI,gCAAuB,CAAC,qBAAM,CAAC,SAAS,EAAE,8CAA8C,CAAC,CAAA;QACrG,CAAC;QAED,OAAO,IAAI,CAAC,cAAc,CAAC,UAAU,EAAE,OAAO,CAAC,CAAA;IACjD,CAAC;IAEM,KAAK,CAAC,mBAAmB,CAC9B,UAA8B,EAC9B,WAA2C;QAE3C,MAAM,OAAO,GACX,OAAO,WAAW,KAAK,QAAQ,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,UAAU,CAAC,EAAE,WAAW,CAAC,WAAW,CAAC,CAAA;QAE9G,IAAI,OAAO,KAAK,SAAS,EAAE,CAAC;YAC1B,MAAM,IAAI,gCAAuB,CAAC,qBAAM,CAAC,SAAS,EAAE,oDAAoD,CAAC,CAAA;QAC3G,CAAC;QAED,OAAO,IAAI,gCAAoB,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAA;IAC3D,CAAC;IAEM,KAAK,CAAC,2BAA2B;QACtC,OAAO,IAAI,iDAA0B,EAAE,CAAA;IACzC,CAAC;IAEO,cAAc,CAAC,UAA8B,EAAE,OAAyB;QAC9E,QAAQ,UAAU,EAAE,CAAC;YACnB,KAAK,kCAAmB,CAAC,KAAK;gBAC5B,OAAO,IAAA,mCAAmB,EAAC,EAAE,OAAO,EAAE,CAAC,CAAA;YACzC,KAAK,kCAAmB,CAAC,MAAM;gBAC7B,OAAO,IAAA,qCAAoB,EAAC,EAAE,OAAO,EAAE,CAAC,CAAA;YAC1C;gBACE,MAAM,IAAI,gCAAuB,CAAC,qBAAM,CAAC,SAAS,EAAE,YAAY,UAAU,yBAAyB,CAAC,CAAA;QACxG,CAAC;IACH,CAAC;CACF;AAzDD,kCAyDC"}
|
package/v1/module.js
CHANGED
|
@@ -14,11 +14,10 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
14
14
|
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
15
15
|
};
|
|
16
16
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
17
|
-
exports.create =
|
|
18
|
-
|
|
17
|
+
exports.create = create;
|
|
18
|
+
const AstarModule_1 = require("./module/AstarModule");
|
|
19
19
|
__exportStar(require("./index"), exports);
|
|
20
20
|
function create() {
|
|
21
21
|
return new AstarModule_1.AstarModule();
|
|
22
22
|
}
|
|
23
|
-
exports.create = create;
|
|
24
23
|
//# sourceMappingURL=module.js.map
|
package/v1/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../src/v1/module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../src/v1/module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAKA,wBAEC;AAND,sDAAkD;AAElD,0CAAuB;AAEvB,SAAgB,MAAM;IACpB,OAAO,IAAI,yBAAW,EAAE,CAAA;AAC1B,CAAC"}
|
|
@@ -1,28 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __extends = (this && this.__extends) || (function () {
|
|
3
|
-
var extendStatics = function (d, b) {
|
|
4
|
-
extendStatics = Object.setPrototypeOf ||
|
|
5
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
-
return extendStatics(d, b);
|
|
8
|
-
};
|
|
9
|
-
return function (d, b) {
|
|
10
|
-
if (typeof b !== "function" && b !== null)
|
|
11
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
-
extendStatics(d, b);
|
|
13
|
-
function __() { this.constructor = d; }
|
|
14
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
-
};
|
|
16
|
-
})();
|
|
17
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
18
3
|
exports.AstarNodeClient = void 0;
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
function AstarNodeClient() {
|
|
23
|
-
return _super !== null && _super.apply(this, arguments) || this;
|
|
24
|
-
}
|
|
25
|
-
return AstarNodeClient;
|
|
26
|
-
}(v1_1.SubstrateCommonNodeClient));
|
|
4
|
+
const v1_1 = require("@airgap/substrate/v1");
|
|
5
|
+
class AstarNodeClient extends v1_1.SubstrateCommonNodeClient {
|
|
6
|
+
}
|
|
27
7
|
exports.AstarNodeClient = AstarNodeClient;
|
|
28
8
|
//# sourceMappingURL=AstarNodeClient.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AstarNodeClient.js","sourceRoot":"","sources":["../../../src/v1/node/AstarNodeClient.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AstarNodeClient.js","sourceRoot":"","sources":["../../../src/v1/node/AstarNodeClient.ts"],"names":[],"mappings":";;;AAAA,6CAAgE;AAIhE,MAAa,eAAgB,SAAQ,8BAAqD;CAAG;AAA7F,0CAA6F"}
|
|
@@ -1,96 +1,34 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __extends = (this && this.__extends) || (function () {
|
|
3
|
-
var extendStatics = function (d, b) {
|
|
4
|
-
extendStatics = Object.setPrototypeOf ||
|
|
5
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
-
return extendStatics(d, b);
|
|
8
|
-
};
|
|
9
|
-
return function (d, b) {
|
|
10
|
-
if (typeof b !== "function" && b !== null)
|
|
11
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
-
extendStatics(d, b);
|
|
13
|
-
function __() { this.constructor = d; }
|
|
14
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
-
};
|
|
16
|
-
})();
|
|
17
|
-
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
|
18
|
-
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
|
19
|
-
return new (P || (P = Promise))(function (resolve, reject) {
|
|
20
|
-
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
|
21
|
-
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
|
22
|
-
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
|
23
|
-
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
|
24
|
-
});
|
|
25
|
-
};
|
|
26
|
-
var __generator = (this && this.__generator) || function (thisArg, body) {
|
|
27
|
-
var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;
|
|
28
|
-
return g = { next: verb(0), "throw": verb(1), "return": verb(2) }, typeof Symbol === "function" && (g[Symbol.iterator] = function() { return this; }), g;
|
|
29
|
-
function verb(n) { return function (v) { return step([n, v]); }; }
|
|
30
|
-
function step(op) {
|
|
31
|
-
if (f) throw new TypeError("Generator is already executing.");
|
|
32
|
-
while (_) try {
|
|
33
|
-
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;
|
|
34
|
-
if (y = 0, t) op = [op[0] & 2, t.value];
|
|
35
|
-
switch (op[0]) {
|
|
36
|
-
case 0: case 1: t = op; break;
|
|
37
|
-
case 4: _.label++; return { value: op[1], done: false };
|
|
38
|
-
case 5: _.label++; y = op[1]; op = [0]; continue;
|
|
39
|
-
case 7: op = _.ops.pop(); _.trys.pop(); continue;
|
|
40
|
-
default:
|
|
41
|
-
if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }
|
|
42
|
-
if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }
|
|
43
|
-
if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }
|
|
44
|
-
if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }
|
|
45
|
-
if (t[2]) _.ops.pop();
|
|
46
|
-
_.trys.pop(); continue;
|
|
47
|
-
}
|
|
48
|
-
op = body.call(thisArg, _);
|
|
49
|
-
} catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }
|
|
50
|
-
if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };
|
|
51
|
-
}
|
|
52
|
-
};
|
|
53
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
54
3
|
exports.AstarBaseProtocolImpl = void 0;
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
4
|
+
const v1_1 = require("@airgap/substrate/v1");
|
|
5
|
+
const AstarAccountController_1 = require("../controller/AstarAccountController");
|
|
6
|
+
const AstarTransactionController_1 = require("../controller/AstarTransactionController");
|
|
7
|
+
const AstarNodeClient_1 = require("../node/AstarNodeClient");
|
|
59
8
|
// Implemenation
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
return _super.call(this, options, nodeClient, accountController, transactionController, blockExplorer) || this;
|
|
9
|
+
class AstarBaseProtocolImpl extends v1_1.SubstrateProtocolImpl {
|
|
10
|
+
constructor(options) {
|
|
11
|
+
const nodeClient = new AstarNodeClient_1.AstarNodeClient(options.configuration, options.network.rpcUrl);
|
|
12
|
+
const accountController = new AstarAccountController_1.AstarAccountController(options.configuration, nodeClient);
|
|
13
|
+
const transactionController = new AstarTransactionController_1.AstarTransactionController(options.configuration, nodeClient);
|
|
14
|
+
const blockExplorer = new v1_1.SubscanBlockExplorerClient(options.network.blockExplorerApi);
|
|
15
|
+
super(options, nodeClient, accountController, transactionController, blockExplorer);
|
|
68
16
|
}
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
if (intention === 'transfer') {
|
|
80
|
-
requiredTransactions.push([
|
|
81
|
-
'transfer',
|
|
82
|
-
{
|
|
83
|
-
to: v1_1.SubstrateSS58Address.createPlaceholder(),
|
|
84
|
-
value: transferableBalance
|
|
85
|
-
}
|
|
86
|
-
]);
|
|
87
|
-
}
|
|
88
|
-
return [2 /*return*/, requiredTransactions];
|
|
17
|
+
async getFutureRequiredTransactions(accountId, intention) {
|
|
18
|
+
const balance = await this.accountController.getBalance(accountId);
|
|
19
|
+
const transferableBalance = balance.transferable.minus(balance.existentialDeposit);
|
|
20
|
+
const requiredTransactions = [];
|
|
21
|
+
if (intention === 'transfer') {
|
|
22
|
+
requiredTransactions.push([
|
|
23
|
+
'transfer',
|
|
24
|
+
{
|
|
25
|
+
to: v1_1.SubstrateSS58Address.createPlaceholder(),
|
|
26
|
+
value: transferableBalance
|
|
89
27
|
}
|
|
90
|
-
|
|
91
|
-
}
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
}
|
|
28
|
+
]);
|
|
29
|
+
}
|
|
30
|
+
return requiredTransactions;
|
|
31
|
+
}
|
|
32
|
+
}
|
|
95
33
|
exports.AstarBaseProtocolImpl = AstarBaseProtocolImpl;
|
|
96
34
|
//# sourceMappingURL=AstarBaseProtocol.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AstarBaseProtocol.js","sourceRoot":"","sources":["../../../src/v1/protocol/AstarBaseProtocol.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AstarBaseProtocol.js","sourceRoot":"","sources":["../../../src/v1/protocol/AstarBaseProtocol.ts"],"names":[],"mappings":";;;AAAA,6CAO6B;AAE7B,iFAA6E;AAC7E,yFAAqF;AACrF,6DAAyD;AAUzD,gBAAgB;AAEhB,MAAsB,qBACpB,SAAQ,0BAOP;IAGD,YAAmB,OAAyC;QAC1D,MAAM,UAAU,GAAoB,IAAI,iCAAe,CAAC,OAAO,CAAC,aAAa,EAAE,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAAA;QAEtG,MAAM,iBAAiB,GAA2B,IAAI,+CAAsB,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,CAAC,CAAA;QAC/G,MAAM,qBAAqB,GAA+B,IAAI,uDAA0B,CAAC,OAAO,CAAC,aAAa,EAAE,UAAU,CAAC,CAAA;QAE3H,MAAM,aAAa,GAA+B,IAAI,+BAA0B,CAAC,OAAO,CAAC,OAAO,CAAC,gBAAgB,CAAC,CAAA;QAElH,KAAK,CAAC,OAAO,EAAE,UAAU,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,aAAa,CAAC,CAAA;IACrF,CAAC;IAES,KAAK,CAAC,6BAA6B,CAC3C,SAAmD,EACnD,SAA+B;QAE/B,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,iBAAiB,CAAC,UAAU,CAAC,SAAS,CAAC,CAAA;QAElE,MAAM,mBAAmB,GAAG,OAAO,CAAC,YAAY,CAAC,KAAK,CAAC,OAAO,CAAC,kBAAkB,CAAC,CAAA;QAElF,MAAM,oBAAoB,GAAkE,EAAE,CAAA;QAE9F,IAAI,SAAS,KAAK,UAAU,EAAE,CAAC;YAC7B,oBAAoB,CAAC,IAAI,CAAC;gBACxB,UAAU;gBACV;oBACE,EAAE,EAAE,yBAAoB,CAAC,iBAAiB,EAAE;oBAC5C,KAAK,EAAE,mBAAmB;iBAC3B;aACF,CAAC,CAAA;QACJ,CAAC;QAED,OAAO,oBAAoB,CAAA;IAC7B,CAAC;CACF;AA5CD,sDA4CC"}
|
|
@@ -1,34 +1,10 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __extends = (this && this.__extends) || (function () {
|
|
3
|
-
var extendStatics = function (d, b) {
|
|
4
|
-
extendStatics = Object.setPrototypeOf ||
|
|
5
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
-
return extendStatics(d, b);
|
|
8
|
-
};
|
|
9
|
-
return function (d, b) {
|
|
10
|
-
if (typeof b !== "function" && b !== null)
|
|
11
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
-
extendStatics(d, b);
|
|
13
|
-
function __() { this.constructor = d; }
|
|
14
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
-
};
|
|
16
|
-
})();
|
|
17
|
-
var __assign = (this && this.__assign) || function () {
|
|
18
|
-
__assign = Object.assign || function(t) {
|
|
19
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
20
|
-
s = arguments[i];
|
|
21
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
22
|
-
t[p] = s[p];
|
|
23
|
-
}
|
|
24
|
-
return t;
|
|
25
|
-
};
|
|
26
|
-
return __assign.apply(this, arguments);
|
|
27
|
-
};
|
|
28
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.
|
|
30
|
-
|
|
31
|
-
|
|
3
|
+
exports.ASTAR_MAINNET_PROTOCOL_NETWORK = exports.AstarProtocolImpl = exports.ASTAR_CONFIGURATION = exports.ASTAR_METADATA = void 0;
|
|
4
|
+
exports.createAstarProtocol = createAstarProtocol;
|
|
5
|
+
exports.createAstarProtocolOptions = createAstarProtocolOptions;
|
|
6
|
+
const coinlib_core_1 = require("@airgap/coinlib-core");
|
|
7
|
+
const AstarBaseProtocol_1 = require("./AstarBaseProtocol");
|
|
32
8
|
// Implementation
|
|
33
9
|
exports.ASTAR_METADATA = {
|
|
34
10
|
identifier: coinlib_core_1.MainProtocolSymbols.ASTAR,
|
|
@@ -65,10 +41,10 @@ exports.ASTAR_METADATA = {
|
|
|
65
41
|
},
|
|
66
42
|
mainUnit: 'ASTR',
|
|
67
43
|
account: {
|
|
68
|
-
standardDerivationPath:
|
|
44
|
+
standardDerivationPath: `m/44'/810'/0'/0/0`,
|
|
69
45
|
address: {
|
|
70
46
|
isCaseSensitive: true,
|
|
71
|
-
placeholder:
|
|
47
|
+
placeholder: `ABC...`,
|
|
72
48
|
regex: '^[a-km-zA-HJ-NP-Z1-9]+$'
|
|
73
49
|
}
|
|
74
50
|
}
|
|
@@ -83,24 +59,19 @@ exports.ASTAR_CONFIGURATION = {
|
|
|
83
59
|
types: {}
|
|
84
60
|
}
|
|
85
61
|
};
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
var configuration = exports.ASTAR_CONFIGURATION;
|
|
93
|
-
return _super.call(this, { metadata: metadata, configuration: configuration, network: completeOptions.network }) || this;
|
|
62
|
+
class AstarProtocolImpl extends AstarBaseProtocol_1.AstarBaseProtocolImpl {
|
|
63
|
+
constructor(options = {}) {
|
|
64
|
+
const completeOptions = createAstarProtocolOptions(options.network);
|
|
65
|
+
const metadata = exports.ASTAR_METADATA;
|
|
66
|
+
const configuration = exports.ASTAR_CONFIGURATION;
|
|
67
|
+
super({ metadata, configuration, network: completeOptions.network });
|
|
94
68
|
}
|
|
95
|
-
|
|
96
|
-
}(AstarBaseProtocol_1.AstarBaseProtocolImpl));
|
|
69
|
+
}
|
|
97
70
|
exports.AstarProtocolImpl = AstarProtocolImpl;
|
|
98
71
|
// Factory
|
|
99
|
-
function createAstarProtocol(options) {
|
|
100
|
-
if (options === void 0) { options = {}; }
|
|
72
|
+
function createAstarProtocol(options = {}) {
|
|
101
73
|
return new AstarProtocolImpl(options);
|
|
102
74
|
}
|
|
103
|
-
exports.createAstarProtocol = createAstarProtocol;
|
|
104
75
|
exports.ASTAR_MAINNET_PROTOCOL_NETWORK = {
|
|
105
76
|
name: 'Mainnet',
|
|
106
77
|
type: 'mainnet',
|
|
@@ -108,12 +79,10 @@ exports.ASTAR_MAINNET_PROTOCOL_NETWORK = {
|
|
|
108
79
|
blockExplorerUrl: 'https://astar.subscan.io',
|
|
109
80
|
blockExplorerApi: 'https://astar.subscan.prod.gke.papers.tech/api/v2/scan'
|
|
110
81
|
};
|
|
111
|
-
|
|
112
|
-
function createAstarProtocolOptions(network) {
|
|
113
|
-
if (network === void 0) { network = {}; }
|
|
82
|
+
const DEFAULT_ASTAR_PROTOCOL_NETWORK = exports.ASTAR_MAINNET_PROTOCOL_NETWORK;
|
|
83
|
+
function createAstarProtocolOptions(network = {}) {
|
|
114
84
|
return {
|
|
115
|
-
network:
|
|
85
|
+
network: { ...DEFAULT_ASTAR_PROTOCOL_NETWORK, ...network }
|
|
116
86
|
};
|
|
117
87
|
}
|
|
118
|
-
exports.createAstarProtocolOptions = createAstarProtocolOptions;
|
|
119
88
|
//# sourceMappingURL=AstarProtocol.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"AstarProtocol.js","sourceRoot":"","sources":["../../../src/v1/protocol/AstarProtocol.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"AstarProtocol.js","sourceRoot":"","sources":["../../../src/v1/protocol/AstarProtocol.ts"],"names":[],"mappings":";;;AAoFA,kDAEC;AAYD,gEAIC;AAtGD,uDAA0D;AAM1D,2DAA8E;AAM9E,iBAAiB;AAEJ,QAAA,cAAc,GAAiC;IAC1D,UAAU,EAAE,kCAAmB,CAAC,KAAK;IACrC,IAAI,EAAE,OAAO;IAEb,KAAK,EAAE;QACL,IAAI,EAAE;YACJ,MAAM,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;YACzB,QAAQ,EAAE,EAAE;SACb;QACD,KAAK,EAAE;YACL,MAAM,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;YAC1B,QAAQ,EAAE,EAAE;SACb;QACD,KAAK,EAAE;YACL,MAAM,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;YAC1B,QAAQ,EAAE,EAAE;SACb;QACD,KAAK,EAAE;YACL,MAAM,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;YAC1B,QAAQ,EAAE,CAAC;SACZ;QACD,KAAK,EAAE;YACL,MAAM,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;YAC1B,QAAQ,EAAE,CAAC;SACZ;QACD,KAAK,EAAE;YACL,MAAM,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;YAC1B,QAAQ,EAAE,CAAC;SACZ;QACD,KAAK,EAAE;YACL,MAAM,EAAE,EAAE,KAAK,EAAE,OAAO,EAAE;YAC1B,QAAQ,EAAE,CAAC;SACZ;KACF;IACD,QAAQ,EAAE,MAAM;IAEhB,OAAO,EAAE;QACP,sBAAsB,EAAE,mBAAmB;QAC3C,OAAO,EAAE;YACP,eAAe,EAAE,IAAI;YACrB,WAAW,EAAE,QAAQ;YACrB,KAAK,EAAE,yBAAyB;SACjC;KACF;CACF,CAAA;AAEY,QAAA,mBAAmB,GAA+B;IAC7D,OAAO,EAAE;QACP,IAAI,EAAE,MAAM;QACZ,MAAM,EAAE,CAAC;KACV;IACD,WAAW,EAAE;QACX,OAAO,EAAE,CAAC;QACV,KAAK,EAAE,EAAE;KACV;CACF,CAAA;AAED,MAAa,iBAAkB,SAAQ,yCAAiC;IACtE,YAAmB,UAAkD,EAAE;QACrE,MAAM,eAAe,GAAyB,0BAA0B,CAAC,OAAO,CAAC,OAAO,CAAC,CAAA;QAEzF,MAAM,QAAQ,GAAiC,sBAAc,CAAA;QAC7D,MAAM,aAAa,GAA+B,2BAAmB,CAAA;QAErE,KAAK,CAAC,EAAE,QAAQ,EAAE,aAAa,EAAE,OAAO,EAAE,eAAe,CAAC,OAAO,EAAE,CAAC,CAAA;IACtE,CAAC;CACF;AATD,8CASC;AAED,UAAU;AAEV,SAAgB,mBAAmB,CAAC,UAAkD,EAAE;IACtF,OAAO,IAAI,iBAAiB,CAAC,OAAO,CAAC,CAAA;AACvC,CAAC;AAEY,QAAA,8BAA8B,GAAyB;IAClE,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;IACf,MAAM,EAAE,yCAAyC;IACjD,gBAAgB,EAAE,0BAA0B;IAC5C,gBAAgB,EAAE,wDAAwD;CAC3E,CAAA;AAED,MAAM,8BAA8B,GAAyB,sCAA8B,CAAA;AAE3F,SAAgB,0BAA0B,CAAC,UAAyC,EAAE;IACpF,OAAO;QACL,OAAO,EAAE,EAAE,GAAG,8BAA8B,EAAE,GAAG,OAAO,EAAE;KAC3D,CAAA;AACH,CAAC"}
|
|
@@ -1,35 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
var __extends = (this && this.__extends) || (function () {
|
|
3
|
-
var extendStatics = function (d, b) {
|
|
4
|
-
extendStatics = Object.setPrototypeOf ||
|
|
5
|
-
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
6
|
-
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
7
|
-
return extendStatics(d, b);
|
|
8
|
-
};
|
|
9
|
-
return function (d, b) {
|
|
10
|
-
if (typeof b !== "function" && b !== null)
|
|
11
|
-
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
12
|
-
extendStatics(d, b);
|
|
13
|
-
function __() { this.constructor = d; }
|
|
14
|
-
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
15
|
-
};
|
|
16
|
-
})();
|
|
17
|
-
var __assign = (this && this.__assign) || function () {
|
|
18
|
-
__assign = Object.assign || function(t) {
|
|
19
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
20
|
-
s = arguments[i];
|
|
21
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
22
|
-
t[p] = s[p];
|
|
23
|
-
}
|
|
24
|
-
return t;
|
|
25
|
-
};
|
|
26
|
-
return __assign.apply(this, arguments);
|
|
27
|
-
};
|
|
28
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
-
exports.
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
3
|
+
exports.SHIDEN_MAINNET_PROTOCOL_NETWORK = exports.ShidenProtocolImpl = exports.SHIDEN_CONFIGURATION = exports.SHIDEN_METADATA = void 0;
|
|
4
|
+
exports.createShidenProtocol = createShidenProtocol;
|
|
5
|
+
exports.createShidenProtocolOptions = createShidenProtocolOptions;
|
|
6
|
+
const coinlib_core_1 = require("@airgap/coinlib-core");
|
|
7
|
+
const AstarBaseProtocol_1 = require("./AstarBaseProtocol");
|
|
8
|
+
const AstarProtocol_1 = require("./AstarProtocol");
|
|
33
9
|
// Implementation
|
|
34
10
|
exports.SHIDEN_METADATA = {
|
|
35
11
|
identifier: coinlib_core_1.MainProtocolSymbols.SHIDEN,
|
|
@@ -66,33 +42,28 @@ exports.SHIDEN_METADATA = {
|
|
|
66
42
|
},
|
|
67
43
|
mainUnit: 'SDN',
|
|
68
44
|
account: {
|
|
69
|
-
standardDerivationPath:
|
|
45
|
+
standardDerivationPath: `m/44'/810'/0'/0/0`,
|
|
70
46
|
address: {
|
|
71
47
|
isCaseSensitive: true,
|
|
72
|
-
placeholder:
|
|
48
|
+
placeholder: `ABC...`,
|
|
73
49
|
regex: '^[a-km-zA-HJ-NP-Z1-9]+$'
|
|
74
50
|
}
|
|
75
51
|
}
|
|
76
52
|
};
|
|
77
53
|
exports.SHIDEN_CONFIGURATION = AstarProtocol_1.ASTAR_CONFIGURATION;
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
var configuration = exports.SHIDEN_CONFIGURATION;
|
|
85
|
-
return _super.call(this, { metadata: metadata, configuration: configuration, network: completeOptions.network }) || this;
|
|
54
|
+
class ShidenProtocolImpl extends AstarBaseProtocol_1.AstarBaseProtocolImpl {
|
|
55
|
+
constructor(options = {}) {
|
|
56
|
+
const completeOptions = createShidenProtocolOptions(options.network);
|
|
57
|
+
const metadata = exports.SHIDEN_METADATA;
|
|
58
|
+
const configuration = exports.SHIDEN_CONFIGURATION;
|
|
59
|
+
super({ metadata, configuration, network: completeOptions.network });
|
|
86
60
|
}
|
|
87
|
-
|
|
88
|
-
}(AstarBaseProtocol_1.AstarBaseProtocolImpl));
|
|
61
|
+
}
|
|
89
62
|
exports.ShidenProtocolImpl = ShidenProtocolImpl;
|
|
90
63
|
// Factory
|
|
91
|
-
function createShidenProtocol(options) {
|
|
92
|
-
if (options === void 0) { options = {}; }
|
|
64
|
+
function createShidenProtocol(options = {}) {
|
|
93
65
|
return new ShidenProtocolImpl(options);
|
|
94
66
|
}
|
|
95
|
-
exports.createShidenProtocol = createShidenProtocol;
|
|
96
67
|
exports.SHIDEN_MAINNET_PROTOCOL_NETWORK = {
|
|
97
68
|
name: 'Mainnet',
|
|
98
69
|
type: 'mainnet',
|
|
@@ -100,12 +71,10 @@ exports.SHIDEN_MAINNET_PROTOCOL_NETWORK = {
|
|
|
100
71
|
blockExplorerUrl: 'https://shiden.subscan.io',
|
|
101
72
|
blockExplorerApi: 'https://shiden.subscan.prod.gke.papers.tech/api/v2/scan'
|
|
102
73
|
};
|
|
103
|
-
|
|
104
|
-
function createShidenProtocolOptions(network) {
|
|
105
|
-
if (network === void 0) { network = {}; }
|
|
74
|
+
const DEFAULT_SHIDEN_PROTOCOL_NETWORK = exports.SHIDEN_MAINNET_PROTOCOL_NETWORK;
|
|
75
|
+
function createShidenProtocolOptions(network = {}) {
|
|
106
76
|
return {
|
|
107
|
-
network:
|
|
77
|
+
network: { ...DEFAULT_SHIDEN_PROTOCOL_NETWORK, ...network }
|
|
108
78
|
};
|
|
109
79
|
}
|
|
110
|
-
exports.createShidenProtocolOptions = createShidenProtocolOptions;
|
|
111
80
|
//# sourceMappingURL=ShidenProtocol.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ShidenProtocol.js","sourceRoot":"","sources":["../../../src/v1/protocol/ShidenProtocol.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"ShidenProtocol.js","sourceRoot":"","sources":["../../../src/v1/protocol/ShidenProtocol.ts"],"names":[],"mappings":";;;AA4EA,oDAEC;AAYD,kEAIC;AA9FD,uDAA0D;AAM1D,2DAA8E;AAC9E,mDAAqD;AAMrD,iBAAiB;AAEJ,QAAA,eAAe,GAAkC;IAC5D,UAAU,EAAE,kCAAmB,CAAC,MAAM;IACtC,IAAI,EAAE,QAAQ;IAEd,KAAK,EAAE;QACL,GAAG,EAAE;YACH,MAAM,EAAE,EAAE,KAAK,EAAE,KAAK,EAAE;YACxB,QAAQ,EAAE,EAAE;SACb;QACD,IAAI,EAAE;YACJ,MAAM,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;YACzB,QAAQ,EAAE,EAAE;SACb;QACD,IAAI,EAAE;YACJ,MAAM,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;YACzB,QAAQ,EAAE,EAAE;SACb;QACD,IAAI,EAAE;YACJ,MAAM,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;YACzB,QAAQ,EAAE,CAAC;SACZ;QACD,IAAI,EAAE;YACJ,MAAM,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;YACzB,QAAQ,EAAE,CAAC;SACZ;QACD,IAAI,EAAE;YACJ,MAAM,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;YACzB,QAAQ,EAAE,CAAC;SACZ;QACD,IAAI,EAAE;YACJ,MAAM,EAAE,EAAE,KAAK,EAAE,MAAM,EAAE;YACzB,QAAQ,EAAE,CAAC;SACZ;KACF;IACD,QAAQ,EAAE,KAAK;IAEf,OAAO,EAAE;QACP,sBAAsB,EAAE,mBAAmB;QAC3C,OAAO,EAAE;YACP,eAAe,EAAE,IAAI;YACrB,WAAW,EAAE,QAAQ;YACrB,KAAK,EAAE,yBAAyB;SACjC;KACF;CACF,CAAA;AAEY,QAAA,oBAAoB,GAA+B,mCAAmB,CAAA;AAEnF,MAAa,kBAAmB,SAAQ,yCAAkC;IACxE,YAAmB,UAAkD,EAAE;QACrE,MAAM,eAAe,GAAyB,2BAA2B,CAAC,OAAO,CAAC,OAAO,CAAC,CAAA;QAE1F,MAAM,QAAQ,GAAkC,uBAAe,CAAA;QAC/D,MAAM,aAAa,GAA+B,4BAAoB,CAAA;QAEtE,KAAK,CAAC,EAAE,QAAQ,EAAE,aAAa,EAAE,OAAO,EAAE,eAAe,CAAC,OAAO,EAAE,CAAC,CAAA;IACtE,CAAC;CACF;AATD,gDASC;AAED,UAAU;AAEV,SAAgB,oBAAoB,CAAC,UAAkD,EAAE;IACvF,OAAO,IAAI,kBAAkB,CAAC,OAAO,CAAC,CAAA;AACxC,CAAC;AAEY,QAAA,+BAA+B,GAAyB;IACnE,IAAI,EAAE,SAAS;IACf,IAAI,EAAE,SAAS;IACf,MAAM,EAAE,0CAA0C;IAClD,gBAAgB,EAAE,2BAA2B;IAC7C,gBAAgB,EAAE,yDAAyD;CAC5E,CAAA;AAED,MAAM,+BAA+B,GAAyB,uCAA+B,CAAA;AAE7F,SAAgB,2BAA2B,CAAC,UAAyC,EAAE;IACrF,OAAO;QACL,OAAO,EAAE,EAAE,GAAG,+BAA+B,EAAE,GAAG,OAAO,EAAE;KAC5D,CAAA;AACH,CAAC"}
|