@sm-lab/receipts 0.1.0 → 0.2.0
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/README.md +11 -11
- package/data/hoodi/cm.json +7 -9
- package/data/hoodi/csm.json +2 -3
- package/data/mainnet/cm.json +32 -0
- package/data/mainnet/csm.json +5 -5
- package/data/manifest.json +20 -11
- package/dist/index.cjs +102 -77
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +31 -33
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +31 -33
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +102 -77
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,11 +24,10 @@ Public surface:
|
|
|
24
24
|
|
|
25
25
|
```ts
|
|
26
26
|
import { addresses, csModuleAbi, vEBOAbi, manifest } from '@sm-lab/receipts';
|
|
27
|
-
// ^^^^^^^^^ { hoodi: { csm, cm }, mainnet: { csm } }
|
|
27
|
+
// ^^^^^^^^^ { hoodi: { csm, cm }, mainnet: { csm, cm } }
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
-
Available chains/modules: `hoodi.csm`, `hoodi.cm`, `mainnet.csm`.
|
|
31
|
-
`mainnet/cm` is intentionally absent — no curated mainnet deployment exists yet.
|
|
30
|
+
Available chains/modules: `hoodi.csm`, `hoodi.cm`, `mainnet.csm`, `mainnet.cm`.
|
|
32
31
|
|
|
33
32
|
## Address book shape
|
|
34
33
|
|
|
@@ -79,7 +78,7 @@ RPC. Run enrichment once an RPC is available (see [Enriching protocol addresses]
|
|
|
79
78
|
## How ABIs and addresses are sourced
|
|
80
79
|
|
|
81
80
|
No Solidity toolchain runs here. The `refresh` script only reads Forge's existing build output
|
|
82
|
-
from a local checkout of `
|
|
81
|
+
from a local checkout of `staking-modules`:
|
|
83
82
|
|
|
84
83
|
- **ABIs** — read from `out/<Contract>.sol/<Contract>.json` (`.abi` field). Several contracts are
|
|
85
84
|
interface-mapped so the ABI matches the actual public surface:
|
|
@@ -131,12 +130,12 @@ Run per-target when a deployment or contract changes:
|
|
|
131
130
|
pnpm --filter @sm-lab/receipts refresh -- \
|
|
132
131
|
--chain <hoodi|mainnet> \
|
|
133
132
|
--module <csm|cm> \
|
|
134
|
-
[--contracts <path-to-
|
|
133
|
+
[--contracts <path-to-staking-modules>] \
|
|
135
134
|
[--config <relative-path-inside-contracts-repo>] \
|
|
136
135
|
[--force]
|
|
137
136
|
```
|
|
138
137
|
|
|
139
|
-
`--contracts` defaults to `../../../
|
|
138
|
+
`--contracts` defaults to `../../../staking-modules` — a sibling of the sm-lab repo root
|
|
140
139
|
(relative paths resolve from the package root, `fixtures/receipts/`). `--force` bypasses
|
|
141
140
|
the git-ref guard (see below).
|
|
142
141
|
|
|
@@ -145,11 +144,12 @@ point at the **latest** upgrade config per the contracts repo's `.env` `DEPLOY_C
|
|
|
145
144
|
CSM has been upgraded twice (v2, v3); proxy addresses are stable across upgrades but `*Impl`
|
|
146
145
|
addresses change and new contracts are added. Current per-(chain, module) configs:
|
|
147
146
|
|
|
148
|
-
| chain | module | config path
|
|
149
|
-
| ------- | ------ |
|
|
150
|
-
| hoodi | csm | `artifacts/hoodi/upgrade-v3-hoodi.json` | v3 |
|
|
151
|
-
| hoodi | cm | `artifacts/hoodi/curated/deploy-hoodi.json`
|
|
152
|
-
| mainnet | csm | `artifacts/mainnet/
|
|
147
|
+
| chain | module | config path | version |
|
|
148
|
+
| ------- | ------ | ----------------------------------------------- | ------- |
|
|
149
|
+
| hoodi | csm | `artifacts/hoodi/csm/upgrade-v3-hoodi.json` | v3 |
|
|
150
|
+
| hoodi | cm | `artifacts/hoodi/curated/deploy-hoodi.json` | — |
|
|
151
|
+
| mainnet | csm | `artifacts/mainnet/csm/upgrade-v3-mainnet.json` | v3 |
|
|
152
|
+
| mainnet | cm | `artifacts/mainnet/curated/deploy-mainnet.json` | CMv2 |
|
|
153
153
|
|
|
154
154
|
If `--config` is omitted, the default is `artifacts/<chain>/deploy-<chain>.json` (or
|
|
155
155
|
`artifacts/<chain>/curated/deploy-<chain>.json` for cm). Only override when the authoritative
|
package/data/hoodi/cm.json
CHANGED
|
@@ -12,15 +12,13 @@
|
|
|
12
12
|
"MetaRegistry": "0x857289cCBFBc4C134Cc312022a104CD9b38d8AAE",
|
|
13
13
|
"CuratedGateFactory": "0x0e26d2cC3f0c2A17D2D784068cAAD34206B6804D",
|
|
14
14
|
"LidoLocator": "0xe2EF9536DAAAEBFf5b1c130957AB3E80056b06D8",
|
|
15
|
-
"
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
"0x28518be9894C20135F280a9539617783b08a04c7"
|
|
23
|
-
],
|
|
15
|
+
"CuratedGatePO": "0xF1862d120831eBE31f7202378Ff3Ae63A5658ae3",
|
|
16
|
+
"CuratedGatePTO": "0x410A309dF81B782190188CDB3d215729cc6bC1f3",
|
|
17
|
+
"CuratedGatePGO": "0xa5A604b172787e017b1b118F02fE54fC1D696519",
|
|
18
|
+
"CuratedGateDO": "0xE966874cDB6A4282ED75Cd10439e3799e5531a2D",
|
|
19
|
+
"CuratedGateEEO": "0x5c063da03e3f21443716D75a2205EE16706e1153",
|
|
20
|
+
"CuratedGateIODC": "0x1cD655Ac53CfE8269DE0DBfc0140B074623C4A6B",
|
|
21
|
+
"CuratedGateIODCP": "0x28518be9894C20135F280a9539617783b08a04c7",
|
|
24
22
|
"ChainId": 560048,
|
|
25
23
|
"git-ref": "a6be775483e17d76718f8852428b5251a75c6429",
|
|
26
24
|
"protocol": {
|
package/data/hoodi/csm.json
CHANGED
|
@@ -9,11 +9,10 @@
|
|
|
9
9
|
"Verifier": "0x1773b2Ff99A030F6000554Cb8A5Ec93145650cbA",
|
|
10
10
|
"Ejector": "0xCAe028378d69D54dc8bF809e6C44CF751F997b80",
|
|
11
11
|
"ExitPenalties": "0xD259b31083Be841E5C85b2D481Cfc17C14276800",
|
|
12
|
-
"GateSeal": "0x725166f143DdcD9EC1b96dfb70f16E3f44968A65",
|
|
13
12
|
"LidoLocator": "0xe2EF9536DAAAEBFf5b1c130957AB3E80056b06D8",
|
|
14
|
-
"
|
|
13
|
+
"IcsGate": "0x10a254E724fe2b7f305F76f3F116a3969c53845f",
|
|
15
14
|
"PermissionlessGate": "0xd7bD8D2A9888D1414c770B35ACF55890B15de26a",
|
|
16
|
-
"
|
|
15
|
+
"IdvtcGate": "0x887F8512F9998045f4b5993e6eaa6BCfE5F02A94",
|
|
17
16
|
"ChainId": 560048,
|
|
18
17
|
"git-ref": "a6be775483e17d76718f8852428b5251a75c6429",
|
|
19
18
|
"protocol": {
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
{
|
|
2
|
+
"CuratedModule": "0xDa5F930cE326EB5205085D66c72A4E79d60cB8C1",
|
|
3
|
+
"Accounting": "0x2F91e3A8C5d6593bf4F8403fCfeCcd62dF59f6F6",
|
|
4
|
+
"FeeDistributor": "0x367d23c756599c20DCc8D6943F4976E8F88D60d7",
|
|
5
|
+
"FeeOracle": "0x8EeFCdbD984c30E472BcbF545783D051CB5114e5",
|
|
6
|
+
"HashConsensus": "0x902D64c93F6595339aA46105627a085591051aFb",
|
|
7
|
+
"ParametersRegistry": "0xffC1C5d59CeAC6F6c27E701F04a70cb50474607C",
|
|
8
|
+
"ValidatorStrikes": "0xf4618370a1fBf46905B16C10817c8CFaD924D6db",
|
|
9
|
+
"Verifier": "0xC392F457960f1B13Ebaf1aa6C065479dD507E1E3",
|
|
10
|
+
"Ejector": "0xe181A377A2d2BDE9A83f1474BC3DB7A412de091E",
|
|
11
|
+
"ExitPenalties": "0x004aFb7DAA7dEA20EbAaB75c9F4892C879FaCCe0",
|
|
12
|
+
"MetaRegistry": "0xA64b339eebD3dC3De848298B6a140955932901d8",
|
|
13
|
+
"CuratedGateFactory": "0xDdE99d63b352A665d04339D4792E6852Ce89d1B7",
|
|
14
|
+
"LidoLocator": "0xC1d0b3DE6792Bf6b4b37EccdcC24e45978Cfd2Eb",
|
|
15
|
+
"CuratedGatePO": "0x6093EFA6B5E2FF3be54d1c895c9deA932805c49F",
|
|
16
|
+
"CuratedGatePTO": "0x8c002c6eE10cf8adb78D1F9EB2e134FdaF8A7C1a",
|
|
17
|
+
"CuratedGatePGO": "0x207798e6fD1aa7Ee8a63782A64c959cD6727b78C",
|
|
18
|
+
"CuratedGateDO": "0xeF273Ca4A21Ba7B414Ae3C9f9b443038cb133F72",
|
|
19
|
+
"CuratedGateEEO": "0x3BbBb175f7F07954DE00052b20E1c5572223F24D",
|
|
20
|
+
"CuratedGateIODC": "0x86A8d4E0db5938D21d98047544668FCCB1A9ADc8",
|
|
21
|
+
"CuratedGateIODCP": "0x773933F9db8964A17d62fb808f2EC7A2de4247CC",
|
|
22
|
+
"ChainId": 1,
|
|
23
|
+
"git-ref": "3b0c016c77590c208f2b71ca51410cb55ea2dcc2",
|
|
24
|
+
"protocol": {
|
|
25
|
+
"stakingRouter": "0xFdDf38947aFB03C621C71b06C9C70bce73f12999",
|
|
26
|
+
"validatorsExitBusOracle": "0x0De4Ea0184c2ad0BacA7183356Aea5B8d5Bf5c6e",
|
|
27
|
+
"lido": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84",
|
|
28
|
+
"withdrawalQueue": "0x889edC2eDab5f40e902b864aD4d7AdE8E412F9B1",
|
|
29
|
+
"burner": "0xE76c52750019b80B43E36DF30bf4060EB73F573a",
|
|
30
|
+
"withdrawalVault": "0xB9D7934878B5FB9610B3fE8A5e441e8fad7E293f"
|
|
31
|
+
}
|
|
32
|
+
}
|
package/data/mainnet/csm.json
CHANGED
|
@@ -7,14 +7,14 @@
|
|
|
7
7
|
"ParametersRegistry": "0x9D28ad303C90DF524BA960d7a2DAC56DcC31e428",
|
|
8
8
|
"ValidatorStrikes": "0xaa328816027F2D32B9F56d190BC9Fa4A5C07637f",
|
|
9
9
|
"Verifier": "0xdC5FE1782B6943f318E05230d688713a560063DC",
|
|
10
|
-
"Ejector": "
|
|
10
|
+
"Ejector": "0x610B517D380f287c239C93F8eF6FfBd567AA4bA5",
|
|
11
11
|
"ExitPenalties": "0x06cd61045f958A209a0f8D746e103eCc625f4193",
|
|
12
|
-
"GateSeal": "0xE1686C2E90eb41a48356c1cC7FaA17629af3ADB3",
|
|
13
12
|
"LidoLocator": "0xC1d0b3DE6792Bf6b4b37EccdcC24e45978Cfd2Eb",
|
|
14
|
-
"
|
|
15
|
-
"PermissionlessGate": "
|
|
13
|
+
"IcsGate": "0xB314D4A76C457c93150d308787939063F4Cc67E0",
|
|
14
|
+
"PermissionlessGate": "0xb8cd8F059Ad7a5dB8CAfDe34aAb007317F7156C8",
|
|
15
|
+
"IdvtcGate": "0xa12760721A72A7199aB38059DA6690b9Cd4ed7B8",
|
|
16
16
|
"ChainId": 1,
|
|
17
|
-
"git-ref": "
|
|
17
|
+
"git-ref": "4d3de6658499e1c1774951780a97d7ae25ca18b8",
|
|
18
18
|
"protocol": {
|
|
19
19
|
"stakingRouter": "0xFdDf38947aFB03C621C71b06C9C70bce73f12999",
|
|
20
20
|
"validatorsExitBusOracle": "0x0De4Ea0184c2ad0BacA7183356Aea5B8d5Bf5c6e",
|
package/data/manifest.json
CHANGED
|
@@ -1,20 +1,20 @@
|
|
|
1
1
|
{
|
|
2
|
-
"abiGitRef": "
|
|
2
|
+
"abiGitRef": "085e0b681644a880cd879eaea02e98cffa052905",
|
|
3
3
|
"abiHashes": {
|
|
4
|
-
"CSModule": "
|
|
5
|
-
"CuratedModule": "
|
|
4
|
+
"CSModule": "dcbe513a15b78bfa3d15fe46556b3eade0cd25662991227f63b59cb5e5a3903f",
|
|
5
|
+
"CuratedModule": "e7e9e45ee43f1e5f20c88feef188b72a5572c2338a3a6b5874388e5c4a9a8a8d",
|
|
6
6
|
"Accounting": "26039df3e117838bb86c035b106038cb746514e440007fc10683bada8b2117ce",
|
|
7
7
|
"FeeDistributor": "3631179853889acf2b35ecc727daa0289631442cbb1979f8a9e7eec3bd25eee1",
|
|
8
8
|
"FeeOracle": "bea2188e38e62f4f32efec379b2b4886b3a810dd2da726f629c8910dc157a401",
|
|
9
9
|
"HashConsensus": "c56bd6734d1de5c843d8af3eef132f2baf65157937d3fa640471407317403731",
|
|
10
|
-
"VettedGate": "
|
|
11
|
-
"CuratedGate": "
|
|
10
|
+
"VettedGate": "9101337f153d340a08f26746ec224a7a4eb1f7f7412288bcfc927ba58c57c3a8",
|
|
11
|
+
"CuratedGate": "6fbff984eeb2f55fcd86317fabade0fc31c809638c78456ae7f880f5f62d3b15",
|
|
12
12
|
"PermissionlessGate": "3d2f6e54999af1bb8a14b284f10e7a89f67e4e0b41ed8a85c8991a71078eaff9",
|
|
13
|
-
"ParametersRegistry": "
|
|
14
|
-
"MetaRegistry": "
|
|
13
|
+
"ParametersRegistry": "fce2a6e2865884f58fbb216eb49c8e0d3bfb89a4b126732c8280d0093774f1ba",
|
|
14
|
+
"MetaRegistry": "a178039da34d482c3ef7fdd8ae667e57798a9ea2570477225f8b56467ffa126d",
|
|
15
15
|
"Verifier": "b86b0ba3eda936e51026043652c33197d73a77b708dfc67b41e605e964bcdcee",
|
|
16
16
|
"VEBO": "7999bdb1db0520c141efdcc3be6e5e185ffefc74b928948feae9f209bec1b6df",
|
|
17
|
-
"StakingRouter": "
|
|
17
|
+
"StakingRouter": "351c7411a4903e904a399a9dd78ff79b5adcefd7140d87d91b5b4bc9bb513b77",
|
|
18
18
|
"Lido": "5d0b9f1b8017e723505fdc8ade1516b2556891527c05bda13cccb4369b46e700",
|
|
19
19
|
"LidoLocator": "352bf71565e2f635d6a86e59ea1f5921c1f6bc7a04d76caadcbd475a51e3b9e3"
|
|
20
20
|
},
|
|
@@ -29,10 +29,15 @@
|
|
|
29
29
|
"module": "csm",
|
|
30
30
|
"gitRef": "a6be775483e17d76718f8852428b5251a75c6429"
|
|
31
31
|
},
|
|
32
|
+
{
|
|
33
|
+
"chain": "mainnet",
|
|
34
|
+
"module": "cm",
|
|
35
|
+
"gitRef": "3b0c016c77590c208f2b71ca51410cb55ea2dcc2"
|
|
36
|
+
},
|
|
32
37
|
{
|
|
33
38
|
"chain": "mainnet",
|
|
34
39
|
"module": "csm",
|
|
35
|
-
"gitRef": "
|
|
40
|
+
"gitRef": "4d3de6658499e1c1774951780a97d7ae25ca18b8"
|
|
36
41
|
}
|
|
37
42
|
],
|
|
38
43
|
"protocolResolvedAt": {
|
|
@@ -46,8 +51,12 @@
|
|
|
46
51
|
},
|
|
47
52
|
"mainnet/csm": {
|
|
48
53
|
"chainId": 1,
|
|
49
|
-
"block":
|
|
54
|
+
"block": 25461583
|
|
55
|
+
},
|
|
56
|
+
"mainnet/cm": {
|
|
57
|
+
"chainId": 1,
|
|
58
|
+
"block": 25461661
|
|
50
59
|
}
|
|
51
60
|
},
|
|
52
|
-
"generatedAt": "2026-
|
|
61
|
+
"generatedAt": "2026-07-05T09:37:33.450Z"
|
|
53
62
|
}
|
package/dist/index.cjs
CHANGED
|
@@ -3989,7 +3989,7 @@ const csModuleAbi = [
|
|
|
3989
3989
|
"internalType": "uint256"
|
|
3990
3990
|
},
|
|
3991
3991
|
{
|
|
3992
|
-
"name": "",
|
|
3992
|
+
"name": "proofSlotTimestamp",
|
|
3993
3993
|
"type": "uint256",
|
|
3994
3994
|
"internalType": "uint256"
|
|
3995
3995
|
},
|
|
@@ -4057,7 +4057,7 @@ const csModuleAbi = [
|
|
|
4057
4057
|
"type": "uint256",
|
|
4058
4058
|
"internalType": "uint256"
|
|
4059
4059
|
}, {
|
|
4060
|
-
"name": "",
|
|
4060
|
+
"name": "depositCalldata",
|
|
4061
4061
|
"type": "bytes",
|
|
4062
4062
|
"internalType": "bytes"
|
|
4063
4063
|
}],
|
|
@@ -4400,7 +4400,7 @@ const csModuleAbi = [
|
|
|
4400
4400
|
"internalType": "uint256"
|
|
4401
4401
|
},
|
|
4402
4402
|
{
|
|
4403
|
-
"name": "",
|
|
4403
|
+
"name": "proofSlotTimestamp",
|
|
4404
4404
|
"type": "uint256",
|
|
4405
4405
|
"internalType": "uint256"
|
|
4406
4406
|
},
|
|
@@ -6203,7 +6203,7 @@ const curatedGateAbi = [
|
|
|
6203
6203
|
"type": "function",
|
|
6204
6204
|
"name": "setName",
|
|
6205
6205
|
"inputs": [{
|
|
6206
|
-
"name": "
|
|
6206
|
+
"name": "name",
|
|
6207
6207
|
"type": "string",
|
|
6208
6208
|
"internalType": "string"
|
|
6209
6209
|
}],
|
|
@@ -7844,7 +7844,7 @@ const curatedModuleAbi = [
|
|
|
7844
7844
|
"internalType": "uint256"
|
|
7845
7845
|
},
|
|
7846
7846
|
{
|
|
7847
|
-
"name": "",
|
|
7847
|
+
"name": "proofSlotTimestamp",
|
|
7848
7848
|
"type": "uint256",
|
|
7849
7849
|
"internalType": "uint256"
|
|
7850
7850
|
},
|
|
@@ -7935,7 +7935,7 @@ const curatedModuleAbi = [
|
|
|
7935
7935
|
"type": "uint256",
|
|
7936
7936
|
"internalType": "uint256"
|
|
7937
7937
|
}, {
|
|
7938
|
-
"name": "",
|
|
7938
|
+
"name": "depositCalldata",
|
|
7939
7939
|
"type": "bytes",
|
|
7940
7940
|
"internalType": "bytes"
|
|
7941
7941
|
}],
|
|
@@ -8271,7 +8271,7 @@ const curatedModuleAbi = [
|
|
|
8271
8271
|
"internalType": "uint256"
|
|
8272
8272
|
},
|
|
8273
8273
|
{
|
|
8274
|
-
"name": "",
|
|
8274
|
+
"name": "proofSlotTimestamp",
|
|
8275
8275
|
"type": "uint256",
|
|
8276
8276
|
"internalType": "uint256"
|
|
8277
8277
|
},
|
|
@@ -13450,7 +13450,7 @@ const metaRegistryAbi = [
|
|
|
13450
13450
|
"type": "function",
|
|
13451
13451
|
"name": "getNodeOperatorWeight",
|
|
13452
13452
|
"inputs": [{
|
|
13453
|
-
"name": "
|
|
13453
|
+
"name": "nodeOperatorId",
|
|
13454
13454
|
"type": "uint256",
|
|
13455
13455
|
"internalType": "uint256"
|
|
13456
13456
|
}],
|
|
@@ -13465,7 +13465,7 @@ const metaRegistryAbi = [
|
|
|
13465
13465
|
"type": "function",
|
|
13466
13466
|
"name": "getNodeOperatorWeightAndExternalStake",
|
|
13467
13467
|
"inputs": [{
|
|
13468
|
-
"name": "
|
|
13468
|
+
"name": "nodeOperatorId",
|
|
13469
13469
|
"type": "uint256",
|
|
13470
13470
|
"internalType": "uint256"
|
|
13471
13471
|
}],
|
|
@@ -14768,7 +14768,7 @@ const parametersRegistryAbi = [
|
|
|
14768
14768
|
"internalType": "uint256"
|
|
14769
14769
|
}],
|
|
14770
14770
|
"outputs": [{
|
|
14771
|
-
"name": "
|
|
14771
|
+
"name": "priority",
|
|
14772
14772
|
"type": "uint32",
|
|
14773
14773
|
"internalType": "uint32"
|
|
14774
14774
|
}, {
|
|
@@ -15102,7 +15102,7 @@ const parametersRegistryAbi = [
|
|
|
15102
15102
|
"type": "function",
|
|
15103
15103
|
"name": "setDefaultExitDelayFee",
|
|
15104
15104
|
"inputs": [{
|
|
15105
|
-
"name": "
|
|
15105
|
+
"name": "fee",
|
|
15106
15106
|
"type": "uint256",
|
|
15107
15107
|
"internalType": "uint256"
|
|
15108
15108
|
}],
|
|
@@ -15236,7 +15236,7 @@ const parametersRegistryAbi = [
|
|
|
15236
15236
|
"type": "uint256",
|
|
15237
15237
|
"internalType": "uint256"
|
|
15238
15238
|
}, {
|
|
15239
|
-
"name": "
|
|
15239
|
+
"name": "fee",
|
|
15240
15240
|
"type": "uint256",
|
|
15241
15241
|
"internalType": "uint256"
|
|
15242
15242
|
}],
|
|
@@ -17060,21 +17060,6 @@ const stakingRouterAbi = [
|
|
|
17060
17060
|
"outputs": [],
|
|
17061
17061
|
"stateMutability": "nonpayable"
|
|
17062
17062
|
},
|
|
17063
|
-
{
|
|
17064
|
-
"type": "function",
|
|
17065
|
-
"name": "canDeposit",
|
|
17066
|
-
"inputs": [{
|
|
17067
|
-
"name": "_stakingModuleId",
|
|
17068
|
-
"type": "uint256",
|
|
17069
|
-
"internalType": "uint256"
|
|
17070
|
-
}],
|
|
17071
|
-
"outputs": [{
|
|
17072
|
-
"name": "",
|
|
17073
|
-
"type": "bool",
|
|
17074
|
-
"internalType": "bool"
|
|
17075
|
-
}],
|
|
17076
|
-
"stateMutability": "view"
|
|
17077
|
-
},
|
|
17078
17063
|
{
|
|
17079
17064
|
"type": "function",
|
|
17080
17065
|
"name": "decreaseStakingModuleVettedKeysCountByNodeOperator",
|
|
@@ -21683,7 +21668,7 @@ const vettedGateAbi = [
|
|
|
21683
21668
|
"type": "function",
|
|
21684
21669
|
"name": "setName",
|
|
21685
21670
|
"inputs": [{
|
|
21686
|
-
"name": "
|
|
21671
|
+
"name": "name",
|
|
21687
21672
|
"type": "string",
|
|
21688
21673
|
"internalType": "string"
|
|
21689
21674
|
}],
|
|
@@ -22003,7 +21988,7 @@ const vettedGateAbi = [
|
|
|
22003
21988
|
];
|
|
22004
21989
|
//#endregion
|
|
22005
21990
|
//#region src/addresses.ts
|
|
22006
|
-
/** Default committed address books per (chain, module).
|
|
21991
|
+
/** Default committed address books per (chain, module). */
|
|
22007
21992
|
const addresses = {
|
|
22008
21993
|
hoodi: {
|
|
22009
21994
|
csm: {
|
|
@@ -22017,11 +22002,10 @@ const addresses = {
|
|
|
22017
22002
|
Verifier: "0x1773b2Ff99A030F6000554Cb8A5Ec93145650cbA",
|
|
22018
22003
|
Ejector: "0xCAe028378d69D54dc8bF809e6C44CF751F997b80",
|
|
22019
22004
|
ExitPenalties: "0xD259b31083Be841E5C85b2D481Cfc17C14276800",
|
|
22020
|
-
GateSeal: "0x725166f143DdcD9EC1b96dfb70f16E3f44968A65",
|
|
22021
22005
|
LidoLocator: "0xe2EF9536DAAAEBFf5b1c130957AB3E80056b06D8",
|
|
22022
|
-
|
|
22006
|
+
IcsGate: "0x10a254E724fe2b7f305F76f3F116a3969c53845f",
|
|
22023
22007
|
PermissionlessGate: "0xd7bD8D2A9888D1414c770B35ACF55890B15de26a",
|
|
22024
|
-
|
|
22008
|
+
IdvtcGate: "0x887F8512F9998045f4b5993e6eaa6BCfE5F02A94",
|
|
22025
22009
|
ChainId: 560048,
|
|
22026
22010
|
"git-ref": "a6be775483e17d76718f8852428b5251a75c6429",
|
|
22027
22011
|
protocol: {
|
|
@@ -22047,15 +22031,13 @@ const addresses = {
|
|
|
22047
22031
|
MetaRegistry: "0x857289cCBFBc4C134Cc312022a104CD9b38d8AAE",
|
|
22048
22032
|
CuratedGateFactory: "0x0e26d2cC3f0c2A17D2D784068cAAD34206B6804D",
|
|
22049
22033
|
LidoLocator: "0xe2EF9536DAAAEBFf5b1c130957AB3E80056b06D8",
|
|
22050
|
-
|
|
22051
|
-
|
|
22052
|
-
|
|
22053
|
-
|
|
22054
|
-
|
|
22055
|
-
|
|
22056
|
-
|
|
22057
|
-
"0x28518be9894C20135F280a9539617783b08a04c7"
|
|
22058
|
-
],
|
|
22034
|
+
CuratedGatePO: "0xF1862d120831eBE31f7202378Ff3Ae63A5658ae3",
|
|
22035
|
+
CuratedGatePTO: "0x410A309dF81B782190188CDB3d215729cc6bC1f3",
|
|
22036
|
+
CuratedGatePGO: "0xa5A604b172787e017b1b118F02fE54fC1D696519",
|
|
22037
|
+
CuratedGateDO: "0xE966874cDB6A4282ED75Cd10439e3799e5531a2D",
|
|
22038
|
+
CuratedGateEEO: "0x5c063da03e3f21443716D75a2205EE16706e1153",
|
|
22039
|
+
CuratedGateIODC: "0x1cD655Ac53CfE8269DE0DBfc0140B074623C4A6B",
|
|
22040
|
+
CuratedGateIODCP: "0x28518be9894C20135F280a9539617783b08a04c7",
|
|
22059
22041
|
ChainId: 560048,
|
|
22060
22042
|
"git-ref": "a6be775483e17d76718f8852428b5251a75c6429",
|
|
22061
22043
|
protocol: {
|
|
@@ -22068,52 +22050,86 @@ const addresses = {
|
|
|
22068
22050
|
}
|
|
22069
22051
|
}
|
|
22070
22052
|
},
|
|
22071
|
-
mainnet: {
|
|
22072
|
-
|
|
22073
|
-
|
|
22074
|
-
|
|
22075
|
-
|
|
22076
|
-
|
|
22077
|
-
|
|
22078
|
-
|
|
22079
|
-
|
|
22080
|
-
|
|
22081
|
-
|
|
22082
|
-
|
|
22083
|
-
|
|
22084
|
-
|
|
22085
|
-
|
|
22086
|
-
|
|
22087
|
-
|
|
22088
|
-
|
|
22089
|
-
|
|
22090
|
-
|
|
22091
|
-
|
|
22092
|
-
|
|
22093
|
-
|
|
22094
|
-
|
|
22053
|
+
mainnet: {
|
|
22054
|
+
csm: {
|
|
22055
|
+
CSModule: "0xdA7dE2ECdDfccC6c3AF10108Db212ACBBf9EA83F",
|
|
22056
|
+
Accounting: "0x4d72BFF1BeaC69925F8Bd12526a39BAAb069e5Da",
|
|
22057
|
+
FeeDistributor: "0xD99CC66fEC647E68294C6477B40fC7E0F6F618D0",
|
|
22058
|
+
FeeOracle: "0x4D4074628678Bd302921c20573EEa1ed38DdF7FB",
|
|
22059
|
+
HashConsensus: "0x71093efF8D8599b5fA340D665Ad60fA7C80688e4",
|
|
22060
|
+
ParametersRegistry: "0x9D28ad303C90DF524BA960d7a2DAC56DcC31e428",
|
|
22061
|
+
ValidatorStrikes: "0xaa328816027F2D32B9F56d190BC9Fa4A5C07637f",
|
|
22062
|
+
Verifier: "0xdC5FE1782B6943f318E05230d688713a560063DC",
|
|
22063
|
+
Ejector: "0x610B517D380f287c239C93F8eF6FfBd567AA4bA5",
|
|
22064
|
+
ExitPenalties: "0x06cd61045f958A209a0f8D746e103eCc625f4193",
|
|
22065
|
+
LidoLocator: "0xC1d0b3DE6792Bf6b4b37EccdcC24e45978Cfd2Eb",
|
|
22066
|
+
IcsGate: "0xB314D4A76C457c93150d308787939063F4Cc67E0",
|
|
22067
|
+
PermissionlessGate: "0xb8cd8F059Ad7a5dB8CAfDe34aAb007317F7156C8",
|
|
22068
|
+
IdvtcGate: "0xa12760721A72A7199aB38059DA6690b9Cd4ed7B8",
|
|
22069
|
+
ChainId: 1,
|
|
22070
|
+
"git-ref": "4d3de6658499e1c1774951780a97d7ae25ca18b8",
|
|
22071
|
+
protocol: {
|
|
22072
|
+
"stakingRouter": "0xFdDf38947aFB03C621C71b06C9C70bce73f12999",
|
|
22073
|
+
"validatorsExitBusOracle": "0x0De4Ea0184c2ad0BacA7183356Aea5B8d5Bf5c6e",
|
|
22074
|
+
"lido": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84",
|
|
22075
|
+
"withdrawalQueue": "0x889edC2eDab5f40e902b864aD4d7AdE8E412F9B1",
|
|
22076
|
+
"burner": "0xE76c52750019b80B43E36DF30bf4060EB73F573a",
|
|
22077
|
+
"withdrawalVault": "0xB9D7934878B5FB9610B3fE8A5e441e8fad7E293f"
|
|
22078
|
+
}
|
|
22079
|
+
},
|
|
22080
|
+
cm: {
|
|
22081
|
+
CuratedModule: "0xDa5F930cE326EB5205085D66c72A4E79d60cB8C1",
|
|
22082
|
+
Accounting: "0x2F91e3A8C5d6593bf4F8403fCfeCcd62dF59f6F6",
|
|
22083
|
+
FeeDistributor: "0x367d23c756599c20DCc8D6943F4976E8F88D60d7",
|
|
22084
|
+
FeeOracle: "0x8EeFCdbD984c30E472BcbF545783D051CB5114e5",
|
|
22085
|
+
HashConsensus: "0x902D64c93F6595339aA46105627a085591051aFb",
|
|
22086
|
+
ParametersRegistry: "0xffC1C5d59CeAC6F6c27E701F04a70cb50474607C",
|
|
22087
|
+
ValidatorStrikes: "0xf4618370a1fBf46905B16C10817c8CFaD924D6db",
|
|
22088
|
+
Verifier: "0xC392F457960f1B13Ebaf1aa6C065479dD507E1E3",
|
|
22089
|
+
Ejector: "0xe181A377A2d2BDE9A83f1474BC3DB7A412de091E",
|
|
22090
|
+
ExitPenalties: "0x004aFb7DAA7dEA20EbAaB75c9F4892C879FaCCe0",
|
|
22091
|
+
MetaRegistry: "0xA64b339eebD3dC3De848298B6a140955932901d8",
|
|
22092
|
+
CuratedGateFactory: "0xDdE99d63b352A665d04339D4792E6852Ce89d1B7",
|
|
22093
|
+
LidoLocator: "0xC1d0b3DE6792Bf6b4b37EccdcC24e45978Cfd2Eb",
|
|
22094
|
+
CuratedGatePO: "0x6093EFA6B5E2FF3be54d1c895c9deA932805c49F",
|
|
22095
|
+
CuratedGatePTO: "0x8c002c6eE10cf8adb78D1F9EB2e134FdaF8A7C1a",
|
|
22096
|
+
CuratedGatePGO: "0x207798e6fD1aa7Ee8a63782A64c959cD6727b78C",
|
|
22097
|
+
CuratedGateDO: "0xeF273Ca4A21Ba7B414Ae3C9f9b443038cb133F72",
|
|
22098
|
+
CuratedGateEEO: "0x3BbBb175f7F07954DE00052b20E1c5572223F24D",
|
|
22099
|
+
CuratedGateIODC: "0x86A8d4E0db5938D21d98047544668FCCB1A9ADc8",
|
|
22100
|
+
CuratedGateIODCP: "0x773933F9db8964A17d62fb808f2EC7A2de4247CC",
|
|
22101
|
+
ChainId: 1,
|
|
22102
|
+
"git-ref": "3b0c016c77590c208f2b71ca51410cb55ea2dcc2",
|
|
22103
|
+
protocol: {
|
|
22104
|
+
"stakingRouter": "0xFdDf38947aFB03C621C71b06C9C70bce73f12999",
|
|
22105
|
+
"validatorsExitBusOracle": "0x0De4Ea0184c2ad0BacA7183356Aea5B8d5Bf5c6e",
|
|
22106
|
+
"lido": "0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84",
|
|
22107
|
+
"withdrawalQueue": "0x889edC2eDab5f40e902b864aD4d7AdE8E412F9B1",
|
|
22108
|
+
"burner": "0xE76c52750019b80B43E36DF30bf4060EB73F573a",
|
|
22109
|
+
"withdrawalVault": "0xB9D7934878B5FB9610B3fE8A5e441e8fad7E293f"
|
|
22110
|
+
}
|
|
22095
22111
|
}
|
|
22096
|
-
}
|
|
22112
|
+
}
|
|
22097
22113
|
};
|
|
22098
22114
|
//#endregion
|
|
22099
22115
|
//#region data/manifest.json
|
|
22100
22116
|
var manifest_default = {
|
|
22101
|
-
abiGitRef: "
|
|
22117
|
+
abiGitRef: "085e0b681644a880cd879eaea02e98cffa052905",
|
|
22102
22118
|
abiHashes: {
|
|
22103
|
-
"CSModule": "
|
|
22104
|
-
"CuratedModule": "
|
|
22119
|
+
"CSModule": "dcbe513a15b78bfa3d15fe46556b3eade0cd25662991227f63b59cb5e5a3903f",
|
|
22120
|
+
"CuratedModule": "e7e9e45ee43f1e5f20c88feef188b72a5572c2338a3a6b5874388e5c4a9a8a8d",
|
|
22105
22121
|
"Accounting": "26039df3e117838bb86c035b106038cb746514e440007fc10683bada8b2117ce",
|
|
22106
22122
|
"FeeDistributor": "3631179853889acf2b35ecc727daa0289631442cbb1979f8a9e7eec3bd25eee1",
|
|
22107
22123
|
"FeeOracle": "bea2188e38e62f4f32efec379b2b4886b3a810dd2da726f629c8910dc157a401",
|
|
22108
22124
|
"HashConsensus": "c56bd6734d1de5c843d8af3eef132f2baf65157937d3fa640471407317403731",
|
|
22109
|
-
"VettedGate": "
|
|
22110
|
-
"CuratedGate": "
|
|
22125
|
+
"VettedGate": "9101337f153d340a08f26746ec224a7a4eb1f7f7412288bcfc927ba58c57c3a8",
|
|
22126
|
+
"CuratedGate": "6fbff984eeb2f55fcd86317fabade0fc31c809638c78456ae7f880f5f62d3b15",
|
|
22111
22127
|
"PermissionlessGate": "3d2f6e54999af1bb8a14b284f10e7a89f67e4e0b41ed8a85c8991a71078eaff9",
|
|
22112
|
-
"ParametersRegistry": "
|
|
22113
|
-
"MetaRegistry": "
|
|
22128
|
+
"ParametersRegistry": "fce2a6e2865884f58fbb216eb49c8e0d3bfb89a4b126732c8280d0093774f1ba",
|
|
22129
|
+
"MetaRegistry": "a178039da34d482c3ef7fdd8ae667e57798a9ea2570477225f8b56467ffa126d",
|
|
22114
22130
|
"Verifier": "b86b0ba3eda936e51026043652c33197d73a77b708dfc67b41e605e964bcdcee",
|
|
22115
22131
|
"VEBO": "7999bdb1db0520c141efdcc3be6e5e185ffefc74b928948feae9f209bec1b6df",
|
|
22116
|
-
"StakingRouter": "
|
|
22132
|
+
"StakingRouter": "351c7411a4903e904a399a9dd78ff79b5adcefd7140d87d91b5b4bc9bb513b77",
|
|
22117
22133
|
"Lido": "5d0b9f1b8017e723505fdc8ade1516b2556891527c05bda13cccb4369b46e700",
|
|
22118
22134
|
"LidoLocator": "352bf71565e2f635d6a86e59ea1f5921c1f6bc7a04d76caadcbd475a51e3b9e3"
|
|
22119
22135
|
},
|
|
@@ -22128,10 +22144,15 @@ var manifest_default = {
|
|
|
22128
22144
|
"module": "csm",
|
|
22129
22145
|
"gitRef": "a6be775483e17d76718f8852428b5251a75c6429"
|
|
22130
22146
|
},
|
|
22147
|
+
{
|
|
22148
|
+
"chain": "mainnet",
|
|
22149
|
+
"module": "cm",
|
|
22150
|
+
"gitRef": "3b0c016c77590c208f2b71ca51410cb55ea2dcc2"
|
|
22151
|
+
},
|
|
22131
22152
|
{
|
|
22132
22153
|
"chain": "mainnet",
|
|
22133
22154
|
"module": "csm",
|
|
22134
|
-
"gitRef": "
|
|
22155
|
+
"gitRef": "4d3de6658499e1c1774951780a97d7ae25ca18b8"
|
|
22135
22156
|
}
|
|
22136
22157
|
],
|
|
22137
22158
|
protocolResolvedAt: {
|
|
@@ -22145,10 +22166,14 @@ var manifest_default = {
|
|
|
22145
22166
|
},
|
|
22146
22167
|
"mainnet/csm": {
|
|
22147
22168
|
"chainId": 1,
|
|
22148
|
-
"block":
|
|
22169
|
+
"block": 25461583
|
|
22170
|
+
},
|
|
22171
|
+
"mainnet/cm": {
|
|
22172
|
+
"chainId": 1,
|
|
22173
|
+
"block": 25461661
|
|
22149
22174
|
}
|
|
22150
22175
|
},
|
|
22151
|
-
generatedAt: "2026-
|
|
22176
|
+
generatedAt: "2026-07-05T09:37:33.450Z"
|
|
22152
22177
|
};
|
|
22153
22178
|
//#endregion
|
|
22154
22179
|
exports.accountingAbi = accountingAbi;
|