@inco/js 0.1.20 → 0.1.21
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/dist/encryption/index.cjs +47 -34
- package/dist/encryption/index.mjs +47 -34
- package/dist/generated/lightning.d.ts +252 -6
- package/dist/index.cjs +47 -34
- package/dist/index.mjs +47 -34
- package/dist/lite/index.cjs +341 -57
- package/dist/lite/index.mjs +4040 -3694
- package/dist/local/index.cjs +31 -878
- package/dist/local/index.mjs +5358 -6142
- package/dist/local/local-node.d.ts +1 -2
- package/dist/reencryption/index.cjs +311 -40
- package/dist/reencryption/index.mjs +311 -40
- package/dist/viem.d.ts +53 -52
- package/package.json +1 -1
@@ -48,7 +48,7 @@ var __require = /* @__PURE__ */ ((x) => typeof require !== "undefined" ? require
|
|
48
48
|
throw Error('Dynamic require of "' + x + '" is not supported');
|
49
49
|
});
|
50
50
|
|
51
|
-
//
|
51
|
+
// node_modules/viem/_esm/utils/data/isHex.js
|
52
52
|
function isHex(value6, { strict: strict2 = true } = {}) {
|
53
53
|
if (!value6)
|
54
54
|
return false;
|
@@ -57,18 +57,19 @@ function isHex(value6, { strict: strict2 = true } = {}) {
|
|
57
57
|
return strict2 ? /^0x[0-9a-fA-F]*$/.test(value6) : value6.startsWith("0x");
|
58
58
|
}
|
59
59
|
|
60
|
-
//
|
60
|
+
// node_modules/viem/_esm/utils/data/size.js
|
61
61
|
function size21(value6) {
|
62
62
|
if (isHex(value6, { strict: false }))
|
63
63
|
return Math.ceil((value6.length - 2) / 2);
|
64
64
|
return value6.length;
|
65
65
|
}
|
66
|
-
var init_size = () => {
|
66
|
+
var init_size = () => {
|
67
|
+
};
|
67
68
|
|
68
|
-
//
|
69
|
-
var version = "2.
|
69
|
+
// node_modules/viem/_esm/errors/version.js
|
70
|
+
var version = "2.22.23";
|
70
71
|
|
71
|
-
//
|
72
|
+
// node_modules/viem/_esm/errors/base.js
|
72
73
|
function walk(err, fn) {
|
73
74
|
if (fn?.(err))
|
74
75
|
return err;
|
@@ -156,7 +157,7 @@ var init_base = __esm(() => {
|
|
156
157
|
};
|
157
158
|
});
|
158
159
|
|
159
|
-
//
|
160
|
+
// node_modules/viem/_esm/errors/abi.js
|
160
161
|
var AbiEncodingLengthMismatchError, BytesSizeMismatchError, UnsupportedPackedAbiType;
|
161
162
|
var init_abi = __esm(() => {
|
162
163
|
init_base();
|
@@ -186,7 +187,7 @@ var init_abi = __esm(() => {
|
|
186
187
|
};
|
187
188
|
});
|
188
189
|
|
189
|
-
//
|
190
|
+
// node_modules/viem/_esm/errors/data.js
|
190
191
|
var SizeExceedsPaddingSizeError;
|
191
192
|
var init_data = __esm(() => {
|
192
193
|
init_base();
|
@@ -197,7 +198,7 @@ var init_data = __esm(() => {
|
|
197
198
|
};
|
198
199
|
});
|
199
200
|
|
200
|
-
//
|
201
|
+
// node_modules/viem/_esm/utils/data/pad.js
|
201
202
|
function pad(hexOrBytes, { dir: dir2, size: size22 = 32 } = {}) {
|
202
203
|
if (typeof hexOrBytes === "string")
|
203
204
|
return padHex(hexOrBytes, { dir: dir2, size: size22 });
|
@@ -235,7 +236,7 @@ var init_pad = __esm(() => {
|
|
235
236
|
init_data();
|
236
237
|
});
|
237
238
|
|
238
|
-
//
|
239
|
+
// node_modules/viem/_esm/errors/encoding.js
|
239
240
|
var IntegerOutOfRangeError, SizeOverflowError;
|
240
241
|
var init_encoding = __esm(() => {
|
241
242
|
init_base();
|
@@ -251,7 +252,7 @@ var init_encoding = __esm(() => {
|
|
251
252
|
};
|
252
253
|
});
|
253
254
|
|
254
|
-
//
|
255
|
+
// node_modules/viem/_esm/utils/encoding/fromHex.js
|
255
256
|
function assertSize(hexOrBytes, { size: size22 }) {
|
256
257
|
if (size21(hexOrBytes) > size22)
|
257
258
|
throw new SizeOverflowError({
|
@@ -264,7 +265,7 @@ var init_fromHex = __esm(() => {
|
|
264
265
|
init_size();
|
265
266
|
});
|
266
267
|
|
267
|
-
//
|
268
|
+
// node_modules/viem/_esm/utils/encoding/toHex.js
|
268
269
|
function toHex(value6, opts = {}) {
|
269
270
|
if (typeof value6 === "number" || typeof value6 === "bigint")
|
270
271
|
return numberToHex(value6, opts);
|
@@ -336,7 +337,7 @@ var init_toHex = __esm(() => {
|
|
336
337
|
encoder2 = /* @__PURE__ */ new TextEncoder;
|
337
338
|
});
|
338
339
|
|
339
|
-
//
|
340
|
+
// node_modules/viem/_esm/utils/encoding/toBytes.js
|
340
341
|
function toBytes(value6, opts = {}) {
|
341
342
|
if (typeof value6 === "number" || typeof value6 === "bigint")
|
342
343
|
return numberToBytes(value6, opts);
|
@@ -441,7 +442,8 @@ function aoutput(out, instance) {
|
|
441
442
|
throw new Error("digestInto() expects output buffer of length at least " + min4);
|
442
443
|
}
|
443
444
|
}
|
444
|
-
var init__assert = () => {
|
445
|
+
var init__assert = () => {
|
446
|
+
};
|
445
447
|
|
446
448
|
// ../node_modules/@noble/hashes/esm/_u64.js
|
447
449
|
function fromBig(n, le = false) {
|
@@ -703,7 +705,7 @@ var init_sha3 = __esm(() => {
|
|
703
705
|
shake256 = /* @__PURE__ */ genShake(31, 136, 256 / 8);
|
704
706
|
});
|
705
707
|
|
706
|
-
//
|
708
|
+
// node_modules/viem/_esm/utils/hash/keccak256.js
|
707
709
|
function keccak256(value6, to_) {
|
708
710
|
const to = to_ || "hex";
|
709
711
|
const bytes = keccak_256(isHex(value6, { strict: false }) ? toBytes(value6) : value6);
|
@@ -717,7 +719,7 @@ var init_keccak256 = __esm(() => {
|
|
717
719
|
init_toHex();
|
718
720
|
});
|
719
721
|
|
720
|
-
//
|
722
|
+
// node_modules/viem/_esm/errors/address.js
|
721
723
|
var InvalidAddressError;
|
722
724
|
var init_address = __esm(() => {
|
723
725
|
init_base();
|
@@ -734,7 +736,7 @@ var init_address = __esm(() => {
|
|
734
736
|
};
|
735
737
|
});
|
736
738
|
|
737
|
-
//
|
739
|
+
// node_modules/viem/_esm/utils/lru.js
|
738
740
|
var LruMap;
|
739
741
|
var init_lru = __esm(() => {
|
740
742
|
LruMap = class LruMap extends Map {
|
@@ -768,7 +770,7 @@ var init_lru = __esm(() => {
|
|
768
770
|
};
|
769
771
|
});
|
770
772
|
|
771
|
-
//
|
773
|
+
// node_modules/viem/_esm/utils/address/getAddress.js
|
772
774
|
function checksumAddress(address_, chainId) {
|
773
775
|
if (checksumAddressCache.has(`${address_}.${chainId}`))
|
774
776
|
return checksumAddressCache.get(`${address_}.${chainId}`);
|
@@ -795,7 +797,7 @@ var init_getAddress = __esm(() => {
|
|
795
797
|
checksumAddressCache = /* @__PURE__ */ new LruMap(8192);
|
796
798
|
});
|
797
799
|
|
798
|
-
//
|
800
|
+
// node_modules/viem/_esm/utils/address/isAddress.js
|
799
801
|
function isAddress(address, options) {
|
800
802
|
const { strict: strict2 = true } = options ?? {};
|
801
803
|
const cacheKey = `${address}.${strict2}`;
|
@@ -821,12 +823,12 @@ var init_isAddress = __esm(() => {
|
|
821
823
|
isAddressCache = /* @__PURE__ */ new LruMap(8192);
|
822
824
|
});
|
823
825
|
|
824
|
-
//
|
826
|
+
// node_modules/viem/_esm/utils/data/concat.js
|
825
827
|
function concatHex(values7) {
|
826
828
|
return `0x${values7.reduce((acc, x) => acc + x.replace("0x", ""), "")}`;
|
827
829
|
}
|
828
830
|
|
829
|
-
//
|
831
|
+
// node_modules/viem/_esm/utils/regex.js
|
830
832
|
var arrayRegex, bytesRegex, integerRegex;
|
831
833
|
var init_regex = __esm(() => {
|
832
834
|
arrayRegex = /^(.*)\[([0-9]*)\]$/;
|
@@ -1152,7 +1154,8 @@ var tracingFunction = (name) => {
|
|
1152
1154
|
};
|
1153
1155
|
};
|
1154
1156
|
var internalCall = /* @__PURE__ */ tracingFunction("effect_internal_function");
|
1155
|
-
var genConstructor = function* () {
|
1157
|
+
var genConstructor = function* () {
|
1158
|
+
}.constructor;
|
1156
1159
|
|
1157
1160
|
// ../node_modules/effect/dist/esm/Hash.js
|
1158
1161
|
var randomHashCache = /* @__PURE__ */ globalValue(/* @__PURE__ */ Symbol.for("effect/Hash/randomHashCache"), () => new WeakMap);
|
@@ -1499,7 +1502,8 @@ var StructuralCommitPrototype = {
|
|
1499
1502
|
...StructuralPrototype
|
1500
1503
|
};
|
1501
1504
|
var Base = /* @__PURE__ */ function() {
|
1502
|
-
function Base2() {
|
1505
|
+
function Base2() {
|
1506
|
+
}
|
1503
1507
|
Base2.prototype = CommitPrototype;
|
1504
1508
|
return Base2;
|
1505
1509
|
}();
|
@@ -5002,7 +5006,8 @@ var Reference = () => (id, options) => {
|
|
5002
5006
|
Error.stackTraceLimit = 2;
|
5003
5007
|
const creationError = new Error;
|
5004
5008
|
Error.stackTraceLimit = limit;
|
5005
|
-
function ReferenceClass() {
|
5009
|
+
function ReferenceClass() {
|
5010
|
+
}
|
5006
5011
|
Object.setPrototypeOf(ReferenceClass, ReferenceProto);
|
5007
5012
|
ReferenceClass.key = id;
|
5008
5013
|
ReferenceClass.defaultValue = options.defaultValue;
|
@@ -7942,7 +7947,8 @@ var prettyErrorMessage = (u) => {
|
|
7942
7947
|
if (hasProperty(u, "toString") && isFunction2(u["toString"]) && u["toString"] !== Object.prototype.toString && u["toString"] !== globalThis.Array.prototype.toString) {
|
7943
7948
|
return u["toString"]();
|
7944
7949
|
}
|
7945
|
-
} catch {
|
7950
|
+
} catch {
|
7951
|
+
}
|
7946
7952
|
return stringifyCircular(u);
|
7947
7953
|
};
|
7948
7954
|
var locationRegex = /\((.*)\)/g;
|
@@ -8516,7 +8522,8 @@ var zip2 = /* @__PURE__ */ dual(2, (self, that) => flatMap6(self, (a) => map9(th
|
|
8516
8522
|
var zipLeft = /* @__PURE__ */ dual(2, (self, that) => flatMap6(self, (a) => as(that, a)));
|
8517
8523
|
var zipRight = /* @__PURE__ */ dual(2, (self, that) => flatMap6(self, () => that));
|
8518
8524
|
var never = /* @__PURE__ */ asyncInterrupt(() => {
|
8519
|
-
const interval = setInterval(() => {
|
8525
|
+
const interval = setInterval(() => {
|
8526
|
+
}, 2 ** 31 - 1);
|
8520
8527
|
return sync(() => clearInterval(interval));
|
8521
8528
|
});
|
8522
8529
|
var interruptFiber = (self) => flatMap6(fiberId, (fiberId2) => pipe(self, interruptAsFiber(fiberId2)));
|
@@ -12336,11 +12343,16 @@ class Const {
|
|
12336
12343
|
get value() {
|
12337
12344
|
return this.effect;
|
12338
12345
|
}
|
12339
|
-
onStart(_context, _effect, _parent, _fiber) {
|
12340
|
-
|
12341
|
-
|
12342
|
-
|
12343
|
-
|
12346
|
+
onStart(_context, _effect, _parent, _fiber) {
|
12347
|
+
}
|
12348
|
+
onEnd(_value, _fiber) {
|
12349
|
+
}
|
12350
|
+
onEffect(_fiber, _effect) {
|
12351
|
+
}
|
12352
|
+
onSuspend(_fiber) {
|
12353
|
+
}
|
12354
|
+
onResume(_fiber) {
|
12355
|
+
}
|
12344
12356
|
map(f) {
|
12345
12357
|
return new ProxySupervisor(this, pipe(this.value, map9(f)));
|
12346
12358
|
}
|
@@ -12814,7 +12826,8 @@ class FiberRuntime extends Class {
|
|
12814
12826
|
return whileLoop({
|
12815
12827
|
while: () => !isDone3,
|
12816
12828
|
body,
|
12817
|
-
step: () => {
|
12829
|
+
step: () => {
|
12830
|
+
}
|
12818
12831
|
});
|
12819
12832
|
}
|
12820
12833
|
return null;
|
@@ -22344,7 +22357,7 @@ class TrieIterator {
|
|
22344
22357
|
}
|
22345
22358
|
}
|
22346
22359
|
var isTrie = (u) => hasProperty(u, TrieTypeId);
|
22347
|
-
//
|
22360
|
+
// node_modules/viem/_esm/utils/abi/encodePacked.js
|
22348
22361
|
init_abi();
|
22349
22362
|
init_address();
|
22350
22363
|
init_isAddress();
|
@@ -22413,7 +22426,7 @@ function encode6(type2, value6, isArray2 = false) {
|
|
22413
22426
|
throw new UnsupportedPackedAbiType(type2);
|
22414
22427
|
}
|
22415
22428
|
|
22416
|
-
//
|
22429
|
+
// node_modules/viem/_esm/index.js
|
22417
22430
|
init_toBytes();
|
22418
22431
|
init_toHex();
|
22419
22432
|
// src/schema.ts
|
@@ -22494,6 +22507,270 @@ function getSupportedChain(chainish) {
|
|
22494
22507
|
|
22495
22508
|
// src/generated/lightning.ts
|
22496
22509
|
var lightningDeployments = [
|
22510
|
+
{
|
22511
|
+
name: "incoLightning_0_1_29__183408998",
|
22512
|
+
executorAddress: "0x63D8135aF4D393B1dB43B649010c8D3EE19FC9fd",
|
22513
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22514
|
+
pepper: "testnet",
|
22515
|
+
version: {
|
22516
|
+
major: 0,
|
22517
|
+
minor: 1,
|
22518
|
+
patch: 29,
|
22519
|
+
shortSalt: "183408998"
|
22520
|
+
},
|
22521
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00d75ffa0caf0797c3f12d66",
|
22522
|
+
decryptSigner: "0x000000000000000000000000000000000000baBe",
|
22523
|
+
eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
|
22524
|
+
chainId: "7311099111",
|
22525
|
+
blockNumber: "1",
|
22526
|
+
chainName: "Inco Release Chain",
|
22527
|
+
active: true,
|
22528
|
+
deployDate: "2025-04-22T16:02:38.372Z",
|
22529
|
+
commit: "v3-28-g93c05a49-dirty",
|
22530
|
+
addTwoAddress: "0x04461CD161001BC484C55D253F744462A6eADc10"
|
22531
|
+
},
|
22532
|
+
{
|
22533
|
+
name: "incoLightning_0_1_29__183408998",
|
22534
|
+
executorAddress: "0x63D8135aF4D393B1dB43B649010c8D3EE19FC9fd",
|
22535
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22536
|
+
pepper: "testnet",
|
22537
|
+
version: {
|
22538
|
+
major: 0,
|
22539
|
+
minor: 1,
|
22540
|
+
patch: 29,
|
22541
|
+
shortSalt: "183408998"
|
22542
|
+
},
|
22543
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00d75ffa0caf0797c3f12d66",
|
22544
|
+
decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
|
22545
|
+
eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
|
22546
|
+
chainId: "10143",
|
22547
|
+
blockNumber: "13464615",
|
22548
|
+
chainName: "Monad Testnet",
|
22549
|
+
active: true,
|
22550
|
+
deployDate: "2025-04-22T16:01:14.380Z",
|
22551
|
+
commit: "v3-28-g93c05a49-dirty",
|
22552
|
+
addTwoAddress: "0x3E0Aa45e4BD7E86093460A302803298a0EE7155a"
|
22553
|
+
},
|
22554
|
+
{
|
22555
|
+
name: "incoLightning_0_1_29__183408998",
|
22556
|
+
executorAddress: "0x63D8135aF4D393B1dB43B649010c8D3EE19FC9fd",
|
22557
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22558
|
+
pepper: "testnet",
|
22559
|
+
version: {
|
22560
|
+
major: 0,
|
22561
|
+
minor: 1,
|
22562
|
+
patch: 29,
|
22563
|
+
shortSalt: "183408998"
|
22564
|
+
},
|
22565
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00d75ffa0caf0797c3f12d66",
|
22566
|
+
decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
|
22567
|
+
eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
|
22568
|
+
chainId: "84532",
|
22569
|
+
blockNumber: "24784654",
|
22570
|
+
chainName: "Base Sepolia",
|
22571
|
+
active: true,
|
22572
|
+
deployDate: "2025-04-22T16:00:02.028Z",
|
22573
|
+
commit: "v3-28-g93c05a49-dirty",
|
22574
|
+
addTwoAddress: "0xF10E6B2ddd168D105546f39E1Ba64004E4FbeF10"
|
22575
|
+
},
|
22576
|
+
{
|
22577
|
+
name: "incoLightning_0_1_29__340846814",
|
22578
|
+
executorAddress: "0x3B22be60Ae699933959CA3cE147C96caa88Ccd3D",
|
22579
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22580
|
+
pepper: "devnet",
|
22581
|
+
version: {
|
22582
|
+
major: 0,
|
22583
|
+
minor: 1,
|
22584
|
+
patch: 29,
|
22585
|
+
shortSalt: "340846814"
|
22586
|
+
},
|
22587
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00b001d6742fded0dd599ede",
|
22588
|
+
decryptSigner: "0x000000000000000000000000000000000000baBe",
|
22589
|
+
eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
|
22590
|
+
chainId: "7311099111",
|
22591
|
+
blockNumber: "1",
|
22592
|
+
chainName: "Inco Release Chain",
|
22593
|
+
active: true,
|
22594
|
+
deployDate: "2025-04-22T15:59:01.071Z",
|
22595
|
+
commit: "v3-28-g93c05a49-dirty",
|
22596
|
+
addTwoAddress: "0x04461CD161001BC484C55D253F744462A6eADc10"
|
22597
|
+
},
|
22598
|
+
{
|
22599
|
+
name: "incoLightning_0_1_29__340846814",
|
22600
|
+
executorAddress: "0x3B22be60Ae699933959CA3cE147C96caa88Ccd3D",
|
22601
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22602
|
+
pepper: "devnet",
|
22603
|
+
version: {
|
22604
|
+
major: 0,
|
22605
|
+
minor: 1,
|
22606
|
+
patch: 29,
|
22607
|
+
shortSalt: "340846814"
|
22608
|
+
},
|
22609
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00b001d6742fded0dd599ede",
|
22610
|
+
decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
|
22611
|
+
eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
|
22612
|
+
chainId: "10143",
|
22613
|
+
blockNumber: "13464197",
|
22614
|
+
chainName: "Monad Testnet",
|
22615
|
+
active: true,
|
22616
|
+
deployDate: "2025-04-22T15:57:26.862Z",
|
22617
|
+
commit: "v3-28-g93c05a49-dirty",
|
22618
|
+
addTwoAddress: "0x6A23b79203F1Db95947423291C8177B144DDE372"
|
22619
|
+
},
|
22620
|
+
{
|
22621
|
+
name: "incoLightning_0_1_29__340846814",
|
22622
|
+
executorAddress: "0x3B22be60Ae699933959CA3cE147C96caa88Ccd3D",
|
22623
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22624
|
+
pepper: "devnet",
|
22625
|
+
version: {
|
22626
|
+
major: 0,
|
22627
|
+
minor: 1,
|
22628
|
+
patch: 29,
|
22629
|
+
shortSalt: "340846814"
|
22630
|
+
},
|
22631
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00b001d6742fded0dd599ede",
|
22632
|
+
decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
|
22633
|
+
eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
|
22634
|
+
chainId: "84532",
|
22635
|
+
blockNumber: "24784527",
|
22636
|
+
chainName: "Base Sepolia",
|
22637
|
+
active: true,
|
22638
|
+
deployDate: "2025-04-22T15:55:47.828Z",
|
22639
|
+
commit: "v3-28-g93c05a49-dirty",
|
22640
|
+
addTwoAddress: "0x1A98fB1f7E57C0648b1d2A7DEA6e126C302A7e93"
|
22641
|
+
},
|
22642
|
+
{
|
22643
|
+
name: "incoLightning_0_1_27__558243565",
|
22644
|
+
executorAddress: "0x595dc0fA68e7847aC1b1d52a56A1551ad0e38472",
|
22645
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22646
|
+
pepper: "testnet",
|
22647
|
+
version: {
|
22648
|
+
major: 0,
|
22649
|
+
minor: 1,
|
22650
|
+
patch: 27,
|
22651
|
+
shortSalt: "558243565"
|
22652
|
+
},
|
22653
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc008f0e1b154a58f3ce49d6ed",
|
22654
|
+
decryptSigner: "0x000000000000000000000000000000000000baBe",
|
22655
|
+
eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
|
22656
|
+
chainId: "7311099111",
|
22657
|
+
blockNumber: "1",
|
22658
|
+
chainName: "Inco Release Chain",
|
22659
|
+
active: true,
|
22660
|
+
deployDate: "2025-04-22T14:57:24.620Z",
|
22661
|
+
commit: "v3-28-g652cc4a1-dirty",
|
22662
|
+
addTwoAddress: "0x04461CD161001BC484C55D253F744462A6eADc10"
|
22663
|
+
},
|
22664
|
+
{
|
22665
|
+
name: "incoLightning_0_1_27__558243565",
|
22666
|
+
executorAddress: "0x595dc0fA68e7847aC1b1d52a56A1551ad0e38472",
|
22667
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22668
|
+
pepper: "testnet",
|
22669
|
+
version: {
|
22670
|
+
major: 0,
|
22671
|
+
minor: 1,
|
22672
|
+
patch: 27,
|
22673
|
+
shortSalt: "558243565"
|
22674
|
+
},
|
22675
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc008f0e1b154a58f3ce49d6ed",
|
22676
|
+
decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
|
22677
|
+
eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
|
22678
|
+
chainId: "10143",
|
22679
|
+
blockNumber: "13457424",
|
22680
|
+
chainName: "Monad Testnet",
|
22681
|
+
active: true,
|
22682
|
+
deployDate: "2025-04-22T14:57:15.486Z",
|
22683
|
+
commit: "v3-28-g652cc4a1-dirty",
|
22684
|
+
addTwoAddress: "0xbbf1f797b5e132b72f4a45E1923cBb0BFeca80FA"
|
22685
|
+
},
|
22686
|
+
{
|
22687
|
+
name: "incoLightning_0_1_27__558243565",
|
22688
|
+
executorAddress: "0x595dc0fA68e7847aC1b1d52a56A1551ad0e38472",
|
22689
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22690
|
+
pepper: "testnet",
|
22691
|
+
version: {
|
22692
|
+
major: 0,
|
22693
|
+
minor: 1,
|
22694
|
+
patch: 27,
|
22695
|
+
shortSalt: "558243565"
|
22696
|
+
},
|
22697
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc008f0e1b154a58f3ce49d6ed",
|
22698
|
+
decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
|
22699
|
+
eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
|
22700
|
+
chainId: "84532",
|
22701
|
+
blockNumber: "24782764",
|
22702
|
+
chainName: "Base Sepolia",
|
22703
|
+
active: true,
|
22704
|
+
deployDate: "2025-04-22T14:57:02.375Z",
|
22705
|
+
commit: "v3-28-g652cc4a1",
|
22706
|
+
addTwoAddress: "0x0c6320A91ec6BA7d42B4f079132fD71A90C12e22"
|
22707
|
+
},
|
22708
|
+
{
|
22709
|
+
name: "incoLightning_0_1_27__125335042",
|
22710
|
+
executorAddress: "0x902B77583C7C5df71C95114707C4974A8d5Dff9D",
|
22711
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22712
|
+
pepper: "devnet",
|
22713
|
+
version: {
|
22714
|
+
major: 0,
|
22715
|
+
minor: 1,
|
22716
|
+
patch: 27,
|
22717
|
+
shortSalt: "125335042"
|
22718
|
+
},
|
22719
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc003343825a7e951afb24c202",
|
22720
|
+
decryptSigner: "0x000000000000000000000000000000000000baBe",
|
22721
|
+
eciesPublicKey: "0x000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000babe",
|
22722
|
+
chainId: "7311099111",
|
22723
|
+
blockNumber: "1",
|
22724
|
+
chainName: "Inco Release Chain",
|
22725
|
+
active: true,
|
22726
|
+
deployDate: "2025-04-22T14:35:10.281Z",
|
22727
|
+
commit: "v3-27-ge3d04b6a-dirty",
|
22728
|
+
addTwoAddress: "0x04461CD161001BC484C55D253F744462A6eADc10"
|
22729
|
+
},
|
22730
|
+
{
|
22731
|
+
name: "incoLightning_0_1_27__125335042",
|
22732
|
+
executorAddress: "0x902B77583C7C5df71C95114707C4974A8d5Dff9D",
|
22733
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22734
|
+
pepper: "devnet",
|
22735
|
+
version: {
|
22736
|
+
major: 0,
|
22737
|
+
minor: 1,
|
22738
|
+
patch: 27,
|
22739
|
+
shortSalt: "125335042"
|
22740
|
+
},
|
22741
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc003343825a7e951afb24c202",
|
22742
|
+
decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
|
22743
|
+
eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
|
22744
|
+
chainId: "10143",
|
22745
|
+
blockNumber: "13454931",
|
22746
|
+
chainName: "Monad Testnet",
|
22747
|
+
active: true,
|
22748
|
+
deployDate: "2025-04-22T14:35:02.958Z",
|
22749
|
+
commit: "v3-27-ge3d04b6a-dirty",
|
22750
|
+
addTwoAddress: "0xC1ee708D522B8b0743B5C5309AeD6b6b4C4102a6"
|
22751
|
+
},
|
22752
|
+
{
|
22753
|
+
name: "incoLightning_0_1_27__125335042",
|
22754
|
+
executorAddress: "0x902B77583C7C5df71C95114707C4974A8d5Dff9D",
|
22755
|
+
deployer: "0x8202D2D747784Cb7D48868E44C42C4bf162a70BC",
|
22756
|
+
pepper: "devnet",
|
22757
|
+
version: {
|
22758
|
+
major: 0,
|
22759
|
+
minor: 1,
|
22760
|
+
patch: 27,
|
22761
|
+
shortSalt: "125335042"
|
22762
|
+
},
|
22763
|
+
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc003343825a7e951afb24c202",
|
22764
|
+
decryptSigner: "0xA8822DE8910f66D3d03F1eAfe2C0141dBc327Ee0",
|
22765
|
+
eciesPublicKey: "0x048a582d29083c2f3fefe024bf4dd9ab913ab8973716977da5f01106e0b84095b1e647a9e377175fcb66bda05087c93b05e1fd53a704d0914bb23a0b2a69e9f235",
|
22766
|
+
chainId: "84532",
|
22767
|
+
blockNumber: "24782097",
|
22768
|
+
chainName: "Base Sepolia",
|
22769
|
+
active: true,
|
22770
|
+
deployDate: "2025-04-22T14:34:47.565Z",
|
22771
|
+
commit: "v3-27-ge3d04b6a-dirty",
|
22772
|
+
addTwoAddress: "0xAac318ca07FCA665c4d27A7e9e8FB65B89AfAC83"
|
22773
|
+
},
|
22497
22774
|
{
|
22498
22775
|
name: "incoLightning_0_1_26__18043964",
|
22499
22776
|
executorAddress: "0x69Ef6a59f9eE2d6f3b49eA3F79bcF1553512DF0e",
|
@@ -22514,7 +22791,6 @@ var lightningDeployments = [
|
|
22514
22791
|
active: true,
|
22515
22792
|
deployDate: "2025-04-22T12:14:50.447Z",
|
22516
22793
|
commit: "v3-26-g623cec72-dirty",
|
22517
|
-
sessionVerifierAddress: "0x0F508B0Fb940595046AB0eceB7A4C8b3e20Cb674",
|
22518
22794
|
addTwoAddress: "0x70fC34B18B12E945cb2204FA77E5f8e1581890C3"
|
22519
22795
|
},
|
22520
22796
|
{
|
@@ -22537,7 +22813,6 @@ var lightningDeployments = [
|
|
22537
22813
|
active: true,
|
22538
22814
|
deployDate: "2025-04-22T12:14:42.391Z",
|
22539
22815
|
commit: "v3-26-g623cec72-dirty",
|
22540
|
-
sessionVerifierAddress: "0x0F508B0Fb940595046AB0eceB7A4C8b3e20Cb674",
|
22541
22816
|
addTwoAddress: "0x4A49112FB866F6d5D05845D264b430cD3bbAb9f6"
|
22542
22817
|
},
|
22543
22818
|
{
|
@@ -22560,7 +22835,6 @@ var lightningDeployments = [
|
|
22560
22835
|
active: true,
|
22561
22836
|
deployDate: "2025-04-22T12:14:25.354Z",
|
22562
22837
|
commit: "v3-26-g623cec72-dirty",
|
22563
|
-
sessionVerifierAddress: "0x0F508B0Fb940595046AB0eceB7A4C8b3e20Cb674",
|
22564
22838
|
addTwoAddress: "0x2b5E34844997681168049783D30CD84B5962cb50"
|
22565
22839
|
},
|
22566
22840
|
{
|
@@ -22583,7 +22857,6 @@ var lightningDeployments = [
|
|
22583
22857
|
active: true,
|
22584
22858
|
deployDate: "2025-04-22T09:11:15.398Z",
|
22585
22859
|
commit: "v3-24-gc9716e6c-dirty",
|
22586
|
-
sessionVerifierAddress: "0x3D4eB5f90E6d996c2b45b0BEb4110b5be98e243F",
|
22587
22860
|
addTwoAddress: "0x70fC34B18B12E945cb2204FA77E5f8e1581890C3"
|
22588
22861
|
},
|
22589
22862
|
{
|
@@ -22606,7 +22879,6 @@ var lightningDeployments = [
|
|
22606
22879
|
active: true,
|
22607
22880
|
deployDate: "2025-04-22T09:11:06.223Z",
|
22608
22881
|
commit: "v3-24-gc9716e6c-dirty",
|
22609
|
-
sessionVerifierAddress: "0x3D4eB5f90E6d996c2b45b0BEb4110b5be98e243F",
|
22610
22882
|
addTwoAddress: "0xfeE9C1E41b2268a4ad8EaDA35f510b8d89Cd041c"
|
22611
22883
|
},
|
22612
22884
|
{
|
@@ -22629,7 +22901,6 @@ var lightningDeployments = [
|
|
22629
22901
|
active: true,
|
22630
22902
|
deployDate: "2025-04-22T09:10:33.275Z",
|
22631
22903
|
commit: "v3-24-gc9716e6c-dirty",
|
22632
|
-
sessionVerifierAddress: "0x3D4eB5f90E6d996c2b45b0BEb4110b5be98e243F",
|
22633
22904
|
addTwoAddress: "0xeEa387f7c866A81c2AF532D9ed48c60F179C9827"
|
22634
22905
|
}
|
22635
22906
|
];
|