@inco/js 0.1.19 → 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.js → index.cjs} +47 -34
- package/dist/encryption/index.mjs +24092 -0
- package/dist/fhevm/index.mjs +90 -0
- package/dist/generated/abis/index.mjs +12485 -0
- package/dist/generated/lightning.d.ts +252 -6
- package/dist/{index.js → index.cjs} +47 -34
- package/dist/index.mjs +24019 -0
- package/dist/lite/{index.js → index.cjs} +341 -57
- package/dist/lite/index.mjs +69723 -0
- package/dist/local/index.cjs +21930 -0
- package/dist/local/index.mjs +40378 -0
- package/dist/local/local-node.d.ts +1 -2
- package/dist/reencryption/{index.js → index.cjs} +311 -40
- package/dist/{local/index.js → reencryption/index.mjs} +610 -398
- package/dist/viem.d.ts +53 -52
- package/package.json +16 -23
- /package/dist/fhevm/{index.js → index.cjs} +0 -0
- /package/dist/generated/abis/{index.js → index.cjs} +0 -0
@@ -1,8 +1,7 @@
|
|
1
|
-
import { Schema } from
|
1
|
+
import { Schema } from 'effect';
|
2
2
|
export declare const LocalNodeEnv: Schema.Struct<{
|
3
3
|
DEPLOYER_ADDRESS: Schema.brand<Schema.filter<Schema.TemplateLiteral<`0x${string}`>>, "Address">;
|
4
4
|
STATE_DUMP: typeof Schema.String;
|
5
|
-
SESSION_VERIFIER_ADDRESS: Schema.brand<Schema.filter<Schema.TemplateLiteral<`0x${string}`>>, "Address">;
|
6
5
|
ADD_TWO_ADDRESS: Schema.brand<Schema.filter<Schema.TemplateLiteral<`0x${string}`>>, "Address">;
|
7
6
|
EXECUTOR_ADDRESS: Schema.brand<Schema.filter<Schema.TemplateLiteral<`0x${string}`>>, "Address">;
|
8
7
|
ECIES_PUBLIC_KEY: Schema.TemplateLiteral<`0x${string}`>;
|
@@ -41,7 +41,7 @@ var __export = (target, all) => {
|
|
41
41
|
};
|
42
42
|
var __esm = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
43
43
|
|
44
|
-
//
|
44
|
+
// node_modules/viem/_esm/utils/data/isHex.js
|
45
45
|
function isHex(value6, { strict: strict2 = true } = {}) {
|
46
46
|
if (!value6)
|
47
47
|
return false;
|
@@ -50,18 +50,19 @@ function isHex(value6, { strict: strict2 = true } = {}) {
|
|
50
50
|
return strict2 ? /^0x[0-9a-fA-F]*$/.test(value6) : value6.startsWith("0x");
|
51
51
|
}
|
52
52
|
|
53
|
-
//
|
53
|
+
// node_modules/viem/_esm/utils/data/size.js
|
54
54
|
function size21(value6) {
|
55
55
|
if (isHex(value6, { strict: false }))
|
56
56
|
return Math.ceil((value6.length - 2) / 2);
|
57
57
|
return value6.length;
|
58
58
|
}
|
59
|
-
var init_size = () => {
|
59
|
+
var init_size = () => {
|
60
|
+
};
|
60
61
|
|
61
|
-
//
|
62
|
-
var version = "2.
|
62
|
+
// node_modules/viem/_esm/errors/version.js
|
63
|
+
var version = "2.22.23";
|
63
64
|
|
64
|
-
//
|
65
|
+
// node_modules/viem/_esm/errors/base.js
|
65
66
|
function walk(err, fn) {
|
66
67
|
if (fn?.(err))
|
67
68
|
return err;
|
@@ -149,7 +150,7 @@ var init_base = __esm(() => {
|
|
149
150
|
};
|
150
151
|
});
|
151
152
|
|
152
|
-
//
|
153
|
+
// node_modules/viem/_esm/errors/abi.js
|
153
154
|
var AbiEncodingLengthMismatchError, BytesSizeMismatchError, UnsupportedPackedAbiType;
|
154
155
|
var init_abi = __esm(() => {
|
155
156
|
init_base();
|
@@ -179,7 +180,7 @@ var init_abi = __esm(() => {
|
|
179
180
|
};
|
180
181
|
});
|
181
182
|
|
182
|
-
//
|
183
|
+
// node_modules/viem/_esm/errors/data.js
|
183
184
|
var SizeExceedsPaddingSizeError;
|
184
185
|
var init_data = __esm(() => {
|
185
186
|
init_base();
|
@@ -190,7 +191,7 @@ var init_data = __esm(() => {
|
|
190
191
|
};
|
191
192
|
});
|
192
193
|
|
193
|
-
//
|
194
|
+
// node_modules/viem/_esm/utils/data/pad.js
|
194
195
|
function pad(hexOrBytes, { dir: dir2, size: size22 = 32 } = {}) {
|
195
196
|
if (typeof hexOrBytes === "string")
|
196
197
|
return padHex(hexOrBytes, { dir: dir2, size: size22 });
|
@@ -228,7 +229,7 @@ var init_pad = __esm(() => {
|
|
228
229
|
init_data();
|
229
230
|
});
|
230
231
|
|
231
|
-
//
|
232
|
+
// node_modules/viem/_esm/errors/encoding.js
|
232
233
|
var IntegerOutOfRangeError, SizeOverflowError;
|
233
234
|
var init_encoding = __esm(() => {
|
234
235
|
init_base();
|
@@ -244,7 +245,7 @@ var init_encoding = __esm(() => {
|
|
244
245
|
};
|
245
246
|
});
|
246
247
|
|
247
|
-
//
|
248
|
+
// node_modules/viem/_esm/utils/encoding/fromHex.js
|
248
249
|
function assertSize(hexOrBytes, { size: size22 }) {
|
249
250
|
if (size21(hexOrBytes) > size22)
|
250
251
|
throw new SizeOverflowError({
|
@@ -257,7 +258,7 @@ var init_fromHex = __esm(() => {
|
|
257
258
|
init_size();
|
258
259
|
});
|
259
260
|
|
260
|
-
//
|
261
|
+
// node_modules/viem/_esm/utils/encoding/toHex.js
|
261
262
|
function toHex(value6, opts = {}) {
|
262
263
|
if (typeof value6 === "number" || typeof value6 === "bigint")
|
263
264
|
return numberToHex(value6, opts);
|
@@ -329,7 +330,7 @@ var init_toHex = __esm(() => {
|
|
329
330
|
encoder2 = /* @__PURE__ */ new TextEncoder;
|
330
331
|
});
|
331
332
|
|
332
|
-
//
|
333
|
+
// node_modules/viem/_esm/utils/encoding/toBytes.js
|
333
334
|
function toBytes(value6, opts = {}) {
|
334
335
|
if (typeof value6 === "number" || typeof value6 === "bigint")
|
335
336
|
return numberToBytes(value6, opts);
|
@@ -434,7 +435,8 @@ function aoutput(out, instance) {
|
|
434
435
|
throw new Error("digestInto() expects output buffer of length at least " + min4);
|
435
436
|
}
|
436
437
|
}
|
437
|
-
var init__assert = () => {
|
438
|
+
var init__assert = () => {
|
439
|
+
};
|
438
440
|
|
439
441
|
// ../node_modules/@noble/hashes/esm/_u64.js
|
440
442
|
function fromBig(n, le = false) {
|
@@ -696,7 +698,7 @@ var init_sha3 = __esm(() => {
|
|
696
698
|
shake256 = /* @__PURE__ */ genShake(31, 136, 256 / 8);
|
697
699
|
});
|
698
700
|
|
699
|
-
//
|
701
|
+
// node_modules/viem/_esm/utils/hash/keccak256.js
|
700
702
|
function keccak256(value6, to_) {
|
701
703
|
const to = to_ || "hex";
|
702
704
|
const bytes = keccak_256(isHex(value6, { strict: false }) ? toBytes(value6) : value6);
|
@@ -710,7 +712,7 @@ var init_keccak256 = __esm(() => {
|
|
710
712
|
init_toHex();
|
711
713
|
});
|
712
714
|
|
713
|
-
//
|
715
|
+
// node_modules/viem/_esm/errors/address.js
|
714
716
|
var InvalidAddressError;
|
715
717
|
var init_address = __esm(() => {
|
716
718
|
init_base();
|
@@ -727,7 +729,7 @@ var init_address = __esm(() => {
|
|
727
729
|
};
|
728
730
|
});
|
729
731
|
|
730
|
-
//
|
732
|
+
// node_modules/viem/_esm/utils/lru.js
|
731
733
|
var LruMap;
|
732
734
|
var init_lru = __esm(() => {
|
733
735
|
LruMap = class LruMap extends Map {
|
@@ -761,7 +763,7 @@ var init_lru = __esm(() => {
|
|
761
763
|
};
|
762
764
|
});
|
763
765
|
|
764
|
-
//
|
766
|
+
// node_modules/viem/_esm/utils/address/getAddress.js
|
765
767
|
function checksumAddress(address_, chainId) {
|
766
768
|
if (checksumAddressCache.has(`${address_}.${chainId}`))
|
767
769
|
return checksumAddressCache.get(`${address_}.${chainId}`);
|
@@ -788,7 +790,7 @@ var init_getAddress = __esm(() => {
|
|
788
790
|
checksumAddressCache = /* @__PURE__ */ new LruMap(8192);
|
789
791
|
});
|
790
792
|
|
791
|
-
//
|
793
|
+
// node_modules/viem/_esm/utils/address/isAddress.js
|
792
794
|
function isAddress(address, options) {
|
793
795
|
const { strict: strict2 = true } = options ?? {};
|
794
796
|
const cacheKey = `${address}.${strict2}`;
|
@@ -814,12 +816,12 @@ var init_isAddress = __esm(() => {
|
|
814
816
|
isAddressCache = /* @__PURE__ */ new LruMap(8192);
|
815
817
|
});
|
816
818
|
|
817
|
-
//
|
819
|
+
// node_modules/viem/_esm/utils/data/concat.js
|
818
820
|
function concatHex(values7) {
|
819
821
|
return `0x${values7.reduce((acc, x) => acc + x.replace("0x", ""), "")}`;
|
820
822
|
}
|
821
823
|
|
822
|
-
//
|
824
|
+
// node_modules/viem/_esm/utils/regex.js
|
823
825
|
var arrayRegex, bytesRegex, integerRegex;
|
824
826
|
var init_regex = __esm(() => {
|
825
827
|
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
|
];
|