@paraswap/dex-lib 3.11.8-stader.4 → 3.11.8
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/.vscode/launch.json +53 -0
- package/.vscode/settings.json +2 -0
- package/.vscode/tasks.json +15 -0
- package/build/abi/balancer-v3/batch-router.json +989 -0
- package/build/abi/balancer-v3/router.json +1792 -0
- package/build/abi/balancer-v3/vault-extension.json +2834 -0
- package/build/abi/{cables/CablesMainnetRFQ.json → inception/inception-ineth-pool.json} +489 -510
- package/build/abi/inception/inception-ratio-feed.json +329 -0
- package/build/abi/inception/inception-vault.json +991 -0
- package/build/abi/permit2.json +581 -0
- package/build/abi/uniswap-v3/AlienBaseV3Router.abi.json +52 -0
- package/build/abi/usual-m-smart-m/usualM.abi.json +483 -0
- package/build/abi/usual-m-usd0/usualCollateralDao.abi.json +681 -0
- package/build/abi/{integral/relayer.json → wombat/pool.json} +474 -721
- package/build/dex/aave-v1/aave-v1.d.ts +2 -1
- package/build/dex/aave-v1/aave-v1.js +23 -0
- package/build/dex/aave-v1/aave-v1.js.map +1 -1
- package/build/dex/aave-v2/tokens-avalanche.json +44 -0
- package/build/dex/aave-v2/tokens-mainnet.json +188 -0
- package/build/dex/aave-v2/tokens-polygon.json +44 -0
- package/build/dex/balancer-v3/abi/balancerBatchRouter.d.ts +729 -0
- package/build/dex/balancer-v3/abi/balancerBatchRouter.js +732 -0
- package/build/dex/balancer-v3/abi/balancerBatchRouter.js.map +1 -0
- package/build/dex/balancer-v3/abi/balancerRouter.d.ts +1406 -0
- package/build/dex/balancer-v3/abi/balancerRouter.js +1175 -0
- package/build/dex/balancer-v3/abi/balancerRouter.js.map +1 -0
- package/build/dex/balancer-v3/abi/vaultExtension.V3.d.ts +2081 -0
- package/build/dex/balancer-v3/abi/vaultExtension.V3.js +1851 -0
- package/build/dex/balancer-v3/abi/vaultExtension.V3.js.map +1 -0
- package/build/dex/balancer-v3/balancer-v3-pool.d.ts +80 -0
- package/build/dex/balancer-v3/balancer-v3-pool.js +461 -0
- package/build/dex/balancer-v3/balancer-v3-pool.js.map +1 -0
- package/build/dex/balancer-v3/balancer-v3-sepolia-pools.d.ts +34 -0
- package/build/dex/balancer-v3/balancer-v3-sepolia-pools.js +406 -0
- package/build/dex/balancer-v3/balancer-v3-sepolia-pools.js.map +1 -0
- package/build/dex/balancer-v3/balancer-v3.d.ts +57 -0
- package/build/dex/balancer-v3/balancer-v3.js +383 -0
- package/build/dex/balancer-v3/balancer-v3.js.map +1 -0
- package/build/dex/balancer-v3/config.d.ts +8 -0
- package/build/dex/balancer-v3/config.js +24 -0
- package/build/dex/balancer-v3/config.js.map +1 -0
- package/build/dex/balancer-v3/getGasCost.d.ts +2 -0
- package/build/dex/balancer-v3/getGasCost.js +41 -0
- package/build/dex/balancer-v3/getGasCost.js.map +1 -0
- package/build/dex/balancer-v3/getOnChainState.d.ts +10 -0
- package/build/dex/balancer-v3/getOnChainState.js +164 -0
- package/build/dex/balancer-v3/getOnChainState.js.map +1 -0
- package/build/dex/balancer-v3/getPoolsApi.d.ts +2 -0
- package/build/dex/balancer-v3/getPoolsApi.js +81 -0
- package/build/dex/balancer-v3/getPoolsApi.js.map +1 -0
- package/build/dex/balancer-v3/getTopPoolsApi.d.ts +13 -0
- package/build/dex/balancer-v3/getTopPoolsApi.js +62 -0
- package/build/dex/balancer-v3/getTopPoolsApi.js.map +1 -0
- package/build/dex/balancer-v3/optimizer.d.ts +2 -0
- package/build/dex/{trader-joe-v2.1 → balancer-v3}/optimizer.js +17 -16
- package/build/dex/balancer-v3/optimizer.js.map +1 -0
- package/build/dex/balancer-v3/stablePool.d.ts +7 -0
- package/build/dex/balancer-v3/stablePool.js +73 -0
- package/build/dex/balancer-v3/stablePool.js.map +1 -0
- package/build/dex/balancer-v3/types.d.ts +62 -0
- package/build/dex/balancer-v3/types.js +3 -0
- package/build/dex/balancer-v3/types.js.map +1 -0
- package/build/dex/balancer-v3/weightedPool.d.ts +1 -0
- package/build/dex/balancer-v3/weightedPool.js +6 -0
- package/build/dex/balancer-v3/weightedPool.js.map +1 -0
- package/build/dex/inception/config.d.ts +4 -0
- package/build/dex/inception/config.js +109 -0
- package/build/dex/inception/config.js.map +1 -0
- package/build/dex/inception/inception-event-pool.d.ts +16 -0
- package/build/dex/inception/inception-event-pool.js +49 -0
- package/build/dex/inception/inception-event-pool.js.map +1 -0
- package/build/dex/inception/inception.d.ts +43 -0
- package/build/dex/inception/inception.js +180 -0
- package/build/dex/inception/inception.js.map +1 -0
- package/build/dex/inception/tokens.d.ts +9 -0
- package/build/dex/inception/tokens.js +28 -0
- package/build/dex/inception/tokens.js.map +1 -0
- package/build/dex/inception/types.d.ts +22 -0
- package/build/dex/inception/types.js +3 -0
- package/build/dex/inception/types.js.map +1 -0
- package/build/dex/inception/utils.d.ts +7 -0
- package/build/dex/inception/utils.js +58 -0
- package/build/dex/inception/utils.js.map +1 -0
- package/build/dex/index.js +0 -2
- package/build/dex/index.js.map +1 -1
- package/build/dex/jarvis.d.ts +2 -1
- package/build/dex/jarvis.js +58 -0
- package/build/dex/jarvis.js.map +1 -1
- package/build/dex/maker-psm/scripts/gem.abi.json +136 -0
- package/build/dex/maker-psm/scripts/validate-state.d.ts +0 -0
- package/build/dex/maker-psm/scripts/validate-state.js +185 -0
- package/build/dex/maker-psm/scripts/validate-state.js.map +1 -0
- package/build/dex/maker-psm/scripts/vat.abi.json +243 -0
- package/build/dex/platypus/platypus.d.ts +2 -1
- package/build/dex/platypus/platypus.js +45 -0
- package/build/dex/platypus/platypus.js.map +1 -1
- package/build/dex/solidly-v3/scripts/check-event-pool-event.d.ts +1 -0
- package/build/dex/solidly-v3/scripts/check-event-pool-event.js +53 -0
- package/build/dex/solidly-v3/scripts/check-event-pool-event.js.map +1 -0
- package/build/dex/stable-pool.js +1 -8
- package/build/dex/stable-pool.js.map +1 -1
- package/build/dex/swaap-v1/swaap-v1.d.ts +2 -1
- package/build/dex/swaap-v1/swaap-v1.js +14 -0
- package/build/dex/swaap-v1/swaap-v1.js.map +1 -1
- package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.d.ts +17 -0
- package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js +64 -0
- package/build/dex/uniswap-v3/forks/alien-base-v3/alien-base-v3.js.map +1 -0
- package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.d.ts +17 -0
- package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js +79 -0
- package/build/dex/uniswap-v3/forks/alien-v3/alien-v3.js.map +1 -0
- package/build/dex/uniswap-v3/uniswap-v3-pricing.d.ts +4 -0
- package/build/dex/uniswap-v3/uniswap-v3-pricing.js +43 -0
- package/build/dex/uniswap-v3/uniswap-v3-pricing.js.map +1 -0
- package/build/dex/uniswap-v3/uniswap-v3-worker.d.ts +1 -0
- package/build/dex/uniswap-v3/uniswap-v3-worker.js +10 -0
- package/build/dex/uniswap-v3/uniswap-v3-worker.js.map +1 -0
- package/build/dex/usual/types.d.ts +13 -0
- package/build/dex/usual/types.js +3 -0
- package/build/dex/usual/types.js.map +1 -0
- package/build/dex/usual/usual-bond.d.ts +18 -0
- package/build/dex/usual/usual-bond.js +52 -0
- package/build/dex/usual/usual-bond.js.map +1 -0
- package/build/dex/usual/usual-m-smart-m.d.ts +17 -0
- package/build/dex/usual/usual-m-smart-m.js +50 -0
- package/build/dex/usual/usual-m-smart-m.js.map +1 -0
- package/build/dex/usual/usual-m-usd0.d.ts +17 -0
- package/build/dex/usual/usual-m-usd0.js +51 -0
- package/build/dex/usual/usual-m-usd0.js.map +1 -0
- package/build/dex/usual/usual.d.ts +27 -0
- package/build/dex/usual/usual.js +125 -0
- package/build/dex/usual/usual.js.map +1 -0
- package/build/dex/usual-m-smart-m/config.d.ts +3 -0
- package/build/dex/usual-m-smart-m/config.js +13 -0
- package/build/dex/usual-m-smart-m/config.js.map +1 -0
- package/build/dex/usual-m-smart-m/types.d.ts +7 -0
- package/build/dex/usual-m-smart-m/types.js +3 -0
- package/build/dex/usual-m-smart-m/types.js.map +1 -0
- package/build/dex/usual-m-smart-m/usual-m-smart-m.d.ts +35 -0
- package/build/dex/usual-m-smart-m/usual-m-smart-m.js +161 -0
- package/build/dex/usual-m-smart-m/usual-m-smart-m.js.map +1 -0
- package/build/dex/{stader → usual-m-usd0}/config.d.ts +1 -1
- package/build/dex/usual-m-usd0/config.js +14 -0
- package/build/dex/usual-m-usd0/config.js.map +1 -0
- package/build/dex/usual-m-usd0/types.d.ts +8 -0
- package/build/dex/usual-m-usd0/types.js +3 -0
- package/build/dex/usual-m-usd0/types.js.map +1 -0
- package/build/dex/usual-m-usd0/usual-m-usd0.d.ts +35 -0
- package/build/dex/usual-m-usd0/usual-m-usd0.js +159 -0
- package/build/dex/usual-m-usd0/usual-m-usd0.js.map +1 -0
- package/build/dex/zerox/index.d.ts +4 -26
- package/build/dex/zerox/index.js +50 -42
- package/build/dex/zerox/index.js.map +1 -1
- package/build/dex/zerox/types.d.ts +29 -0
- package/build/dex/zerox/types.js +8 -1
- package/build/dex/zerox/types.js.map +1 -1
- package/package.json +1 -1
- package/src/dex/balancer-v3/balancer-v3-sepolia-pools.ts +404 -0
- package/src/dex/index.ts +0 -2
- package/tests/constants-e2e.ts +0 -5
- package/.idea/aws.xml +0 -17
- package/.idea/codeStyles/Project.xml +0 -19
- package/.idea/codeStyles/codeStyleConfig.xml +0 -5
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/paraswap-dex-lib.iml +0 -9
- package/.idea/prettier.xml +0 -7
- package/.idea/vcs.xml +0 -6
- package/build/abi/SSPM.json +0 -829
- package/build/abi/StaderOracle.json +0 -2170
- package/build/abi/integral/factory.json +0 -333
- package/build/abi/integral/oracle.json +0 -501
- package/build/abi/integral/pool.json +0 -1041
- package/build/dex/cables/cables.d.ts +0 -59
- package/build/dex/cables/cables.js +0 -614
- package/build/dex/cables/cables.js.map +0 -1
- package/build/dex/cables/config.d.ts +0 -4
- package/build/dex/cables/config.js +0 -15
- package/build/dex/cables/config.js.map +0 -1
- package/build/dex/cables/constants.d.ts +0 -20
- package/build/dex/cables/constants.js +0 -24
- package/build/dex/cables/constants.js.map +0 -1
- package/build/dex/cables/rate-fetcher.d.ts +0 -34
- package/build/dex/cables/rate-fetcher.js +0 -106
- package/build/dex/cables/rate-fetcher.js.map +0 -1
- package/build/dex/cables/types.d.ts +0 -113
- package/build/dex/cables/types.js +0 -19
- package/build/dex/cables/types.js.map +0 -1
- package/build/dex/cables/validators.d.ts +0 -5
- package/build/dex/cables/validators.js +0 -49
- package/build/dex/cables/validators.js.map +0 -1
- package/build/dex/fluid-dex/fluid-dex-generate-pool.d.ts +0 -49
- package/build/dex/fluid-dex/fluid-dex-generate-pool.js +0 -104
- package/build/dex/fluid-dex/fluid-dex-generate-pool.js.map +0 -1
- package/build/dex/integral/config.d.ts +0 -4
- package/build/dex/integral/config.js +0 -20
- package/build/dex/integral/config.js.map +0 -1
- package/build/dex/integral/context.d.ts +0 -40
- package/build/dex/integral/context.js +0 -158
- package/build/dex/integral/context.js.map +0 -1
- package/build/dex/integral/integral-factory.d.ts +0 -24
- package/build/dex/integral/integral-factory.js +0 -95
- package/build/dex/integral/integral-factory.js.map +0 -1
- package/build/dex/integral/integral-pool.d.ts +0 -50
- package/build/dex/integral/integral-pool.js +0 -149
- package/build/dex/integral/integral-pool.js.map +0 -1
- package/build/dex/integral/integral-pricing.d.ts +0 -18
- package/build/dex/integral/integral-pricing.js +0 -114
- package/build/dex/integral/integral-pricing.js.map +0 -1
- package/build/dex/integral/integral-relayer.d.ts +0 -42
- package/build/dex/integral/integral-relayer.js +0 -192
- package/build/dex/integral/integral-relayer.js.map +0 -1
- package/build/dex/integral/integral-token.d.ts +0 -27
- package/build/dex/integral/integral-token.js +0 -59
- package/build/dex/integral/integral-token.js.map +0 -1
- package/build/dex/integral/integral.d.ts +0 -41
- package/build/dex/integral/integral.js +0 -376
- package/build/dex/integral/integral.js.map +0 -1
- package/build/dex/integral/types.d.ts +0 -85
- package/build/dex/integral/types.js +0 -9
- package/build/dex/integral/types.js.map +0 -1
- package/build/dex/integral/utils-e2e.d.ts +0 -9
- package/build/dex/integral/utils-e2e.js +0 -131
- package/build/dex/integral/utils-e2e.js.map +0 -1
- package/build/dex/integral/utils.d.ts +0 -17
- package/build/dex/integral/utils.js +0 -94
- package/build/dex/integral/utils.js.map +0 -1
- package/build/dex/stader/config.js +0 -14
- package/build/dex/stader/config.js.map +0 -1
- package/build/dex/stader/stader-pool.d.ts +0 -18
- package/build/dex/stader/stader-pool.js +0 -47
- package/build/dex/stader/stader-pool.js.map +0 -1
- package/build/dex/stader/stader.d.ts +0 -42
- package/build/dex/stader/stader.js +0 -141
- package/build/dex/stader/stader.js.map +0 -1
- package/build/dex/stader/types.d.ts +0 -13
- package/build/dex/stader/types.js +0 -8
- package/build/dex/stader/types.js.map +0 -1
- package/build/dex/stader/utils.d.ts +0 -4
- package/build/dex/stader/utils.js +0 -24
- package/build/dex/stader/utils.js.map +0 -1
- package/build/dex/trader-joe-v2.1/optimizer.d.ts +0 -2
- package/build/dex/trader-joe-v2.1/optimizer.js.map +0 -1
- package/src/abi/SSPM.json +0 -829
- package/src/abi/StaderOracle.json +0 -2170
- package/src/dex/stader/config.ts +0 -13
- package/src/dex/stader/stader-e2e.test.ts +0 -74
- package/src/dex/stader/stader-events.test.ts +0 -64
- package/src/dex/stader/stader-integration.test.ts +0 -210
- package/src/dex/stader/stader-pool.ts +0 -68
- package/src/dex/stader/stader.ts +0 -208
- package/src/dex/stader/types.ts +0 -16
- package/src/dex/stader/utils.ts +0 -34
|
@@ -1,147 +1,134 @@
|
|
|
1
1
|
[
|
|
2
2
|
{
|
|
3
3
|
"inputs": [],
|
|
4
|
-
"
|
|
5
|
-
"type": "
|
|
4
|
+
"stateMutability": "nonpayable",
|
|
5
|
+
"type": "constructor"
|
|
6
6
|
},
|
|
7
7
|
{
|
|
8
8
|
"inputs": [
|
|
9
9
|
{
|
|
10
|
-
"internalType": "
|
|
11
|
-
"name": "
|
|
12
|
-
"type": "
|
|
10
|
+
"internalType": "uint256",
|
|
11
|
+
"name": "claimed",
|
|
12
|
+
"type": "uint256"
|
|
13
13
|
},
|
|
14
14
|
{
|
|
15
|
-
"internalType": "
|
|
16
|
-
"name": "
|
|
17
|
-
"type": "
|
|
18
|
-
}
|
|
19
|
-
],
|
|
20
|
-
"name": "AccessControlUnauthorizedAccount",
|
|
21
|
-
"type": "error"
|
|
22
|
-
},
|
|
23
|
-
{
|
|
24
|
-
"inputs": [
|
|
25
|
-
{
|
|
26
|
-
"internalType": "address",
|
|
27
|
-
"name": "target",
|
|
28
|
-
"type": "address"
|
|
29
|
-
}
|
|
30
|
-
],
|
|
31
|
-
"name": "AddressEmptyCode",
|
|
32
|
-
"type": "error"
|
|
33
|
-
},
|
|
34
|
-
{
|
|
35
|
-
"inputs": [
|
|
36
|
-
{
|
|
37
|
-
"internalType": "address",
|
|
38
|
-
"name": "account",
|
|
39
|
-
"type": "address"
|
|
15
|
+
"internalType": "uint256",
|
|
16
|
+
"name": "fee",
|
|
17
|
+
"type": "uint256"
|
|
40
18
|
}
|
|
41
19
|
],
|
|
42
|
-
"name": "
|
|
43
|
-
"type": "error"
|
|
44
|
-
},
|
|
45
|
-
{
|
|
46
|
-
"inputs": [],
|
|
47
|
-
"name": "EnforcedPause",
|
|
20
|
+
"name": "AmbiguousFee",
|
|
48
21
|
"type": "error"
|
|
49
22
|
},
|
|
50
23
|
{
|
|
51
24
|
"inputs": [],
|
|
52
|
-
"name": "
|
|
25
|
+
"name": "InvalidInitialization",
|
|
53
26
|
"type": "error"
|
|
54
27
|
},
|
|
55
28
|
{
|
|
56
29
|
"inputs": [],
|
|
57
|
-
"name": "
|
|
30
|
+
"name": "NotInitializing",
|
|
58
31
|
"type": "error"
|
|
59
32
|
},
|
|
60
33
|
{
|
|
61
34
|
"inputs": [],
|
|
62
|
-
"name": "
|
|
35
|
+
"name": "OnlyGovernanceAllowed",
|
|
63
36
|
"type": "error"
|
|
64
37
|
},
|
|
65
38
|
{
|
|
66
39
|
"inputs": [],
|
|
67
|
-
"name": "
|
|
40
|
+
"name": "OnlyOperatorAllowed",
|
|
68
41
|
"type": "error"
|
|
69
42
|
},
|
|
70
43
|
{
|
|
71
44
|
"inputs": [],
|
|
72
|
-
"name": "
|
|
45
|
+
"name": "OnlyRestakingPoolAllowed",
|
|
73
46
|
"type": "error"
|
|
74
47
|
},
|
|
75
48
|
{
|
|
76
49
|
"inputs": [
|
|
77
50
|
{
|
|
78
|
-
"internalType": "
|
|
79
|
-
"name": "
|
|
80
|
-
"type": "
|
|
51
|
+
"internalType": "uint64",
|
|
52
|
+
"name": "max",
|
|
53
|
+
"type": "uint64"
|
|
81
54
|
}
|
|
82
55
|
],
|
|
83
|
-
"name": "
|
|
56
|
+
"name": "PoolDistributeGasLimitNotInRange",
|
|
84
57
|
"type": "error"
|
|
85
58
|
},
|
|
86
59
|
{
|
|
87
60
|
"inputs": [],
|
|
88
|
-
"name": "
|
|
61
|
+
"name": "PoolFailedInnerCall",
|
|
89
62
|
"type": "error"
|
|
90
63
|
},
|
|
91
64
|
{
|
|
92
65
|
"inputs": [],
|
|
93
|
-
"name": "
|
|
66
|
+
"name": "PoolInsufficientBalance",
|
|
94
67
|
"type": "error"
|
|
95
68
|
},
|
|
96
69
|
{
|
|
97
70
|
"inputs": [],
|
|
98
|
-
"name": "
|
|
71
|
+
"name": "PoolRestakerExists",
|
|
99
72
|
"type": "error"
|
|
100
73
|
},
|
|
101
74
|
{
|
|
102
75
|
"inputs": [],
|
|
103
|
-
"name": "
|
|
76
|
+
"name": "PoolRestakerNotExists",
|
|
104
77
|
"type": "error"
|
|
105
78
|
},
|
|
106
79
|
{
|
|
107
80
|
"inputs": [],
|
|
108
|
-
"name": "
|
|
81
|
+
"name": "PoolStakeAmGreaterThanAvailable",
|
|
109
82
|
"type": "error"
|
|
110
83
|
},
|
|
111
84
|
{
|
|
112
85
|
"inputs": [],
|
|
113
|
-
"name": "
|
|
86
|
+
"name": "PoolStakeAmLessThanMin",
|
|
114
87
|
"type": "error"
|
|
115
88
|
},
|
|
116
89
|
{
|
|
117
90
|
"inputs": [],
|
|
118
|
-
"name": "
|
|
91
|
+
"name": "PoolUnstakeAmLessThanMin",
|
|
119
92
|
"type": "error"
|
|
120
93
|
},
|
|
121
94
|
{
|
|
122
95
|
"inputs": [],
|
|
123
|
-
"name": "
|
|
96
|
+
"name": "PoolWrongInputLength",
|
|
124
97
|
"type": "error"
|
|
125
98
|
},
|
|
126
99
|
{
|
|
127
100
|
"inputs": [],
|
|
128
|
-
"name": "
|
|
101
|
+
"name": "PoolZeroAddress",
|
|
129
102
|
"type": "error"
|
|
130
103
|
},
|
|
131
104
|
{
|
|
132
105
|
"inputs": [],
|
|
133
|
-
"name": "
|
|
106
|
+
"name": "PoolZeroAmount",
|
|
134
107
|
"type": "error"
|
|
135
108
|
},
|
|
136
109
|
{
|
|
137
110
|
"inputs": [],
|
|
138
|
-
"name": "
|
|
111
|
+
"name": "ReentrancyGuardReentrantCall",
|
|
139
112
|
"type": "error"
|
|
140
113
|
},
|
|
141
114
|
{
|
|
142
|
-
"
|
|
143
|
-
"
|
|
144
|
-
|
|
115
|
+
"anonymous": false,
|
|
116
|
+
"inputs": [
|
|
117
|
+
{
|
|
118
|
+
"indexed": true,
|
|
119
|
+
"internalType": "address",
|
|
120
|
+
"name": "claimer",
|
|
121
|
+
"type": "address"
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
"indexed": false,
|
|
125
|
+
"internalType": "uint256",
|
|
126
|
+
"name": "value",
|
|
127
|
+
"type": "uint256"
|
|
128
|
+
}
|
|
129
|
+
],
|
|
130
|
+
"name": "ClaimExpected",
|
|
131
|
+
"type": "event"
|
|
145
132
|
},
|
|
146
133
|
{
|
|
147
134
|
"anonymous": false,
|
|
@@ -149,29 +136,67 @@
|
|
|
149
136
|
{
|
|
150
137
|
"indexed": true,
|
|
151
138
|
"internalType": "string",
|
|
152
|
-
"name": "
|
|
139
|
+
"name": "provider",
|
|
153
140
|
"type": "string"
|
|
154
141
|
},
|
|
155
142
|
{
|
|
156
143
|
"indexed": false,
|
|
157
|
-
"internalType": "
|
|
158
|
-
"name": "
|
|
159
|
-
"type": "
|
|
144
|
+
"internalType": "bytes[]",
|
|
145
|
+
"name": "pubkeys",
|
|
146
|
+
"type": "bytes[]"
|
|
147
|
+
}
|
|
148
|
+
],
|
|
149
|
+
"name": "Deposited",
|
|
150
|
+
"type": "event"
|
|
151
|
+
},
|
|
152
|
+
{
|
|
153
|
+
"anonymous": false,
|
|
154
|
+
"inputs": [
|
|
155
|
+
{
|
|
156
|
+
"indexed": false,
|
|
157
|
+
"internalType": "uint32",
|
|
158
|
+
"name": "prevValue",
|
|
159
|
+
"type": "uint32"
|
|
160
160
|
},
|
|
161
161
|
{
|
|
162
162
|
"indexed": false,
|
|
163
|
-
"internalType": "
|
|
164
|
-
"name": "
|
|
165
|
-
"type": "
|
|
163
|
+
"internalType": "uint32",
|
|
164
|
+
"name": "newValue",
|
|
165
|
+
"type": "uint32"
|
|
166
166
|
}
|
|
167
167
|
],
|
|
168
|
-
"name": "
|
|
168
|
+
"name": "DistributeGasLimitChanged",
|
|
169
169
|
"type": "event"
|
|
170
170
|
},
|
|
171
171
|
{
|
|
172
172
|
"anonymous": false,
|
|
173
|
-
"inputs": [
|
|
174
|
-
|
|
173
|
+
"inputs": [
|
|
174
|
+
{
|
|
175
|
+
"indexed": true,
|
|
176
|
+
"internalType": "address",
|
|
177
|
+
"name": "restaker",
|
|
178
|
+
"type": "address"
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"indexed": true,
|
|
182
|
+
"internalType": "address",
|
|
183
|
+
"name": "treasury",
|
|
184
|
+
"type": "address"
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
"indexed": false,
|
|
188
|
+
"internalType": "uint256",
|
|
189
|
+
"name": "fee",
|
|
190
|
+
"type": "uint256"
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"indexed": false,
|
|
194
|
+
"internalType": "uint256",
|
|
195
|
+
"name": "totalClaimed",
|
|
196
|
+
"type": "uint256"
|
|
197
|
+
}
|
|
198
|
+
],
|
|
199
|
+
"name": "FeeClaimed",
|
|
175
200
|
"type": "event"
|
|
176
201
|
},
|
|
177
202
|
{
|
|
@@ -192,12 +217,18 @@
|
|
|
192
217
|
"inputs": [
|
|
193
218
|
{
|
|
194
219
|
"indexed": false,
|
|
195
|
-
"internalType": "
|
|
196
|
-
"name": "
|
|
197
|
-
"type": "
|
|
220
|
+
"internalType": "uint256",
|
|
221
|
+
"name": "prevValue",
|
|
222
|
+
"type": "uint256"
|
|
223
|
+
},
|
|
224
|
+
{
|
|
225
|
+
"indexed": false,
|
|
226
|
+
"internalType": "uint256",
|
|
227
|
+
"name": "newValue",
|
|
228
|
+
"type": "uint256"
|
|
198
229
|
}
|
|
199
230
|
],
|
|
200
|
-
"name": "
|
|
231
|
+
"name": "MaxTVLChanged",
|
|
201
232
|
"type": "event"
|
|
202
233
|
},
|
|
203
234
|
{
|
|
@@ -205,43 +236,37 @@
|
|
|
205
236
|
"inputs": [
|
|
206
237
|
{
|
|
207
238
|
"indexed": false,
|
|
208
|
-
"internalType": "
|
|
209
|
-
"name": "
|
|
210
|
-
"type": "
|
|
239
|
+
"internalType": "uint256",
|
|
240
|
+
"name": "prevValue",
|
|
241
|
+
"type": "uint256"
|
|
211
242
|
},
|
|
212
243
|
{
|
|
213
244
|
"indexed": false,
|
|
214
245
|
"internalType": "uint256",
|
|
215
|
-
"name": "
|
|
246
|
+
"name": "newValue",
|
|
216
247
|
"type": "uint256"
|
|
217
248
|
}
|
|
218
249
|
],
|
|
219
|
-
"name": "
|
|
250
|
+
"name": "MinStakeChanged",
|
|
220
251
|
"type": "event"
|
|
221
252
|
},
|
|
222
253
|
{
|
|
223
254
|
"anonymous": false,
|
|
224
255
|
"inputs": [
|
|
225
256
|
{
|
|
226
|
-
"indexed":
|
|
227
|
-
"internalType": "
|
|
228
|
-
"name": "
|
|
229
|
-
"type": "
|
|
230
|
-
},
|
|
231
|
-
{
|
|
232
|
-
"indexed": true,
|
|
233
|
-
"internalType": "bytes32",
|
|
234
|
-
"name": "previousAdminRole",
|
|
235
|
-
"type": "bytes32"
|
|
257
|
+
"indexed": false,
|
|
258
|
+
"internalType": "uint256",
|
|
259
|
+
"name": "prevValue",
|
|
260
|
+
"type": "uint256"
|
|
236
261
|
},
|
|
237
262
|
{
|
|
238
|
-
"indexed":
|
|
239
|
-
"internalType": "
|
|
240
|
-
"name": "
|
|
241
|
-
"type": "
|
|
263
|
+
"indexed": false,
|
|
264
|
+
"internalType": "uint256",
|
|
265
|
+
"name": "newValue",
|
|
266
|
+
"type": "uint256"
|
|
242
267
|
}
|
|
243
268
|
],
|
|
244
|
-
"name": "
|
|
269
|
+
"name": "MinUntakeChanged",
|
|
245
270
|
"type": "event"
|
|
246
271
|
},
|
|
247
272
|
{
|
|
@@ -249,24 +274,49 @@
|
|
|
249
274
|
"inputs": [
|
|
250
275
|
{
|
|
251
276
|
"indexed": true,
|
|
252
|
-
"internalType": "
|
|
253
|
-
"name": "
|
|
254
|
-
"type": "
|
|
277
|
+
"internalType": "address",
|
|
278
|
+
"name": "ownerAddress",
|
|
279
|
+
"type": "address"
|
|
255
280
|
},
|
|
256
281
|
{
|
|
257
282
|
"indexed": true,
|
|
258
283
|
"internalType": "address",
|
|
259
|
-
"name": "
|
|
284
|
+
"name": "receiverAddress",
|
|
260
285
|
"type": "address"
|
|
261
286
|
},
|
|
287
|
+
{
|
|
288
|
+
"indexed": false,
|
|
289
|
+
"internalType": "uint256",
|
|
290
|
+
"name": "amount",
|
|
291
|
+
"type": "uint256"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"indexed": false,
|
|
295
|
+
"internalType": "uint256",
|
|
296
|
+
"name": "shares",
|
|
297
|
+
"type": "uint256"
|
|
298
|
+
}
|
|
299
|
+
],
|
|
300
|
+
"name": "PendingUnstake",
|
|
301
|
+
"type": "event"
|
|
302
|
+
},
|
|
303
|
+
{
|
|
304
|
+
"anonymous": false,
|
|
305
|
+
"inputs": [
|
|
262
306
|
{
|
|
263
307
|
"indexed": true,
|
|
264
308
|
"internalType": "address",
|
|
265
309
|
"name": "sender",
|
|
266
310
|
"type": "address"
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
"indexed": false,
|
|
314
|
+
"internalType": "uint256",
|
|
315
|
+
"name": "amount",
|
|
316
|
+
"type": "uint256"
|
|
267
317
|
}
|
|
268
318
|
],
|
|
269
|
-
"name": "
|
|
319
|
+
"name": "Received",
|
|
270
320
|
"type": "event"
|
|
271
321
|
},
|
|
272
322
|
{
|
|
@@ -275,23 +325,11 @@
|
|
|
275
325
|
{
|
|
276
326
|
"indexed": true,
|
|
277
327
|
"internalType": "bytes32",
|
|
278
|
-
"name": "
|
|
328
|
+
"name": "code",
|
|
279
329
|
"type": "bytes32"
|
|
280
|
-
},
|
|
281
|
-
{
|
|
282
|
-
"indexed": true,
|
|
283
|
-
"internalType": "address",
|
|
284
|
-
"name": "account",
|
|
285
|
-
"type": "address"
|
|
286
|
-
},
|
|
287
|
-
{
|
|
288
|
-
"indexed": true,
|
|
289
|
-
"internalType": "address",
|
|
290
|
-
"name": "sender",
|
|
291
|
-
"type": "address"
|
|
292
330
|
}
|
|
293
331
|
],
|
|
294
|
-
"name": "
|
|
332
|
+
"name": "ReferralStake",
|
|
295
333
|
"type": "event"
|
|
296
334
|
},
|
|
297
335
|
{
|
|
@@ -300,29 +338,17 @@
|
|
|
300
338
|
{
|
|
301
339
|
"indexed": true,
|
|
302
340
|
"internalType": "string",
|
|
303
|
-
"name": "
|
|
304
|
-
"type": "string"
|
|
305
|
-
},
|
|
306
|
-
{
|
|
307
|
-
"indexed": false,
|
|
308
|
-
"internalType": "string",
|
|
309
|
-
"name": "actionName",
|
|
341
|
+
"name": "provider",
|
|
310
342
|
"type": "string"
|
|
311
343
|
},
|
|
312
|
-
{
|
|
313
|
-
"indexed": false,
|
|
314
|
-
"internalType": "bytes32",
|
|
315
|
-
"name": "updatedRole",
|
|
316
|
-
"type": "bytes32"
|
|
317
|
-
},
|
|
318
344
|
{
|
|
319
345
|
"indexed": false,
|
|
320
346
|
"internalType": "address",
|
|
321
|
-
"name": "
|
|
347
|
+
"name": "restaker",
|
|
322
348
|
"type": "address"
|
|
323
349
|
}
|
|
324
350
|
],
|
|
325
|
-
"name": "
|
|
351
|
+
"name": "RestakerAdded",
|
|
326
352
|
"type": "event"
|
|
327
353
|
},
|
|
328
354
|
{
|
|
@@ -330,162 +356,183 @@
|
|
|
330
356
|
"inputs": [
|
|
331
357
|
{
|
|
332
358
|
"indexed": true,
|
|
359
|
+
"internalType": "address",
|
|
360
|
+
"name": "staker",
|
|
361
|
+
"type": "address"
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"indexed": false,
|
|
333
365
|
"internalType": "uint256",
|
|
334
|
-
"name": "
|
|
366
|
+
"name": "amount",
|
|
335
367
|
"type": "uint256"
|
|
336
368
|
},
|
|
337
369
|
{
|
|
338
370
|
"indexed": false,
|
|
371
|
+
"internalType": "uint256",
|
|
372
|
+
"name": "shares",
|
|
373
|
+
"type": "uint256"
|
|
374
|
+
}
|
|
375
|
+
],
|
|
376
|
+
"name": "Staked",
|
|
377
|
+
"type": "event"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"anonymous": false,
|
|
381
|
+
"inputs": [
|
|
382
|
+
{
|
|
383
|
+
"indexed": true,
|
|
339
384
|
"internalType": "address",
|
|
340
|
-
"name": "
|
|
385
|
+
"name": "claimer",
|
|
341
386
|
"type": "address"
|
|
342
387
|
},
|
|
343
388
|
{
|
|
344
|
-
"indexed":
|
|
389
|
+
"indexed": true,
|
|
345
390
|
"internalType": "address",
|
|
346
|
-
"name": "
|
|
391
|
+
"name": "caller",
|
|
347
392
|
"type": "address"
|
|
348
393
|
},
|
|
349
394
|
{
|
|
350
395
|
"indexed": false,
|
|
351
396
|
"internalType": "uint256",
|
|
352
|
-
"name": "
|
|
397
|
+
"name": "value",
|
|
353
398
|
"type": "uint256"
|
|
354
|
-
}
|
|
399
|
+
}
|
|
400
|
+
],
|
|
401
|
+
"name": "UnstakeClaimed",
|
|
402
|
+
"type": "event"
|
|
403
|
+
},
|
|
404
|
+
{
|
|
405
|
+
"anonymous": false,
|
|
406
|
+
"inputs": [
|
|
355
407
|
{
|
|
356
|
-
"indexed":
|
|
408
|
+
"indexed": true,
|
|
357
409
|
"internalType": "address",
|
|
358
|
-
"name": "
|
|
410
|
+
"name": "from",
|
|
359
411
|
"type": "address"
|
|
360
412
|
},
|
|
361
413
|
{
|
|
362
|
-
"indexed":
|
|
414
|
+
"indexed": true,
|
|
363
415
|
"internalType": "address",
|
|
364
|
-
"name": "
|
|
416
|
+
"name": "to",
|
|
365
417
|
"type": "address"
|
|
366
418
|
},
|
|
367
419
|
{
|
|
368
420
|
"indexed": false,
|
|
369
421
|
"internalType": "uint256",
|
|
370
|
-
"name": "
|
|
422
|
+
"name": "amount",
|
|
371
423
|
"type": "uint256"
|
|
372
424
|
},
|
|
373
425
|
{
|
|
374
426
|
"indexed": false,
|
|
375
427
|
"internalType": "uint256",
|
|
376
|
-
"name": "
|
|
428
|
+
"name": "shares",
|
|
377
429
|
"type": "uint256"
|
|
378
430
|
}
|
|
379
431
|
],
|
|
380
|
-
"name": "
|
|
432
|
+
"name": "Unstaked",
|
|
381
433
|
"type": "event"
|
|
382
434
|
},
|
|
383
435
|
{
|
|
384
436
|
"anonymous": false,
|
|
385
437
|
"inputs": [
|
|
386
438
|
{
|
|
439
|
+
"components": [
|
|
440
|
+
{
|
|
441
|
+
"internalType": "address",
|
|
442
|
+
"name": "recipient",
|
|
443
|
+
"type": "address"
|
|
444
|
+
},
|
|
445
|
+
{
|
|
446
|
+
"internalType": "uint256",
|
|
447
|
+
"name": "amount",
|
|
448
|
+
"type": "uint256"
|
|
449
|
+
}
|
|
450
|
+
],
|
|
387
451
|
"indexed": false,
|
|
388
|
-
"internalType": "
|
|
389
|
-
"name": "
|
|
390
|
-
"type": "
|
|
391
|
-
}
|
|
452
|
+
"internalType": "struct IRestakingPool.Unstake[]",
|
|
453
|
+
"name": "unstakes",
|
|
454
|
+
"type": "tuple[]"
|
|
455
|
+
}
|
|
456
|
+
],
|
|
457
|
+
"name": "UnstakesDistributed",
|
|
458
|
+
"type": "event"
|
|
459
|
+
},
|
|
460
|
+
{
|
|
461
|
+
"inputs": [],
|
|
462
|
+
"name": "CALL_GAS_LIMIT",
|
|
463
|
+
"outputs": [
|
|
392
464
|
{
|
|
393
|
-
"indexed": false,
|
|
394
465
|
"internalType": "uint256",
|
|
395
|
-
"name": "
|
|
466
|
+
"name": "",
|
|
396
467
|
"type": "uint256"
|
|
397
468
|
}
|
|
398
469
|
],
|
|
399
|
-
"
|
|
400
|
-
"type": "
|
|
470
|
+
"stateMutability": "view",
|
|
471
|
+
"type": "function"
|
|
401
472
|
},
|
|
402
473
|
{
|
|
403
|
-
"anonymous": false,
|
|
404
474
|
"inputs": [
|
|
405
475
|
{
|
|
406
|
-
"
|
|
407
|
-
"
|
|
408
|
-
"
|
|
409
|
-
"type": "address"
|
|
476
|
+
"internalType": "string",
|
|
477
|
+
"name": "provider",
|
|
478
|
+
"type": "string"
|
|
410
479
|
}
|
|
411
480
|
],
|
|
412
|
-
"name": "
|
|
413
|
-
"
|
|
481
|
+
"name": "activateRestaking",
|
|
482
|
+
"outputs": [],
|
|
483
|
+
"stateMutability": "nonpayable",
|
|
484
|
+
"type": "function"
|
|
414
485
|
},
|
|
415
486
|
{
|
|
416
|
-
"anonymous": false,
|
|
417
487
|
"inputs": [
|
|
418
488
|
{
|
|
419
|
-
"
|
|
420
|
-
"
|
|
421
|
-
"
|
|
422
|
-
"type": "address"
|
|
489
|
+
"internalType": "string",
|
|
490
|
+
"name": "provider",
|
|
491
|
+
"type": "string"
|
|
423
492
|
}
|
|
424
493
|
],
|
|
425
|
-
"name": "
|
|
426
|
-
"
|
|
494
|
+
"name": "addRestaker",
|
|
495
|
+
"outputs": [],
|
|
496
|
+
"stateMutability": "nonpayable",
|
|
497
|
+
"type": "function"
|
|
427
498
|
},
|
|
428
499
|
{
|
|
429
500
|
"inputs": [],
|
|
430
|
-
"name": "
|
|
501
|
+
"name": "availableToStake",
|
|
431
502
|
"outputs": [
|
|
432
503
|
{
|
|
433
|
-
"internalType": "
|
|
504
|
+
"internalType": "uint256",
|
|
434
505
|
"name": "",
|
|
435
|
-
"type": "
|
|
506
|
+
"type": "uint256"
|
|
436
507
|
}
|
|
437
508
|
],
|
|
438
509
|
"stateMutability": "view",
|
|
439
510
|
"type": "function"
|
|
440
511
|
},
|
|
441
512
|
{
|
|
442
|
-
"inputs": [
|
|
443
|
-
"name": "REBALANCER_ADMIN_ROLE",
|
|
444
|
-
"outputs": [
|
|
513
|
+
"inputs": [
|
|
445
514
|
{
|
|
446
|
-
"internalType": "
|
|
447
|
-
"name": "",
|
|
448
|
-
"type": "
|
|
449
|
-
}
|
|
450
|
-
],
|
|
451
|
-
"stateMutability": "view",
|
|
452
|
-
"type": "function"
|
|
453
|
-
},
|
|
454
|
-
{
|
|
455
|
-
"inputs": [],
|
|
456
|
-
"name": "VERSION",
|
|
457
|
-
"outputs": [
|
|
515
|
+
"internalType": "string",
|
|
516
|
+
"name": "provider",
|
|
517
|
+
"type": "string"
|
|
518
|
+
},
|
|
458
519
|
{
|
|
459
|
-
"internalType": "
|
|
460
|
-
"name": "",
|
|
461
|
-
"type": "
|
|
462
|
-
}
|
|
463
|
-
],
|
|
464
|
-
"stateMutability": "view",
|
|
465
|
-
"type": "function"
|
|
466
|
-
},
|
|
467
|
-
{
|
|
468
|
-
"inputs": [
|
|
520
|
+
"internalType": "bytes[]",
|
|
521
|
+
"name": "pubkeys",
|
|
522
|
+
"type": "bytes[]"
|
|
523
|
+
},
|
|
469
524
|
{
|
|
470
|
-
"internalType": "
|
|
471
|
-
"name": "
|
|
472
|
-
"type": "
|
|
473
|
-
}
|
|
474
|
-
],
|
|
475
|
-
"name": "addAdmin",
|
|
476
|
-
"outputs": [],
|
|
477
|
-
"stateMutability": "nonpayable",
|
|
478
|
-
"type": "function"
|
|
479
|
-
},
|
|
480
|
-
{
|
|
481
|
-
"inputs": [
|
|
525
|
+
"internalType": "bytes[]",
|
|
526
|
+
"name": "signatures",
|
|
527
|
+
"type": "bytes[]"
|
|
528
|
+
},
|
|
482
529
|
{
|
|
483
|
-
"internalType": "
|
|
484
|
-
"name": "
|
|
485
|
-
"type": "
|
|
530
|
+
"internalType": "bytes32[]",
|
|
531
|
+
"name": "deposit_data_roots",
|
|
532
|
+
"type": "bytes32[]"
|
|
486
533
|
}
|
|
487
534
|
],
|
|
488
|
-
"name": "
|
|
535
|
+
"name": "batchDeposit",
|
|
489
536
|
"outputs": [],
|
|
490
537
|
"stateMutability": "nonpayable",
|
|
491
538
|
"type": "function"
|
|
@@ -493,17 +540,17 @@
|
|
|
493
540
|
{
|
|
494
541
|
"inputs": [
|
|
495
542
|
{
|
|
496
|
-
"internalType": "
|
|
497
|
-
"name": "
|
|
498
|
-
"type": "
|
|
543
|
+
"internalType": "string",
|
|
544
|
+
"name": "provider",
|
|
545
|
+
"type": "string"
|
|
499
546
|
},
|
|
500
547
|
{
|
|
501
|
-
"internalType": "uint256
|
|
502
|
-
"name": "
|
|
503
|
-
"type": "uint256
|
|
548
|
+
"internalType": "uint256",
|
|
549
|
+
"name": "fee",
|
|
550
|
+
"type": "uint256"
|
|
504
551
|
}
|
|
505
552
|
],
|
|
506
|
-
"name": "
|
|
553
|
+
"name": "claimRestaker",
|
|
507
554
|
"outputs": [],
|
|
508
555
|
"stateMutability": "nonpayable",
|
|
509
556
|
"type": "function"
|
|
@@ -512,16 +559,11 @@
|
|
|
512
559
|
"inputs": [
|
|
513
560
|
{
|
|
514
561
|
"internalType": "address",
|
|
515
|
-
"name": "
|
|
562
|
+
"name": "claimer",
|
|
516
563
|
"type": "address"
|
|
517
|
-
},
|
|
518
|
-
{
|
|
519
|
-
"internalType": "uint256",
|
|
520
|
-
"name": "_amount",
|
|
521
|
-
"type": "uint256"
|
|
522
564
|
}
|
|
523
565
|
],
|
|
524
|
-
"name": "
|
|
566
|
+
"name": "claimUnstake",
|
|
525
567
|
"outputs": [],
|
|
526
568
|
"stateMutability": "nonpayable",
|
|
527
569
|
"type": "function"
|
|
@@ -529,12 +571,12 @@
|
|
|
529
571
|
{
|
|
530
572
|
"inputs": [
|
|
531
573
|
{
|
|
532
|
-
"internalType": "
|
|
533
|
-
"name": "",
|
|
534
|
-
"type": "
|
|
574
|
+
"internalType": "address",
|
|
575
|
+
"name": "claimer",
|
|
576
|
+
"type": "address"
|
|
535
577
|
}
|
|
536
578
|
],
|
|
537
|
-
"name": "
|
|
579
|
+
"name": "claimableOf",
|
|
538
580
|
"outputs": [
|
|
539
581
|
{
|
|
540
582
|
"internalType": "uint256",
|
|
@@ -547,60 +589,84 @@
|
|
|
547
589
|
},
|
|
548
590
|
{
|
|
549
591
|
"inputs": [],
|
|
550
|
-
"name": "
|
|
592
|
+
"name": "config",
|
|
551
593
|
"outputs": [
|
|
552
594
|
{
|
|
553
|
-
"internalType": "
|
|
554
|
-
"name": "
|
|
555
|
-
"type": "
|
|
556
|
-
}
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
595
|
+
"internalType": "contract IProtocolConfig",
|
|
596
|
+
"name": "",
|
|
597
|
+
"type": "address"
|
|
598
|
+
}
|
|
599
|
+
],
|
|
600
|
+
"stateMutability": "view",
|
|
601
|
+
"type": "function"
|
|
602
|
+
},
|
|
603
|
+
{
|
|
604
|
+
"inputs": [
|
|
562
605
|
{
|
|
563
606
|
"internalType": "string",
|
|
564
|
-
"name": "
|
|
607
|
+
"name": "provider",
|
|
565
608
|
"type": "string"
|
|
566
609
|
},
|
|
567
|
-
{
|
|
568
|
-
"internalType": "uint256",
|
|
569
|
-
"name": "chainId",
|
|
570
|
-
"type": "uint256"
|
|
571
|
-
},
|
|
572
610
|
{
|
|
573
611
|
"internalType": "address",
|
|
574
|
-
"name": "
|
|
612
|
+
"name": "elOperator",
|
|
575
613
|
"type": "address"
|
|
576
614
|
},
|
|
577
615
|
{
|
|
578
|
-
"
|
|
579
|
-
|
|
580
|
-
|
|
616
|
+
"components": [
|
|
617
|
+
{
|
|
618
|
+
"internalType": "bytes",
|
|
619
|
+
"name": "signature",
|
|
620
|
+
"type": "bytes"
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"internalType": "uint256",
|
|
624
|
+
"name": "expiry",
|
|
625
|
+
"type": "uint256"
|
|
626
|
+
}
|
|
627
|
+
],
|
|
628
|
+
"internalType": "struct ISignatureUtils.SignatureWithExpiry",
|
|
629
|
+
"name": "approverSignatureAndExpiry",
|
|
630
|
+
"type": "tuple"
|
|
581
631
|
},
|
|
582
632
|
{
|
|
583
|
-
"internalType": "
|
|
584
|
-
"name": "
|
|
585
|
-
"type": "
|
|
633
|
+
"internalType": "bytes32",
|
|
634
|
+
"name": "approverSalt",
|
|
635
|
+
"type": "bytes32"
|
|
586
636
|
}
|
|
587
637
|
],
|
|
588
|
-
"
|
|
638
|
+
"name": "delegateTo",
|
|
639
|
+
"outputs": [],
|
|
640
|
+
"stateMutability": "nonpayable",
|
|
589
641
|
"type": "function"
|
|
590
642
|
},
|
|
591
643
|
{
|
|
592
|
-
"inputs": [
|
|
644
|
+
"inputs": [],
|
|
645
|
+
"name": "distributeUnstakes",
|
|
646
|
+
"outputs": [],
|
|
647
|
+
"stateMutability": "nonpayable",
|
|
648
|
+
"type": "function"
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"inputs": [],
|
|
652
|
+
"name": "getMinStake",
|
|
653
|
+
"outputs": [
|
|
593
654
|
{
|
|
594
655
|
"internalType": "uint256",
|
|
595
|
-
"name": "",
|
|
656
|
+
"name": "amount",
|
|
596
657
|
"type": "uint256"
|
|
597
658
|
}
|
|
598
659
|
],
|
|
599
|
-
"
|
|
660
|
+
"stateMutability": "view",
|
|
661
|
+
"type": "function"
|
|
662
|
+
},
|
|
663
|
+
{
|
|
664
|
+
"inputs": [],
|
|
665
|
+
"name": "getMinUnstake",
|
|
600
666
|
"outputs": [
|
|
601
667
|
{
|
|
602
668
|
"internalType": "uint256",
|
|
603
|
-
"name": "",
|
|
669
|
+
"name": "shares",
|
|
604
670
|
"type": "uint256"
|
|
605
671
|
}
|
|
606
672
|
],
|
|
@@ -608,19 +674,13 @@
|
|
|
608
674
|
"type": "function"
|
|
609
675
|
},
|
|
610
676
|
{
|
|
611
|
-
"inputs": [
|
|
612
|
-
|
|
613
|
-
"internalType": "bytes32",
|
|
614
|
-
"name": "role",
|
|
615
|
-
"type": "bytes32"
|
|
616
|
-
}
|
|
617
|
-
],
|
|
618
|
-
"name": "getRoleAdmin",
|
|
677
|
+
"inputs": [],
|
|
678
|
+
"name": "getPending",
|
|
619
679
|
"outputs": [
|
|
620
680
|
{
|
|
621
|
-
"internalType": "
|
|
681
|
+
"internalType": "uint256",
|
|
622
682
|
"name": "",
|
|
623
|
-
"type": "
|
|
683
|
+
"type": "uint256"
|
|
624
684
|
}
|
|
625
685
|
],
|
|
626
686
|
"stateMutability": "view",
|
|
@@ -629,17 +689,12 @@
|
|
|
629
689
|
{
|
|
630
690
|
"inputs": [
|
|
631
691
|
{
|
|
632
|
-
"internalType": "
|
|
633
|
-
"name": "
|
|
634
|
-
"type": "
|
|
635
|
-
},
|
|
636
|
-
{
|
|
637
|
-
"internalType": "uint256",
|
|
638
|
-
"name": "index",
|
|
639
|
-
"type": "uint256"
|
|
692
|
+
"internalType": "string",
|
|
693
|
+
"name": "provider",
|
|
694
|
+
"type": "string"
|
|
640
695
|
}
|
|
641
696
|
],
|
|
642
|
-
"name": "
|
|
697
|
+
"name": "getRestaker",
|
|
643
698
|
"outputs": [
|
|
644
699
|
{
|
|
645
700
|
"internalType": "address",
|
|
@@ -651,14 +706,8 @@
|
|
|
651
706
|
"type": "function"
|
|
652
707
|
},
|
|
653
708
|
{
|
|
654
|
-
"inputs": [
|
|
655
|
-
|
|
656
|
-
"internalType": "bytes32",
|
|
657
|
-
"name": "role",
|
|
658
|
-
"type": "bytes32"
|
|
659
|
-
}
|
|
660
|
-
],
|
|
661
|
-
"name": "getRoleMemberCount",
|
|
709
|
+
"inputs": [],
|
|
710
|
+
"name": "getTotalClaimable",
|
|
662
711
|
"outputs": [
|
|
663
712
|
{
|
|
664
713
|
"internalType": "uint256",
|
|
@@ -670,79 +719,88 @@
|
|
|
670
719
|
"type": "function"
|
|
671
720
|
},
|
|
672
721
|
{
|
|
673
|
-
"inputs": [
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
"name": "role",
|
|
677
|
-
"type": "bytes32"
|
|
678
|
-
},
|
|
722
|
+
"inputs": [],
|
|
723
|
+
"name": "getTotalPendingUnstakes",
|
|
724
|
+
"outputs": [
|
|
679
725
|
{
|
|
680
|
-
"internalType": "
|
|
681
|
-
"name": "
|
|
682
|
-
"type": "
|
|
726
|
+
"internalType": "uint256",
|
|
727
|
+
"name": "",
|
|
728
|
+
"type": "uint256"
|
|
683
729
|
}
|
|
684
730
|
],
|
|
685
|
-
"
|
|
686
|
-
"outputs": [],
|
|
687
|
-
"stateMutability": "nonpayable",
|
|
731
|
+
"stateMutability": "view",
|
|
688
732
|
"type": "function"
|
|
689
733
|
},
|
|
690
734
|
{
|
|
691
735
|
"inputs": [
|
|
692
|
-
{
|
|
693
|
-
"internalType": "bytes32",
|
|
694
|
-
"name": "role",
|
|
695
|
-
"type": "bytes32"
|
|
696
|
-
},
|
|
697
736
|
{
|
|
698
737
|
"internalType": "address",
|
|
699
|
-
"name": "
|
|
738
|
+
"name": "recipient",
|
|
700
739
|
"type": "address"
|
|
701
740
|
}
|
|
702
741
|
],
|
|
703
|
-
"name": "
|
|
742
|
+
"name": "getTotalUnstakesOf",
|
|
704
743
|
"outputs": [
|
|
705
744
|
{
|
|
706
|
-
"internalType": "
|
|
745
|
+
"internalType": "uint256",
|
|
707
746
|
"name": "",
|
|
708
|
-
"type": "
|
|
747
|
+
"type": "uint256"
|
|
709
748
|
}
|
|
710
749
|
],
|
|
711
750
|
"stateMutability": "view",
|
|
712
751
|
"type": "function"
|
|
713
752
|
},
|
|
714
753
|
{
|
|
715
|
-
"inputs": [
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
"name": "_swapSigner",
|
|
719
|
-
"type": "address"
|
|
720
|
-
},
|
|
754
|
+
"inputs": [],
|
|
755
|
+
"name": "getUnstakes",
|
|
756
|
+
"outputs": [
|
|
721
757
|
{
|
|
722
|
-
"
|
|
723
|
-
|
|
724
|
-
|
|
758
|
+
"components": [
|
|
759
|
+
{
|
|
760
|
+
"internalType": "address",
|
|
761
|
+
"name": "recipient",
|
|
762
|
+
"type": "address"
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"internalType": "uint256",
|
|
766
|
+
"name": "amount",
|
|
767
|
+
"type": "uint256"
|
|
768
|
+
}
|
|
769
|
+
],
|
|
770
|
+
"internalType": "struct IRestakingPool.Unstake[]",
|
|
771
|
+
"name": "unstakes",
|
|
772
|
+
"type": "tuple[]"
|
|
725
773
|
}
|
|
726
774
|
],
|
|
727
|
-
"
|
|
728
|
-
"outputs": [],
|
|
729
|
-
"stateMutability": "nonpayable",
|
|
775
|
+
"stateMutability": "view",
|
|
730
776
|
"type": "function"
|
|
731
777
|
},
|
|
732
778
|
{
|
|
733
779
|
"inputs": [
|
|
734
780
|
{
|
|
735
781
|
"internalType": "address",
|
|
736
|
-
"name": "
|
|
782
|
+
"name": "recipient",
|
|
737
783
|
"type": "address"
|
|
738
784
|
}
|
|
739
785
|
],
|
|
740
|
-
"name": "
|
|
786
|
+
"name": "getUnstakesOf",
|
|
741
787
|
"outputs": [
|
|
742
788
|
{
|
|
743
|
-
"
|
|
744
|
-
|
|
745
|
-
|
|
789
|
+
"components": [
|
|
790
|
+
{
|
|
791
|
+
"internalType": "address",
|
|
792
|
+
"name": "recipient",
|
|
793
|
+
"type": "address"
|
|
794
|
+
},
|
|
795
|
+
{
|
|
796
|
+
"internalType": "uint256",
|
|
797
|
+
"name": "amount",
|
|
798
|
+
"type": "uint256"
|
|
799
|
+
}
|
|
800
|
+
],
|
|
801
|
+
"internalType": "struct IRestakingPool.Unstake[]",
|
|
802
|
+
"name": "unstakes",
|
|
803
|
+
"type": "tuple[]"
|
|
746
804
|
}
|
|
747
805
|
],
|
|
748
806
|
"stateMutability": "view",
|
|
@@ -752,11 +810,11 @@
|
|
|
752
810
|
"inputs": [
|
|
753
811
|
{
|
|
754
812
|
"internalType": "address",
|
|
755
|
-
"name": "
|
|
813
|
+
"name": "claimer",
|
|
756
814
|
"type": "address"
|
|
757
815
|
}
|
|
758
816
|
],
|
|
759
|
-
"name": "
|
|
817
|
+
"name": "hasClaimable",
|
|
760
818
|
"outputs": [
|
|
761
819
|
{
|
|
762
820
|
"internalType": "bool",
|
|
@@ -770,121 +828,84 @@
|
|
|
770
828
|
{
|
|
771
829
|
"inputs": [
|
|
772
830
|
{
|
|
773
|
-
"internalType": "
|
|
774
|
-
"name": "
|
|
775
|
-
"type": "
|
|
831
|
+
"internalType": "contract IProtocolConfig",
|
|
832
|
+
"name": "config",
|
|
833
|
+
"type": "address"
|
|
776
834
|
},
|
|
777
835
|
{
|
|
778
|
-
"internalType": "
|
|
779
|
-
"name": "
|
|
780
|
-
"type": "
|
|
781
|
-
}
|
|
782
|
-
],
|
|
783
|
-
"name": "isValidSignature",
|
|
784
|
-
"outputs": [
|
|
836
|
+
"internalType": "uint32",
|
|
837
|
+
"name": "distributeGasLimit",
|
|
838
|
+
"type": "uint32"
|
|
839
|
+
},
|
|
785
840
|
{
|
|
786
|
-
"internalType": "
|
|
787
|
-
"name": "",
|
|
788
|
-
"type": "
|
|
841
|
+
"internalType": "uint256",
|
|
842
|
+
"name": "maxTVL",
|
|
843
|
+
"type": "uint256"
|
|
789
844
|
}
|
|
790
845
|
],
|
|
791
|
-
"
|
|
846
|
+
"name": "initialize",
|
|
847
|
+
"outputs": [],
|
|
848
|
+
"stateMutability": "nonpayable",
|
|
792
849
|
"type": "function"
|
|
793
850
|
},
|
|
794
851
|
{
|
|
795
852
|
"inputs": [
|
|
796
853
|
{
|
|
797
|
-
"
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
"name": "nonceAndMeta",
|
|
801
|
-
"type": "uint256"
|
|
802
|
-
},
|
|
803
|
-
{
|
|
804
|
-
"internalType": "uint128",
|
|
805
|
-
"name": "expiry",
|
|
806
|
-
"type": "uint128"
|
|
807
|
-
},
|
|
808
|
-
{
|
|
809
|
-
"internalType": "address",
|
|
810
|
-
"name": "makerAsset",
|
|
811
|
-
"type": "address"
|
|
812
|
-
},
|
|
813
|
-
{
|
|
814
|
-
"internalType": "address",
|
|
815
|
-
"name": "takerAsset",
|
|
816
|
-
"type": "address"
|
|
817
|
-
},
|
|
818
|
-
{
|
|
819
|
-
"internalType": "address",
|
|
820
|
-
"name": "maker",
|
|
821
|
-
"type": "address"
|
|
822
|
-
},
|
|
823
|
-
{
|
|
824
|
-
"internalType": "address",
|
|
825
|
-
"name": "taker",
|
|
826
|
-
"type": "address"
|
|
827
|
-
},
|
|
828
|
-
{
|
|
829
|
-
"internalType": "uint256",
|
|
830
|
-
"name": "makerAmount",
|
|
831
|
-
"type": "uint256"
|
|
832
|
-
},
|
|
833
|
-
{
|
|
834
|
-
"internalType": "uint256",
|
|
835
|
-
"name": "takerAmount",
|
|
836
|
-
"type": "uint256"
|
|
837
|
-
}
|
|
838
|
-
],
|
|
839
|
-
"internalType": "struct CablesRFQ.Order",
|
|
840
|
-
"name": "_order",
|
|
841
|
-
"type": "tuple"
|
|
854
|
+
"internalType": "string",
|
|
855
|
+
"name": "provider",
|
|
856
|
+
"type": "string"
|
|
842
857
|
},
|
|
843
858
|
{
|
|
844
|
-
"internalType": "
|
|
845
|
-
"name": "
|
|
846
|
-
"type": "
|
|
859
|
+
"internalType": "contract IERC20[]",
|
|
860
|
+
"name": "tokenList",
|
|
861
|
+
"type": "address[]"
|
|
847
862
|
},
|
|
848
863
|
{
|
|
849
|
-
"internalType": "uint256",
|
|
850
|
-
"name": "
|
|
851
|
-
"type": "uint256"
|
|
864
|
+
"internalType": "uint256[]",
|
|
865
|
+
"name": "amountsToWithdraw",
|
|
866
|
+
"type": "uint256[]"
|
|
852
867
|
}
|
|
853
868
|
],
|
|
854
|
-
"name": "
|
|
869
|
+
"name": "recoverTokens",
|
|
855
870
|
"outputs": [],
|
|
856
|
-
"stateMutability": "
|
|
871
|
+
"stateMutability": "nonpayable",
|
|
857
872
|
"type": "function"
|
|
858
873
|
},
|
|
859
874
|
{
|
|
860
|
-
"inputs": [
|
|
861
|
-
|
|
875
|
+
"inputs": [
|
|
876
|
+
{
|
|
877
|
+
"internalType": "uint32",
|
|
878
|
+
"name": "newValue",
|
|
879
|
+
"type": "uint32"
|
|
880
|
+
}
|
|
881
|
+
],
|
|
882
|
+
"name": "setDistributeGasLimit",
|
|
862
883
|
"outputs": [],
|
|
863
884
|
"stateMutability": "nonpayable",
|
|
864
885
|
"type": "function"
|
|
865
886
|
},
|
|
866
887
|
{
|
|
867
|
-
"inputs": [
|
|
868
|
-
"name": "paused",
|
|
869
|
-
"outputs": [
|
|
888
|
+
"inputs": [
|
|
870
889
|
{
|
|
871
|
-
"internalType": "
|
|
872
|
-
"name": "",
|
|
873
|
-
"type": "
|
|
890
|
+
"internalType": "uint256",
|
|
891
|
+
"name": "newValue",
|
|
892
|
+
"type": "uint256"
|
|
874
893
|
}
|
|
875
894
|
],
|
|
876
|
-
"
|
|
895
|
+
"name": "setMaxTVL",
|
|
896
|
+
"outputs": [],
|
|
897
|
+
"stateMutability": "nonpayable",
|
|
877
898
|
"type": "function"
|
|
878
899
|
},
|
|
879
900
|
{
|
|
880
901
|
"inputs": [
|
|
881
902
|
{
|
|
882
|
-
"internalType": "
|
|
883
|
-
"name": "
|
|
884
|
-
"type": "
|
|
903
|
+
"internalType": "uint256",
|
|
904
|
+
"name": "newValue",
|
|
905
|
+
"type": "uint256"
|
|
885
906
|
}
|
|
886
907
|
],
|
|
887
|
-
"name": "
|
|
908
|
+
"name": "setMinStake",
|
|
888
909
|
"outputs": [],
|
|
889
910
|
"stateMutability": "nonpayable",
|
|
890
911
|
"type": "function"
|
|
@@ -892,48 +913,45 @@
|
|
|
892
913
|
{
|
|
893
914
|
"inputs": [
|
|
894
915
|
{
|
|
895
|
-
"internalType": "
|
|
896
|
-
"name": "
|
|
897
|
-
"type": "
|
|
916
|
+
"internalType": "uint256",
|
|
917
|
+
"name": "newValue",
|
|
918
|
+
"type": "uint256"
|
|
898
919
|
}
|
|
899
920
|
],
|
|
900
|
-
"name": "
|
|
921
|
+
"name": "setMinUnstake",
|
|
901
922
|
"outputs": [],
|
|
902
923
|
"stateMutability": "nonpayable",
|
|
903
924
|
"type": "function"
|
|
904
925
|
},
|
|
926
|
+
{
|
|
927
|
+
"inputs": [],
|
|
928
|
+
"name": "stake",
|
|
929
|
+
"outputs": [],
|
|
930
|
+
"stateMutability": "payable",
|
|
931
|
+
"type": "function"
|
|
932
|
+
},
|
|
905
933
|
{
|
|
906
934
|
"inputs": [
|
|
907
935
|
{
|
|
908
936
|
"internalType": "bytes32",
|
|
909
|
-
"name": "
|
|
937
|
+
"name": "code",
|
|
910
938
|
"type": "bytes32"
|
|
911
|
-
},
|
|
912
|
-
{
|
|
913
|
-
"internalType": "address",
|
|
914
|
-
"name": "callerConfirmation",
|
|
915
|
-
"type": "address"
|
|
916
939
|
}
|
|
917
940
|
],
|
|
918
|
-
"name": "
|
|
941
|
+
"name": "stake",
|
|
919
942
|
"outputs": [],
|
|
920
|
-
"stateMutability": "
|
|
943
|
+
"stateMutability": "payable",
|
|
921
944
|
"type": "function"
|
|
922
945
|
},
|
|
923
946
|
{
|
|
924
947
|
"inputs": [
|
|
925
948
|
{
|
|
926
|
-
"internalType": "
|
|
927
|
-
"name": "
|
|
928
|
-
"type": "
|
|
929
|
-
},
|
|
930
|
-
{
|
|
931
|
-
"internalType": "address",
|
|
932
|
-
"name": "account",
|
|
933
|
-
"type": "address"
|
|
949
|
+
"internalType": "string",
|
|
950
|
+
"name": "provider",
|
|
951
|
+
"type": "string"
|
|
934
952
|
}
|
|
935
953
|
],
|
|
936
|
-
"name": "
|
|
954
|
+
"name": "undelegate",
|
|
937
955
|
"outputs": [],
|
|
938
956
|
"stateMutability": "nonpayable",
|
|
939
957
|
"type": "function"
|
|
@@ -942,140 +960,101 @@
|
|
|
942
960
|
"inputs": [
|
|
943
961
|
{
|
|
944
962
|
"internalType": "address",
|
|
945
|
-
"name": "
|
|
963
|
+
"name": "to",
|
|
946
964
|
"type": "address"
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
"internalType": "uint256",
|
|
968
|
+
"name": "shares",
|
|
969
|
+
"type": "uint256"
|
|
947
970
|
}
|
|
948
971
|
],
|
|
949
|
-
"name": "
|
|
972
|
+
"name": "unstake",
|
|
950
973
|
"outputs": [],
|
|
951
974
|
"stateMutability": "nonpayable",
|
|
952
975
|
"type": "function"
|
|
953
976
|
},
|
|
954
977
|
{
|
|
955
978
|
"inputs": [
|
|
979
|
+
{
|
|
980
|
+
"internalType": "string",
|
|
981
|
+
"name": "provider",
|
|
982
|
+
"type": "string"
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
"internalType": "uint64",
|
|
986
|
+
"name": "oracleTimestamp",
|
|
987
|
+
"type": "uint64"
|
|
988
|
+
},
|
|
956
989
|
{
|
|
957
990
|
"components": [
|
|
958
991
|
{
|
|
959
|
-
"internalType": "
|
|
960
|
-
"name": "
|
|
961
|
-
"type": "
|
|
962
|
-
},
|
|
963
|
-
{
|
|
964
|
-
"internalType": "uint128",
|
|
965
|
-
"name": "expiry",
|
|
966
|
-
"type": "uint128"
|
|
967
|
-
},
|
|
968
|
-
{
|
|
969
|
-
"internalType": "address",
|
|
970
|
-
"name": "makerAsset",
|
|
971
|
-
"type": "address"
|
|
972
|
-
},
|
|
973
|
-
{
|
|
974
|
-
"internalType": "address",
|
|
975
|
-
"name": "takerAsset",
|
|
976
|
-
"type": "address"
|
|
977
|
-
},
|
|
978
|
-
{
|
|
979
|
-
"internalType": "address",
|
|
980
|
-
"name": "maker",
|
|
981
|
-
"type": "address"
|
|
982
|
-
},
|
|
983
|
-
{
|
|
984
|
-
"internalType": "address",
|
|
985
|
-
"name": "taker",
|
|
986
|
-
"type": "address"
|
|
987
|
-
},
|
|
988
|
-
{
|
|
989
|
-
"internalType": "uint256",
|
|
990
|
-
"name": "makerAmount",
|
|
991
|
-
"type": "uint256"
|
|
992
|
+
"internalType": "bytes32",
|
|
993
|
+
"name": "beaconStateRoot",
|
|
994
|
+
"type": "bytes32"
|
|
992
995
|
},
|
|
993
996
|
{
|
|
994
|
-
"internalType": "
|
|
995
|
-
"name": "
|
|
996
|
-
"type": "
|
|
997
|
+
"internalType": "bytes",
|
|
998
|
+
"name": "proof",
|
|
999
|
+
"type": "bytes"
|
|
997
1000
|
}
|
|
998
1001
|
],
|
|
999
|
-
"internalType": "struct
|
|
1000
|
-
"name": "
|
|
1002
|
+
"internalType": "struct BeaconChainProofs.StateRootProof",
|
|
1003
|
+
"name": "stateRootProof",
|
|
1001
1004
|
"type": "tuple"
|
|
1002
1005
|
},
|
|
1003
1006
|
{
|
|
1004
|
-
"internalType": "
|
|
1005
|
-
"name": "
|
|
1006
|
-
"type": "
|
|
1007
|
-
}
|
|
1008
|
-
],
|
|
1009
|
-
"name": "simpleSwap",
|
|
1010
|
-
"outputs": [],
|
|
1011
|
-
"stateMutability": "payable",
|
|
1012
|
-
"type": "function"
|
|
1013
|
-
},
|
|
1014
|
-
{
|
|
1015
|
-
"inputs": [
|
|
1007
|
+
"internalType": "uint40[]",
|
|
1008
|
+
"name": "validatorIndices",
|
|
1009
|
+
"type": "uint40[]"
|
|
1010
|
+
},
|
|
1016
1011
|
{
|
|
1017
|
-
"internalType": "
|
|
1018
|
-
"name": "
|
|
1019
|
-
"type": "
|
|
1020
|
-
}
|
|
1021
|
-
],
|
|
1022
|
-
"name": "supportsInterface",
|
|
1023
|
-
"outputs": [
|
|
1012
|
+
"internalType": "bytes[]",
|
|
1013
|
+
"name": "validatorFieldsProofs",
|
|
1014
|
+
"type": "bytes[]"
|
|
1015
|
+
},
|
|
1024
1016
|
{
|
|
1025
|
-
"internalType": "
|
|
1026
|
-
"name": "",
|
|
1027
|
-
"type": "
|
|
1017
|
+
"internalType": "bytes32[][]",
|
|
1018
|
+
"name": "validatorFields",
|
|
1019
|
+
"type": "bytes32[][]"
|
|
1028
1020
|
}
|
|
1029
1021
|
],
|
|
1030
|
-
"
|
|
1022
|
+
"name": "verifyWithdrawalCredentials",
|
|
1023
|
+
"outputs": [],
|
|
1024
|
+
"stateMutability": "nonpayable",
|
|
1031
1025
|
"type": "function"
|
|
1032
1026
|
},
|
|
1033
1027
|
{
|
|
1034
|
-
"inputs": [
|
|
1035
|
-
"name": "swapSigner",
|
|
1036
|
-
"outputs": [
|
|
1028
|
+
"inputs": [
|
|
1037
1029
|
{
|
|
1038
|
-
"internalType": "
|
|
1039
|
-
"name": "",
|
|
1040
|
-
"type": "
|
|
1030
|
+
"internalType": "string",
|
|
1031
|
+
"name": "provider",
|
|
1032
|
+
"type": "string"
|
|
1041
1033
|
}
|
|
1042
1034
|
],
|
|
1043
|
-
"
|
|
1044
|
-
"type": "function"
|
|
1045
|
-
},
|
|
1046
|
-
{
|
|
1047
|
-
"inputs": [],
|
|
1048
|
-
"name": "unpause",
|
|
1035
|
+
"name": "withdrawBeforeRestaking",
|
|
1049
1036
|
"outputs": [],
|
|
1050
1037
|
"stateMutability": "nonpayable",
|
|
1051
1038
|
"type": "function"
|
|
1052
1039
|
},
|
|
1053
1040
|
{
|
|
1054
1041
|
"inputs": [
|
|
1042
|
+
{
|
|
1043
|
+
"internalType": "string",
|
|
1044
|
+
"name": "provider",
|
|
1045
|
+
"type": "string"
|
|
1046
|
+
},
|
|
1055
1047
|
{
|
|
1056
1048
|
"internalType": "uint256",
|
|
1057
|
-
"name": "
|
|
1049
|
+
"name": "amountToWithdraw",
|
|
1058
1050
|
"type": "uint256"
|
|
1059
1051
|
}
|
|
1060
1052
|
],
|
|
1061
|
-
"name": "
|
|
1053
|
+
"name": "withdrawNonBeaconChainETHBalanceWei",
|
|
1062
1054
|
"outputs": [],
|
|
1063
1055
|
"stateMutability": "nonpayable",
|
|
1064
1056
|
"type": "function"
|
|
1065
1057
|
},
|
|
1066
|
-
{
|
|
1067
|
-
"inputs": [],
|
|
1068
|
-
"name": "wethAddress",
|
|
1069
|
-
"outputs": [
|
|
1070
|
-
{
|
|
1071
|
-
"internalType": "address",
|
|
1072
|
-
"name": "",
|
|
1073
|
-
"type": "address"
|
|
1074
|
-
}
|
|
1075
|
-
],
|
|
1076
|
-
"stateMutability": "view",
|
|
1077
|
-
"type": "function"
|
|
1078
|
-
},
|
|
1079
1058
|
{
|
|
1080
1059
|
"stateMutability": "payable",
|
|
1081
1060
|
"type": "receive"
|