@inco/lightning 1.0.0 → 1.0.1
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/manifest.yaml +45 -0
- package/package.json +1 -1
- package/src/version/IncoLightningConfig.sol +1 -1
package/manifest.yaml
CHANGED
|
@@ -9,6 +9,36 @@ incoLightning_mainnet_v12_473307884:
|
|
|
9
9
|
salt: "0x9eb3483532302ab76290bacf9d6dc4efd3fa0d1b0081cf3196a86345f5e790ec"
|
|
10
10
|
verifierAddress: "0x867758FFe098fB0D74826A8DCf60127696440f09"
|
|
11
11
|
deployments:
|
|
12
|
+
- name: incoLightning_12_0_3__473307884
|
|
13
|
+
chainId: "8453"
|
|
14
|
+
chainName: Base
|
|
15
|
+
version:
|
|
16
|
+
major: 12
|
|
17
|
+
minor: 0
|
|
18
|
+
patch: 3
|
|
19
|
+
shortSalt: "473307884"
|
|
20
|
+
blockNumber: "47416715"
|
|
21
|
+
deployDate: 2026-06-16T15:13:03.693Z
|
|
22
|
+
commit: v1.0.0-5-gf61cd8df-dirty
|
|
23
|
+
active: true
|
|
24
|
+
includesPreviewFeatures: false
|
|
25
|
+
executorImpl: "0x853C0Fc64FEbC97DA6dFB4256F3EEAFf71d7DF87"
|
|
26
|
+
verifierImpl: "0xB8Afb191f58Db7Be49689c88BEF777aBCBA34fd8"
|
|
27
|
+
- name: incoLightning_12_0_3__473307884
|
|
28
|
+
chainId: "84532"
|
|
29
|
+
chainName: Base Sepolia
|
|
30
|
+
version:
|
|
31
|
+
major: 12
|
|
32
|
+
minor: 0
|
|
33
|
+
patch: 3
|
|
34
|
+
shortSalt: "473307884"
|
|
35
|
+
blockNumber: "42919237"
|
|
36
|
+
deployDate: 2026-06-16T10:46:07.167Z
|
|
37
|
+
commit: v1.0.0-4-gbfffce49-dirty
|
|
38
|
+
active: true
|
|
39
|
+
includesPreviewFeatures: false
|
|
40
|
+
executorImpl: "0x853C0Fc64FEbC97DA6dFB4256F3EEAFf71d7DF87"
|
|
41
|
+
verifierImpl: "0xB8Afb191f58Db7Be49689c88BEF777aBCBA34fd8"
|
|
12
42
|
- name: incoLightning_12_0_2__473307884
|
|
13
43
|
chainId: "84532"
|
|
14
44
|
chainName: Base Sepolia
|
|
@@ -76,6 +106,21 @@ incoLightning_devnet_v12_873394282:
|
|
|
76
106
|
salt: "0x8202d2d747784cb7d48868e44c42c4bf162a70bc00f5bad44b2a772fe6ca626a"
|
|
77
107
|
verifierAddress: "0x75dE330840A8ff79C8a71b0b9bA2cAd635D1Fd88"
|
|
78
108
|
deployments:
|
|
109
|
+
- name: incoLightning_12_0_3__873394282
|
|
110
|
+
chainId: "84532"
|
|
111
|
+
chainName: Base Sepolia
|
|
112
|
+
version:
|
|
113
|
+
major: 12
|
|
114
|
+
minor: 0
|
|
115
|
+
patch: 3
|
|
116
|
+
shortSalt: "873394282"
|
|
117
|
+
blockNumber: "42917299"
|
|
118
|
+
deployDate: 2026-06-16T09:41:28.145Z
|
|
119
|
+
commit: v1.0.0-3-g503c35e3
|
|
120
|
+
active: true
|
|
121
|
+
includesPreviewFeatures: false
|
|
122
|
+
executorImpl: "0x37038d716aAe4D588D6aF43D0f078E4Ea72dd6eF"
|
|
123
|
+
verifierImpl: "0x835933F50A17100d93D129803b8C596799660F7a"
|
|
79
124
|
- name: incoLightning_12_0_1__873394282
|
|
80
125
|
chainId: "84532"
|
|
81
126
|
chainName: Base Sepolia
|
package/package.json
CHANGED
|
@@ -17,6 +17,6 @@ uint8 constant MINOR_VERSION = 0;
|
|
|
17
17
|
// otherwise make test_upgrade will fail
|
|
18
18
|
// consequently, when we do a patch release, we don't need to pump it as it's already pumped
|
|
19
19
|
// when the previous release was done
|
|
20
|
-
uint8 constant PATCH_VERSION =
|
|
20
|
+
uint8 constant PATCH_VERSION = 4;
|
|
21
21
|
|
|
22
22
|
string constant VERIFIER_NAME = "incoVerifier";
|