@lidofinance/lsv-cli 1.0.0 → 1.1.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/dist/abi/AccessControlConfirmable.d.ts +3 -2
- package/dist/abi/AccessControlConfirmable.js +3 -1
- package/dist/abi/AccessControlConfirmable.js.map +1 -1
- package/dist/abi/Dashboard.d.ts +64 -27
- package/dist/abi/Dashboard.js +38 -29
- package/dist/abi/Dashboard.js.map +1 -1
- package/dist/abi/LazyOracle.d.ts +44 -3
- package/dist/abi/LazyOracle.js +57 -3
- package/dist/abi/LazyOracle.js.map +1 -1
- package/dist/abi/OperatorGrid.d.ts +28 -0
- package/dist/abi/PredepositGuarantee.d.ts +28 -0
- package/dist/abi/StakingVault.d.ts +56 -0
- package/dist/abi/StakingVault.js +2 -0
- package/dist/abi/StakingVault.js.map +1 -1
- package/dist/abi/VaultFactory.d.ts +32 -4
- package/dist/abi/VaultHub.d.ts +38 -0
- package/dist/abi/VaultHub.js +13 -0
- package/dist/abi/VaultHub.js.map +1 -1
- package/dist/abi/VaultViewer.d.ts +144 -196
- package/dist/abi/VaultViewer.js +188 -257
- package/dist/abi/VaultViewer.js.map +1 -1
- package/dist/abi/defi-wrapper/Distributor.d.ts +448 -0
- package/dist/abi/defi-wrapper/Distributor.js +583 -0
- package/dist/abi/defi-wrapper/Distributor.js.map +1 -0
- package/dist/abi/defi-wrapper/Factory.d.ts +761 -0
- package/dist/abi/defi-wrapper/Factory.js +975 -0
- package/dist/abi/defi-wrapper/Factory.js.map +1 -0
- package/dist/abi/defi-wrapper/StvPool.d.ts +1283 -0
- package/dist/abi/defi-wrapper/StvPool.js +1680 -0
- package/dist/abi/defi-wrapper/StvPool.js.map +1 -0
- package/dist/abi/defi-wrapper/StvStETHPool.d.ts +1755 -0
- package/dist/abi/defi-wrapper/StvStETHPool.js +2301 -0
- package/dist/abi/defi-wrapper/StvStETHPool.js.map +1 -0
- package/dist/abi/defi-wrapper/StvStrategyPool.d.ts +1769 -0
- package/dist/abi/defi-wrapper/StvStrategyPool.js +2319 -0
- package/dist/abi/defi-wrapper/StvStrategyPool.js.map +1 -0
- package/dist/abi/defi-wrapper/WithdrawalQueue.d.ts +1131 -0
- package/dist/abi/defi-wrapper/WithdrawalQueue.js +1472 -0
- package/dist/abi/defi-wrapper/WithdrawalQueue.js.map +1 -0
- package/dist/abi/defi-wrapper/index.d.ts +6 -0
- package/dist/abi/defi-wrapper/index.js +7 -0
- package/dist/abi/defi-wrapper/index.js.map +1 -0
- package/dist/configs/utils.d.ts +1 -0
- package/dist/configs/utils.js +4 -0
- package/dist/configs/utils.js.map +1 -1
- package/dist/contracts/dashboard-impl.d.ts +4 -0
- package/dist/contracts/dashboard-impl.js +16 -0
- package/dist/contracts/dashboard-impl.js.map +1 -0
- package/dist/contracts/defi-wrapper/distributor.d.ts +4 -0
- package/dist/contracts/defi-wrapper/distributor.js +11 -0
- package/dist/contracts/defi-wrapper/distributor.js.map +1 -0
- package/dist/contracts/defi-wrapper/factory.d.ts +4 -0
- package/dist/contracts/defi-wrapper/factory.js +11 -0
- package/dist/contracts/defi-wrapper/factory.js.map +1 -0
- package/dist/contracts/defi-wrapper/index.d.ts +6 -0
- package/dist/contracts/defi-wrapper/index.js +7 -0
- package/dist/contracts/defi-wrapper/index.js.map +1 -0
- package/dist/contracts/defi-wrapper/stv-pool.d.ts +4 -0
- package/dist/contracts/defi-wrapper/stv-pool.js +11 -0
- package/dist/contracts/defi-wrapper/stv-pool.js.map +1 -0
- package/dist/contracts/defi-wrapper/stv-steth-pool.d.ts +4 -0
- package/dist/contracts/defi-wrapper/stv-steth-pool.js +11 -0
- package/dist/contracts/defi-wrapper/stv-steth-pool.js.map +1 -0
- package/dist/contracts/defi-wrapper/stv-strategy-pool.d.ts +4 -0
- package/dist/contracts/defi-wrapper/stv-strategy-pool.js +11 -0
- package/dist/contracts/defi-wrapper/stv-strategy-pool.js.map +1 -0
- package/dist/contracts/defi-wrapper/withdrawal-queue.d.ts +4 -0
- package/dist/contracts/defi-wrapper/withdrawal-queue.js +11 -0
- package/dist/contracts/defi-wrapper/withdrawal-queue.js.map +1 -0
- package/dist/contracts/index.d.ts +1 -0
- package/dist/contracts/index.js +1 -0
- package/dist/contracts/index.js.map +1 -1
- package/dist/contracts/vault-factory.d.ts +774 -102
- package/dist/contracts/vault-viewer.d.ts +2765 -4893
- package/dist/contracts/vault-viewer.js +1 -1
- package/dist/features/defi-wrapper-factory.d.ts +18 -0
- package/dist/features/defi-wrapper-factory.js +28 -0
- package/dist/features/defi-wrapper-factory.js.map +1 -0
- package/dist/features/deposits/check-bls-deposits.d.ts +2 -1
- package/dist/features/deposits/check-bls-deposits.js +10 -1
- package/dist/features/deposits/check-bls-deposits.js.map +1 -1
- package/dist/features/deposits/make-pdg-proof.d.ts +8 -0
- package/dist/features/deposits/make-pdg-proof.js +17 -1
- package/dist/features/deposits/make-pdg-proof.js.map +1 -1
- package/dist/features/index.d.ts +1 -0
- package/dist/features/index.js +1 -0
- package/dist/features/index.js.map +1 -1
- package/dist/features/mint-burn/allowance.js +1 -1
- package/dist/features/mint-burn/allowance.js.map +1 -1
- package/dist/features/pdg.d.ts +7 -0
- package/dist/features/pdg.js +5 -5
- package/dist/features/pdg.js.map +1 -1
- package/dist/features/utils/quarantine.d.ts +2 -0
- package/dist/features/utils/report-fresh.js +17 -0
- package/dist/features/utils/report-fresh.js.map +1 -1
- package/dist/features/vault-factory.d.ts +2 -2
- package/dist/features/vault-factory.js +6 -1
- package/dist/features/vault-factory.js.map +1 -1
- package/dist/features/vault-operations/create-vault.js +2 -2
- package/dist/features/vault-operations/create-vault.js.map +1 -1
- package/dist/features/vault-operations/vault-info.js +1 -1
- package/dist/features/vault-operations/vault-info.js.map +1 -1
- package/dist/features/vault-operations/vault-overview.js +9 -11
- package/dist/features/vault-operations/vault-overview.js.map +1 -1
- package/dist/features/vault-operations/vault-roles.d.ts +2 -1
- package/dist/features/vault-operations/vault-roles.js +22 -23
- package/dist/features/vault-operations/vault-roles.js.map +1 -1
- package/dist/features/vault-operations/vaults-by-role.d.ts +5 -0
- package/dist/features/vault-operations/vaults-by-role.js +103 -35
- package/dist/features/vault-operations/vaults-by-role.js.map +1 -1
- package/dist/index.js +6 -2
- package/dist/index.js.map +1 -1
- package/dist/programs/contracts/dashboard/config.js +4 -0
- package/dist/programs/contracts/dashboard/config.js.map +1 -1
- package/dist/programs/contracts/dashboard/write.js +45 -21
- package/dist/programs/contracts/dashboard/write.js.map +1 -1
- package/dist/programs/contracts/lazy-oracle/config.js +33 -0
- package/dist/programs/contracts/lazy-oracle/config.js.map +1 -1
- package/dist/programs/contracts/operator-grid/write.js +2 -75
- package/dist/programs/contracts/operator-grid/write.js.map +1 -1
- package/dist/programs/contracts/pdg/read.js +2 -5
- package/dist/programs/contracts/pdg/read.js.map +1 -1
- package/dist/programs/contracts/pdg/write.js +39 -7
- package/dist/programs/contracts/pdg/write.js.map +1 -1
- package/dist/programs/contracts/vault/write.js +18 -7
- package/dist/programs/contracts/vault/write.js.map +1 -1
- package/dist/programs/contracts/vault-factory/write.js +25 -15
- package/dist/programs/contracts/vault-factory/write.js.map +1 -1
- package/dist/programs/contracts/vault-viewer/config.js +102 -59
- package/dist/programs/contracts/vault-viewer/config.js.map +1 -1
- package/dist/programs/contracts/vault-viewer/read.js +22 -76
- package/dist/programs/contracts/vault-viewer/read.js.map +1 -1
- package/dist/programs/defi-wrapper/contracts/distributor/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/distributor/config.js +44 -0
- package/dist/programs/defi-wrapper/contracts/distributor/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/distributor/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/distributor/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/main.js +5 -0
- package/dist/programs/defi-wrapper/contracts/distributor/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/read.js +40 -0
- package/dist/programs/defi-wrapper/contracts/distributor/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/distributor/write.js +70 -0
- package/dist/programs/defi-wrapper/contracts/distributor/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/factory/config.js +2 -0
- package/dist/programs/defi-wrapper/contracts/factory/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/factory/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/factory/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/factory/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/read.js +56 -0
- package/dist/programs/defi-wrapper/contracts/factory/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/factory/write.js +327 -0
- package/dist/programs/defi-wrapper/contracts/factory/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/index.d.ts +7 -0
- package/dist/programs/defi-wrapper/contracts/index.js +8 -0
- package/dist/programs/defi-wrapper/contracts/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/config.js +83 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/read.js +77 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/write.js +287 -0
- package/dist/programs/defi-wrapper/contracts/stv-pool/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.js +210 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.js +77 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.js +370 -0
- package/dist/programs/defi-wrapper/contracts/stv-steth-pool/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/config.js +214 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/read.js +77 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/write.js +370 -0
- package/dist/programs/defi-wrapper/contracts/stv-strategy-pool/write.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.js +156 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/config.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.d.ts +3 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.js +4 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/index.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.js +6 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/main.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.js +84 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/read.js.map +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.d.ts +1 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.js +140 -0
- package/dist/programs/defi-wrapper/contracts/withdrawal-queue/write.js.map +1 -0
- package/dist/programs/defi-wrapper/index.d.ts +2 -0
- package/dist/programs/defi-wrapper/index.js +3 -0
- package/dist/programs/defi-wrapper/index.js.map +1 -0
- package/dist/programs/defi-wrapper/main.d.ts +1 -0
- package/dist/programs/defi-wrapper/main.js +6 -0
- package/dist/programs/defi-wrapper/main.js.map +1 -0
- package/dist/programs/index.d.ts +1 -0
- package/dist/programs/index.js +1 -0
- package/dist/programs/index.js.map +1 -1
- package/dist/programs/pdg-helpers.js +3 -3
- package/dist/programs/pdg-helpers.js.map +1 -1
- package/dist/programs/use-cases/deposits/read.js +4 -4
- package/dist/programs/use-cases/deposits/read.js.map +1 -1
- package/dist/programs/use-cases/deposits/write.js +103 -8
- package/dist/programs/use-cases/deposits/write.js.map +1 -1
- package/dist/programs/use-cases/metrics/read.js +29 -13
- package/dist/programs/use-cases/metrics/read.js.map +1 -1
- package/dist/programs/use-cases/report/write.js +3 -0
- package/dist/programs/use-cases/report/write.js.map +1 -1
- package/dist/programs/use-cases/vault-operations/create-vault.js +11 -5
- package/dist/programs/use-cases/vault-operations/create-vault.js.map +1 -1
- package/dist/providers/wallet.d.ts +2 -7663
- package/dist/providers/wallet.js +1 -1
- package/dist/providers/wallet.js.map +1 -1
- package/dist/utils/arguments.d.ts +4 -0
- package/dist/utils/arguments.js +16 -3
- package/dist/utils/arguments.js.map +1 -1
- package/dist/utils/fetchCL.d.ts +1 -5
- package/dist/utils/fetchCL.js +5 -7
- package/dist/utils/fetchCL.js.map +1 -1
- package/dist/utils/health/health-utils.js +1 -1
- package/dist/utils/health/health-utils.js.map +1 -1
- package/dist/utils/proof/constants.d.ts +6 -0
- package/dist/utils/proof/constants.js +7 -0
- package/dist/utils/proof/constants.js.map +1 -0
- package/dist/utils/proof/first-validator-gindex.js +0 -4
- package/dist/utils/proof/first-validator-gindex.js.map +1 -1
- package/dist/utils/proof/proofs.d.ts +7 -8
- package/dist/utils/proof/proofs.js +36 -28
- package/dist/utils/proof/proofs.js.map +1 -1
- package/dist/utils/transactions/tx-private-key.d.ts +2 -2
- package/dist/utils/transactions/tx-private-key.js.map +1 -1
- package/dist/utils/transactions/tx-wc.d.ts +29 -1
- package/dist/utils/transactions/tx-wc.js +41 -24
- package/dist/utils/transactions/tx-wc.js.map +1 -1
- package/dist/utils/wallet-connect.d.ts +4 -7664
- package/dist/utils/wallet-connect.js +14 -2
- package/dist/utils/wallet-connect.js.map +1 -1
- package/dist/version/index.js +1 -1
- package/package.json +4 -5
|
@@ -0,0 +1,761 @@
|
|
|
1
|
+
export declare const FactoryAbi: readonly [{
|
|
2
|
+
readonly type: "constructor";
|
|
3
|
+
readonly inputs: readonly [{
|
|
4
|
+
readonly name: "poolConfig";
|
|
5
|
+
readonly type: "tuple";
|
|
6
|
+
readonly internalType: "struct Factory.WrapperConfig";
|
|
7
|
+
readonly components: readonly [{
|
|
8
|
+
readonly name: "vaultFactory";
|
|
9
|
+
readonly type: "address";
|
|
10
|
+
readonly internalType: "address";
|
|
11
|
+
}, {
|
|
12
|
+
readonly name: "steth";
|
|
13
|
+
readonly type: "address";
|
|
14
|
+
readonly internalType: "address";
|
|
15
|
+
}, {
|
|
16
|
+
readonly name: "wsteth";
|
|
17
|
+
readonly type: "address";
|
|
18
|
+
readonly internalType: "address";
|
|
19
|
+
}, {
|
|
20
|
+
readonly name: "lazyOracle";
|
|
21
|
+
readonly type: "address";
|
|
22
|
+
readonly internalType: "address";
|
|
23
|
+
}, {
|
|
24
|
+
readonly name: "stvPoolFactory";
|
|
25
|
+
readonly type: "address";
|
|
26
|
+
readonly internalType: "address";
|
|
27
|
+
}, {
|
|
28
|
+
readonly name: "stvStETHPoolFactory";
|
|
29
|
+
readonly type: "address";
|
|
30
|
+
readonly internalType: "address";
|
|
31
|
+
}, {
|
|
32
|
+
readonly name: "stvStrategyPoolFactory";
|
|
33
|
+
readonly type: "address";
|
|
34
|
+
readonly internalType: "address";
|
|
35
|
+
}, {
|
|
36
|
+
readonly name: "withdrawalQueueFactory";
|
|
37
|
+
readonly type: "address";
|
|
38
|
+
readonly internalType: "address";
|
|
39
|
+
}, {
|
|
40
|
+
readonly name: "loopStrategyFactory";
|
|
41
|
+
readonly type: "address";
|
|
42
|
+
readonly internalType: "address";
|
|
43
|
+
}, {
|
|
44
|
+
readonly name: "ggvStrategyFactory";
|
|
45
|
+
readonly type: "address";
|
|
46
|
+
readonly internalType: "address";
|
|
47
|
+
}, {
|
|
48
|
+
readonly name: "dummyImplementation";
|
|
49
|
+
readonly type: "address";
|
|
50
|
+
readonly internalType: "address";
|
|
51
|
+
}, {
|
|
52
|
+
readonly name: "timelockFactory";
|
|
53
|
+
readonly type: "address";
|
|
54
|
+
readonly internalType: "address";
|
|
55
|
+
}];
|
|
56
|
+
}, {
|
|
57
|
+
readonly name: "timelockConfig";
|
|
58
|
+
readonly type: "tuple";
|
|
59
|
+
readonly internalType: "struct Factory.TimelockConfig";
|
|
60
|
+
readonly components: readonly [{
|
|
61
|
+
readonly name: "minDelaySeconds";
|
|
62
|
+
readonly type: "uint256";
|
|
63
|
+
readonly internalType: "uint256";
|
|
64
|
+
}];
|
|
65
|
+
}];
|
|
66
|
+
readonly stateMutability: "nonpayable";
|
|
67
|
+
}, {
|
|
68
|
+
readonly type: "function";
|
|
69
|
+
readonly name: "DUMMY_IMPLEMENTATION";
|
|
70
|
+
readonly inputs: readonly [];
|
|
71
|
+
readonly outputs: readonly [{
|
|
72
|
+
readonly name: "";
|
|
73
|
+
readonly type: "address";
|
|
74
|
+
readonly internalType: "address";
|
|
75
|
+
}];
|
|
76
|
+
readonly stateMutability: "view";
|
|
77
|
+
}, {
|
|
78
|
+
readonly type: "function";
|
|
79
|
+
readonly name: "GGV_STRATEGY_FACTORY";
|
|
80
|
+
readonly inputs: readonly [];
|
|
81
|
+
readonly outputs: readonly [{
|
|
82
|
+
readonly name: "";
|
|
83
|
+
readonly type: "address";
|
|
84
|
+
readonly internalType: "contract GGVStrategyFactory";
|
|
85
|
+
}];
|
|
86
|
+
readonly stateMutability: "view";
|
|
87
|
+
}, {
|
|
88
|
+
readonly type: "function";
|
|
89
|
+
readonly name: "LAZY_ORACLE";
|
|
90
|
+
readonly inputs: readonly [];
|
|
91
|
+
readonly outputs: readonly [{
|
|
92
|
+
readonly name: "";
|
|
93
|
+
readonly type: "address";
|
|
94
|
+
readonly internalType: "address";
|
|
95
|
+
}];
|
|
96
|
+
readonly stateMutability: "view";
|
|
97
|
+
}, {
|
|
98
|
+
readonly type: "function";
|
|
99
|
+
readonly name: "LOOP_STRATEGY_FACTORY";
|
|
100
|
+
readonly inputs: readonly [];
|
|
101
|
+
readonly outputs: readonly [{
|
|
102
|
+
readonly name: "";
|
|
103
|
+
readonly type: "address";
|
|
104
|
+
readonly internalType: "contract LoopStrategyFactory";
|
|
105
|
+
}];
|
|
106
|
+
readonly stateMutability: "view";
|
|
107
|
+
}, {
|
|
108
|
+
readonly type: "function";
|
|
109
|
+
readonly name: "STETH";
|
|
110
|
+
readonly inputs: readonly [];
|
|
111
|
+
readonly outputs: readonly [{
|
|
112
|
+
readonly name: "";
|
|
113
|
+
readonly type: "address";
|
|
114
|
+
readonly internalType: "address";
|
|
115
|
+
}];
|
|
116
|
+
readonly stateMutability: "view";
|
|
117
|
+
}, {
|
|
118
|
+
readonly type: "function";
|
|
119
|
+
readonly name: "STV_POOL_FACTORY";
|
|
120
|
+
readonly inputs: readonly [];
|
|
121
|
+
readonly outputs: readonly [{
|
|
122
|
+
readonly name: "";
|
|
123
|
+
readonly type: "address";
|
|
124
|
+
readonly internalType: "contract StvPoolFactory";
|
|
125
|
+
}];
|
|
126
|
+
readonly stateMutability: "view";
|
|
127
|
+
}, {
|
|
128
|
+
readonly type: "function";
|
|
129
|
+
readonly name: "STV_STETH_POOL_FACTORY";
|
|
130
|
+
readonly inputs: readonly [];
|
|
131
|
+
readonly outputs: readonly [{
|
|
132
|
+
readonly name: "";
|
|
133
|
+
readonly type: "address";
|
|
134
|
+
readonly internalType: "contract StvStETHPoolFactory";
|
|
135
|
+
}];
|
|
136
|
+
readonly stateMutability: "view";
|
|
137
|
+
}, {
|
|
138
|
+
readonly type: "function";
|
|
139
|
+
readonly name: "STV_STRATEGY_POOL_FACTORY";
|
|
140
|
+
readonly inputs: readonly [];
|
|
141
|
+
readonly outputs: readonly [{
|
|
142
|
+
readonly name: "";
|
|
143
|
+
readonly type: "address";
|
|
144
|
+
readonly internalType: "contract StvStrategyPoolFactory";
|
|
145
|
+
}];
|
|
146
|
+
readonly stateMutability: "view";
|
|
147
|
+
}, {
|
|
148
|
+
readonly type: "function";
|
|
149
|
+
readonly name: "TIMELOCK_FACTORY";
|
|
150
|
+
readonly inputs: readonly [];
|
|
151
|
+
readonly outputs: readonly [{
|
|
152
|
+
readonly name: "";
|
|
153
|
+
readonly type: "address";
|
|
154
|
+
readonly internalType: "contract TimelockFactory";
|
|
155
|
+
}];
|
|
156
|
+
readonly stateMutability: "view";
|
|
157
|
+
}, {
|
|
158
|
+
readonly type: "function";
|
|
159
|
+
readonly name: "TIMELOCK_MIN_DELAY";
|
|
160
|
+
readonly inputs: readonly [];
|
|
161
|
+
readonly outputs: readonly [{
|
|
162
|
+
readonly name: "";
|
|
163
|
+
readonly type: "uint256";
|
|
164
|
+
readonly internalType: "uint256";
|
|
165
|
+
}];
|
|
166
|
+
readonly stateMutability: "view";
|
|
167
|
+
}, {
|
|
168
|
+
readonly type: "function";
|
|
169
|
+
readonly name: "VAULT_FACTORY";
|
|
170
|
+
readonly inputs: readonly [];
|
|
171
|
+
readonly outputs: readonly [{
|
|
172
|
+
readonly name: "";
|
|
173
|
+
readonly type: "address";
|
|
174
|
+
readonly internalType: "contract IVaultFactory";
|
|
175
|
+
}];
|
|
176
|
+
readonly stateMutability: "view";
|
|
177
|
+
}, {
|
|
178
|
+
readonly type: "function";
|
|
179
|
+
readonly name: "WITHDRAWAL_QUEUE_FACTORY";
|
|
180
|
+
readonly inputs: readonly [];
|
|
181
|
+
readonly outputs: readonly [{
|
|
182
|
+
readonly name: "";
|
|
183
|
+
readonly type: "address";
|
|
184
|
+
readonly internalType: "contract WithdrawalQueueFactory";
|
|
185
|
+
}];
|
|
186
|
+
readonly stateMutability: "view";
|
|
187
|
+
}, {
|
|
188
|
+
readonly type: "function";
|
|
189
|
+
readonly name: "WSTETH";
|
|
190
|
+
readonly inputs: readonly [];
|
|
191
|
+
readonly outputs: readonly [{
|
|
192
|
+
readonly name: "";
|
|
193
|
+
readonly type: "address";
|
|
194
|
+
readonly internalType: "address";
|
|
195
|
+
}];
|
|
196
|
+
readonly stateMutability: "view";
|
|
197
|
+
}, {
|
|
198
|
+
readonly type: "function";
|
|
199
|
+
readonly name: "createVaultWithConfiguredWrapper";
|
|
200
|
+
readonly inputs: readonly [{
|
|
201
|
+
readonly name: "_nodeOperator";
|
|
202
|
+
readonly type: "address";
|
|
203
|
+
readonly internalType: "address";
|
|
204
|
+
}, {
|
|
205
|
+
readonly name: "_nodeOperatorManager";
|
|
206
|
+
readonly type: "address";
|
|
207
|
+
readonly internalType: "address";
|
|
208
|
+
}, {
|
|
209
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
210
|
+
readonly type: "uint256";
|
|
211
|
+
readonly internalType: "uint256";
|
|
212
|
+
}, {
|
|
213
|
+
readonly name: "_confirmExpiry";
|
|
214
|
+
readonly type: "uint256";
|
|
215
|
+
readonly internalType: "uint256";
|
|
216
|
+
}, {
|
|
217
|
+
readonly name: "_maxFinalizationTime";
|
|
218
|
+
readonly type: "uint256";
|
|
219
|
+
readonly internalType: "uint256";
|
|
220
|
+
}, {
|
|
221
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
222
|
+
readonly type: "uint256";
|
|
223
|
+
readonly internalType: "uint256";
|
|
224
|
+
}, {
|
|
225
|
+
readonly name: "_configuration";
|
|
226
|
+
readonly type: "uint8";
|
|
227
|
+
readonly internalType: "enum Factory.WrapperType";
|
|
228
|
+
}, {
|
|
229
|
+
readonly name: "_strategy";
|
|
230
|
+
readonly type: "address";
|
|
231
|
+
readonly internalType: "address";
|
|
232
|
+
}, {
|
|
233
|
+
readonly name: "_allowlistEnabled";
|
|
234
|
+
readonly type: "bool";
|
|
235
|
+
readonly internalType: "bool";
|
|
236
|
+
}, {
|
|
237
|
+
readonly name: "_reserveRatioGapBP";
|
|
238
|
+
readonly type: "uint256";
|
|
239
|
+
readonly internalType: "uint256";
|
|
240
|
+
}, {
|
|
241
|
+
readonly name: "_timelockExecutor";
|
|
242
|
+
readonly type: "address";
|
|
243
|
+
readonly internalType: "address";
|
|
244
|
+
}];
|
|
245
|
+
readonly outputs: readonly [{
|
|
246
|
+
readonly name: "vault";
|
|
247
|
+
readonly type: "address";
|
|
248
|
+
readonly internalType: "address";
|
|
249
|
+
}, {
|
|
250
|
+
readonly name: "dashboard";
|
|
251
|
+
readonly type: "address";
|
|
252
|
+
readonly internalType: "address";
|
|
253
|
+
}, {
|
|
254
|
+
readonly name: "poolProxy";
|
|
255
|
+
readonly type: "address";
|
|
256
|
+
readonly internalType: "address payable";
|
|
257
|
+
}, {
|
|
258
|
+
readonly name: "withdrawalQueueProxy";
|
|
259
|
+
readonly type: "address";
|
|
260
|
+
readonly internalType: "address";
|
|
261
|
+
}];
|
|
262
|
+
readonly stateMutability: "payable";
|
|
263
|
+
}, {
|
|
264
|
+
readonly type: "function";
|
|
265
|
+
readonly name: "createVaultWithGGVStrategy";
|
|
266
|
+
readonly inputs: readonly [{
|
|
267
|
+
readonly name: "_nodeOperator";
|
|
268
|
+
readonly type: "address";
|
|
269
|
+
readonly internalType: "address";
|
|
270
|
+
}, {
|
|
271
|
+
readonly name: "_nodeOperatorManager";
|
|
272
|
+
readonly type: "address";
|
|
273
|
+
readonly internalType: "address";
|
|
274
|
+
}, {
|
|
275
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
276
|
+
readonly type: "uint256";
|
|
277
|
+
readonly internalType: "uint256";
|
|
278
|
+
}, {
|
|
279
|
+
readonly name: "_confirmExpiry";
|
|
280
|
+
readonly type: "uint256";
|
|
281
|
+
readonly internalType: "uint256";
|
|
282
|
+
}, {
|
|
283
|
+
readonly name: "_maxFinalizationTime";
|
|
284
|
+
readonly type: "uint256";
|
|
285
|
+
readonly internalType: "uint256";
|
|
286
|
+
}, {
|
|
287
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
288
|
+
readonly type: "uint256";
|
|
289
|
+
readonly internalType: "uint256";
|
|
290
|
+
}, {
|
|
291
|
+
readonly name: "_allowlistEnabled";
|
|
292
|
+
readonly type: "bool";
|
|
293
|
+
readonly internalType: "bool";
|
|
294
|
+
}, {
|
|
295
|
+
readonly name: "_reserveRatioGapBP";
|
|
296
|
+
readonly type: "uint256";
|
|
297
|
+
readonly internalType: "uint256";
|
|
298
|
+
}, {
|
|
299
|
+
readonly name: "_teller";
|
|
300
|
+
readonly type: "address";
|
|
301
|
+
readonly internalType: "address";
|
|
302
|
+
}, {
|
|
303
|
+
readonly name: "_boringQueue";
|
|
304
|
+
readonly type: "address";
|
|
305
|
+
readonly internalType: "address";
|
|
306
|
+
}, {
|
|
307
|
+
readonly name: "_timelockExecutor";
|
|
308
|
+
readonly type: "address";
|
|
309
|
+
readonly internalType: "address";
|
|
310
|
+
}];
|
|
311
|
+
readonly outputs: readonly [{
|
|
312
|
+
readonly name: "vault";
|
|
313
|
+
readonly type: "address";
|
|
314
|
+
readonly internalType: "address";
|
|
315
|
+
}, {
|
|
316
|
+
readonly name: "dashboard";
|
|
317
|
+
readonly type: "address";
|
|
318
|
+
readonly internalType: "address";
|
|
319
|
+
}, {
|
|
320
|
+
readonly name: "poolProxy";
|
|
321
|
+
readonly type: "address";
|
|
322
|
+
readonly internalType: "address payable";
|
|
323
|
+
}, {
|
|
324
|
+
readonly name: "withdrawalQueueProxy";
|
|
325
|
+
readonly type: "address";
|
|
326
|
+
readonly internalType: "address";
|
|
327
|
+
}];
|
|
328
|
+
readonly stateMutability: "payable";
|
|
329
|
+
}, {
|
|
330
|
+
readonly type: "function";
|
|
331
|
+
readonly name: "createVaultWithGGVStrategy";
|
|
332
|
+
readonly inputs: readonly [{
|
|
333
|
+
readonly name: "_nodeOperator";
|
|
334
|
+
readonly type: "address";
|
|
335
|
+
readonly internalType: "address";
|
|
336
|
+
}, {
|
|
337
|
+
readonly name: "_nodeOperatorManager";
|
|
338
|
+
readonly type: "address";
|
|
339
|
+
readonly internalType: "address";
|
|
340
|
+
}, {
|
|
341
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
342
|
+
readonly type: "uint256";
|
|
343
|
+
readonly internalType: "uint256";
|
|
344
|
+
}, {
|
|
345
|
+
readonly name: "_confirmExpiry";
|
|
346
|
+
readonly type: "uint256";
|
|
347
|
+
readonly internalType: "uint256";
|
|
348
|
+
}, {
|
|
349
|
+
readonly name: "_maxFinalizationTime";
|
|
350
|
+
readonly type: "uint256";
|
|
351
|
+
readonly internalType: "uint256";
|
|
352
|
+
}, {
|
|
353
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
354
|
+
readonly type: "uint256";
|
|
355
|
+
readonly internalType: "uint256";
|
|
356
|
+
}, {
|
|
357
|
+
readonly name: "_allowlistEnabled";
|
|
358
|
+
readonly type: "bool";
|
|
359
|
+
readonly internalType: "bool";
|
|
360
|
+
}, {
|
|
361
|
+
readonly name: "_reserveRatioGapBP";
|
|
362
|
+
readonly type: "uint256";
|
|
363
|
+
readonly internalType: "uint256";
|
|
364
|
+
}, {
|
|
365
|
+
readonly name: "_teller";
|
|
366
|
+
readonly type: "address";
|
|
367
|
+
readonly internalType: "address";
|
|
368
|
+
}, {
|
|
369
|
+
readonly name: "_boringQueue";
|
|
370
|
+
readonly type: "address";
|
|
371
|
+
readonly internalType: "address";
|
|
372
|
+
}];
|
|
373
|
+
readonly outputs: readonly [{
|
|
374
|
+
readonly name: "vault";
|
|
375
|
+
readonly type: "address";
|
|
376
|
+
readonly internalType: "address";
|
|
377
|
+
}, {
|
|
378
|
+
readonly name: "dashboard";
|
|
379
|
+
readonly type: "address";
|
|
380
|
+
readonly internalType: "address";
|
|
381
|
+
}, {
|
|
382
|
+
readonly name: "poolProxy";
|
|
383
|
+
readonly type: "address";
|
|
384
|
+
readonly internalType: "address payable";
|
|
385
|
+
}, {
|
|
386
|
+
readonly name: "withdrawalQueueProxy";
|
|
387
|
+
readonly type: "address";
|
|
388
|
+
readonly internalType: "address";
|
|
389
|
+
}];
|
|
390
|
+
readonly stateMutability: "payable";
|
|
391
|
+
}, {
|
|
392
|
+
readonly type: "function";
|
|
393
|
+
readonly name: "createVaultWithLoopStrategy";
|
|
394
|
+
readonly inputs: readonly [{
|
|
395
|
+
readonly name: "_nodeOperator";
|
|
396
|
+
readonly type: "address";
|
|
397
|
+
readonly internalType: "address";
|
|
398
|
+
}, {
|
|
399
|
+
readonly name: "_nodeOperatorManager";
|
|
400
|
+
readonly type: "address";
|
|
401
|
+
readonly internalType: "address";
|
|
402
|
+
}, {
|
|
403
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
404
|
+
readonly type: "uint256";
|
|
405
|
+
readonly internalType: "uint256";
|
|
406
|
+
}, {
|
|
407
|
+
readonly name: "_confirmExpiry";
|
|
408
|
+
readonly type: "uint256";
|
|
409
|
+
readonly internalType: "uint256";
|
|
410
|
+
}, {
|
|
411
|
+
readonly name: "_maxFinalizationTime";
|
|
412
|
+
readonly type: "uint256";
|
|
413
|
+
readonly internalType: "uint256";
|
|
414
|
+
}, {
|
|
415
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
416
|
+
readonly type: "uint256";
|
|
417
|
+
readonly internalType: "uint256";
|
|
418
|
+
}, {
|
|
419
|
+
readonly name: "_allowlistEnabled";
|
|
420
|
+
readonly type: "bool";
|
|
421
|
+
readonly internalType: "bool";
|
|
422
|
+
}, {
|
|
423
|
+
readonly name: "_reserveRatioGapBP";
|
|
424
|
+
readonly type: "uint256";
|
|
425
|
+
readonly internalType: "uint256";
|
|
426
|
+
}, {
|
|
427
|
+
readonly name: "_loops";
|
|
428
|
+
readonly type: "uint256";
|
|
429
|
+
readonly internalType: "uint256";
|
|
430
|
+
}];
|
|
431
|
+
readonly outputs: readonly [{
|
|
432
|
+
readonly name: "vault";
|
|
433
|
+
readonly type: "address";
|
|
434
|
+
readonly internalType: "address";
|
|
435
|
+
}, {
|
|
436
|
+
readonly name: "dashboard";
|
|
437
|
+
readonly type: "address";
|
|
438
|
+
readonly internalType: "address";
|
|
439
|
+
}, {
|
|
440
|
+
readonly name: "poolProxy";
|
|
441
|
+
readonly type: "address";
|
|
442
|
+
readonly internalType: "address payable";
|
|
443
|
+
}, {
|
|
444
|
+
readonly name: "withdrawalQueueProxy";
|
|
445
|
+
readonly type: "address";
|
|
446
|
+
readonly internalType: "address";
|
|
447
|
+
}];
|
|
448
|
+
readonly stateMutability: "payable";
|
|
449
|
+
}, {
|
|
450
|
+
readonly type: "function";
|
|
451
|
+
readonly name: "createVaultWithLoopStrategy";
|
|
452
|
+
readonly inputs: readonly [{
|
|
453
|
+
readonly name: "_nodeOperator";
|
|
454
|
+
readonly type: "address";
|
|
455
|
+
readonly internalType: "address";
|
|
456
|
+
}, {
|
|
457
|
+
readonly name: "_nodeOperatorManager";
|
|
458
|
+
readonly type: "address";
|
|
459
|
+
readonly internalType: "address";
|
|
460
|
+
}, {
|
|
461
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
462
|
+
readonly type: "uint256";
|
|
463
|
+
readonly internalType: "uint256";
|
|
464
|
+
}, {
|
|
465
|
+
readonly name: "_confirmExpiry";
|
|
466
|
+
readonly type: "uint256";
|
|
467
|
+
readonly internalType: "uint256";
|
|
468
|
+
}, {
|
|
469
|
+
readonly name: "_maxFinalizationTime";
|
|
470
|
+
readonly type: "uint256";
|
|
471
|
+
readonly internalType: "uint256";
|
|
472
|
+
}, {
|
|
473
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
474
|
+
readonly type: "uint256";
|
|
475
|
+
readonly internalType: "uint256";
|
|
476
|
+
}, {
|
|
477
|
+
readonly name: "_allowlistEnabled";
|
|
478
|
+
readonly type: "bool";
|
|
479
|
+
readonly internalType: "bool";
|
|
480
|
+
}, {
|
|
481
|
+
readonly name: "_reserveRatioGapBP";
|
|
482
|
+
readonly type: "uint256";
|
|
483
|
+
readonly internalType: "uint256";
|
|
484
|
+
}, {
|
|
485
|
+
readonly name: "_loops";
|
|
486
|
+
readonly type: "uint256";
|
|
487
|
+
readonly internalType: "uint256";
|
|
488
|
+
}, {
|
|
489
|
+
readonly name: "_timelockExecutor";
|
|
490
|
+
readonly type: "address";
|
|
491
|
+
readonly internalType: "address";
|
|
492
|
+
}];
|
|
493
|
+
readonly outputs: readonly [{
|
|
494
|
+
readonly name: "vault";
|
|
495
|
+
readonly type: "address";
|
|
496
|
+
readonly internalType: "address";
|
|
497
|
+
}, {
|
|
498
|
+
readonly name: "dashboard";
|
|
499
|
+
readonly type: "address";
|
|
500
|
+
readonly internalType: "address";
|
|
501
|
+
}, {
|
|
502
|
+
readonly name: "poolProxy";
|
|
503
|
+
readonly type: "address";
|
|
504
|
+
readonly internalType: "address payable";
|
|
505
|
+
}, {
|
|
506
|
+
readonly name: "withdrawalQueueProxy";
|
|
507
|
+
readonly type: "address";
|
|
508
|
+
readonly internalType: "address";
|
|
509
|
+
}];
|
|
510
|
+
readonly stateMutability: "payable";
|
|
511
|
+
}, {
|
|
512
|
+
readonly type: "function";
|
|
513
|
+
readonly name: "createVaultWithMintingNoStrategy";
|
|
514
|
+
readonly inputs: readonly [{
|
|
515
|
+
readonly name: "_nodeOperator";
|
|
516
|
+
readonly type: "address";
|
|
517
|
+
readonly internalType: "address";
|
|
518
|
+
}, {
|
|
519
|
+
readonly name: "_nodeOperatorManager";
|
|
520
|
+
readonly type: "address";
|
|
521
|
+
readonly internalType: "address";
|
|
522
|
+
}, {
|
|
523
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
524
|
+
readonly type: "uint256";
|
|
525
|
+
readonly internalType: "uint256";
|
|
526
|
+
}, {
|
|
527
|
+
readonly name: "_confirmExpiry";
|
|
528
|
+
readonly type: "uint256";
|
|
529
|
+
readonly internalType: "uint256";
|
|
530
|
+
}, {
|
|
531
|
+
readonly name: "_maxFinalizationTime";
|
|
532
|
+
readonly type: "uint256";
|
|
533
|
+
readonly internalType: "uint256";
|
|
534
|
+
}, {
|
|
535
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
536
|
+
readonly type: "uint256";
|
|
537
|
+
readonly internalType: "uint256";
|
|
538
|
+
}, {
|
|
539
|
+
readonly name: "_allowlistEnabled";
|
|
540
|
+
readonly type: "bool";
|
|
541
|
+
readonly internalType: "bool";
|
|
542
|
+
}, {
|
|
543
|
+
readonly name: "_reserveRatioGapBP";
|
|
544
|
+
readonly type: "uint256";
|
|
545
|
+
readonly internalType: "uint256";
|
|
546
|
+
}];
|
|
547
|
+
readonly outputs: readonly [{
|
|
548
|
+
readonly name: "vault";
|
|
549
|
+
readonly type: "address";
|
|
550
|
+
readonly internalType: "address";
|
|
551
|
+
}, {
|
|
552
|
+
readonly name: "dashboard";
|
|
553
|
+
readonly type: "address";
|
|
554
|
+
readonly internalType: "address";
|
|
555
|
+
}, {
|
|
556
|
+
readonly name: "poolProxy";
|
|
557
|
+
readonly type: "address";
|
|
558
|
+
readonly internalType: "address payable";
|
|
559
|
+
}, {
|
|
560
|
+
readonly name: "withdrawalQueueProxy";
|
|
561
|
+
readonly type: "address";
|
|
562
|
+
readonly internalType: "address";
|
|
563
|
+
}];
|
|
564
|
+
readonly stateMutability: "payable";
|
|
565
|
+
}, {
|
|
566
|
+
readonly type: "function";
|
|
567
|
+
readonly name: "createVaultWithMintingNoStrategy";
|
|
568
|
+
readonly inputs: readonly [{
|
|
569
|
+
readonly name: "_nodeOperator";
|
|
570
|
+
readonly type: "address";
|
|
571
|
+
readonly internalType: "address";
|
|
572
|
+
}, {
|
|
573
|
+
readonly name: "_nodeOperatorManager";
|
|
574
|
+
readonly type: "address";
|
|
575
|
+
readonly internalType: "address";
|
|
576
|
+
}, {
|
|
577
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
578
|
+
readonly type: "uint256";
|
|
579
|
+
readonly internalType: "uint256";
|
|
580
|
+
}, {
|
|
581
|
+
readonly name: "_confirmExpiry";
|
|
582
|
+
readonly type: "uint256";
|
|
583
|
+
readonly internalType: "uint256";
|
|
584
|
+
}, {
|
|
585
|
+
readonly name: "_maxFinalizationTime";
|
|
586
|
+
readonly type: "uint256";
|
|
587
|
+
readonly internalType: "uint256";
|
|
588
|
+
}, {
|
|
589
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
590
|
+
readonly type: "uint256";
|
|
591
|
+
readonly internalType: "uint256";
|
|
592
|
+
}, {
|
|
593
|
+
readonly name: "_allowlistEnabled";
|
|
594
|
+
readonly type: "bool";
|
|
595
|
+
readonly internalType: "bool";
|
|
596
|
+
}, {
|
|
597
|
+
readonly name: "_reserveRatioGapBP";
|
|
598
|
+
readonly type: "uint256";
|
|
599
|
+
readonly internalType: "uint256";
|
|
600
|
+
}, {
|
|
601
|
+
readonly name: "_timelockExecutor";
|
|
602
|
+
readonly type: "address";
|
|
603
|
+
readonly internalType: "address";
|
|
604
|
+
}];
|
|
605
|
+
readonly outputs: readonly [{
|
|
606
|
+
readonly name: "vault";
|
|
607
|
+
readonly type: "address";
|
|
608
|
+
readonly internalType: "address";
|
|
609
|
+
}, {
|
|
610
|
+
readonly name: "dashboard";
|
|
611
|
+
readonly type: "address";
|
|
612
|
+
readonly internalType: "address";
|
|
613
|
+
}, {
|
|
614
|
+
readonly name: "poolProxy";
|
|
615
|
+
readonly type: "address";
|
|
616
|
+
readonly internalType: "address payable";
|
|
617
|
+
}, {
|
|
618
|
+
readonly name: "withdrawalQueueProxy";
|
|
619
|
+
readonly type: "address";
|
|
620
|
+
readonly internalType: "address";
|
|
621
|
+
}];
|
|
622
|
+
readonly stateMutability: "payable";
|
|
623
|
+
}, {
|
|
624
|
+
readonly type: "function";
|
|
625
|
+
readonly name: "createVaultWithNoMintingNoStrategy";
|
|
626
|
+
readonly inputs: readonly [{
|
|
627
|
+
readonly name: "_nodeOperator";
|
|
628
|
+
readonly type: "address";
|
|
629
|
+
readonly internalType: "address";
|
|
630
|
+
}, {
|
|
631
|
+
readonly name: "_nodeOperatorManager";
|
|
632
|
+
readonly type: "address";
|
|
633
|
+
readonly internalType: "address";
|
|
634
|
+
}, {
|
|
635
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
636
|
+
readonly type: "uint256";
|
|
637
|
+
readonly internalType: "uint256";
|
|
638
|
+
}, {
|
|
639
|
+
readonly name: "_confirmExpiry";
|
|
640
|
+
readonly type: "uint256";
|
|
641
|
+
readonly internalType: "uint256";
|
|
642
|
+
}, {
|
|
643
|
+
readonly name: "_maxFinalizationTime";
|
|
644
|
+
readonly type: "uint256";
|
|
645
|
+
readonly internalType: "uint256";
|
|
646
|
+
}, {
|
|
647
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
648
|
+
readonly type: "uint256";
|
|
649
|
+
readonly internalType: "uint256";
|
|
650
|
+
}, {
|
|
651
|
+
readonly name: "_allowlistEnabled";
|
|
652
|
+
readonly type: "bool";
|
|
653
|
+
readonly internalType: "bool";
|
|
654
|
+
}];
|
|
655
|
+
readonly outputs: readonly [{
|
|
656
|
+
readonly name: "vault";
|
|
657
|
+
readonly type: "address";
|
|
658
|
+
readonly internalType: "address";
|
|
659
|
+
}, {
|
|
660
|
+
readonly name: "dashboard";
|
|
661
|
+
readonly type: "address";
|
|
662
|
+
readonly internalType: "address";
|
|
663
|
+
}, {
|
|
664
|
+
readonly name: "poolProxy";
|
|
665
|
+
readonly type: "address";
|
|
666
|
+
readonly internalType: "address payable";
|
|
667
|
+
}, {
|
|
668
|
+
readonly name: "withdrawalQueueProxy";
|
|
669
|
+
readonly type: "address";
|
|
670
|
+
readonly internalType: "address";
|
|
671
|
+
}];
|
|
672
|
+
readonly stateMutability: "payable";
|
|
673
|
+
}, {
|
|
674
|
+
readonly type: "function";
|
|
675
|
+
readonly name: "createVaultWithNoMintingNoStrategy";
|
|
676
|
+
readonly inputs: readonly [{
|
|
677
|
+
readonly name: "_nodeOperator";
|
|
678
|
+
readonly type: "address";
|
|
679
|
+
readonly internalType: "address";
|
|
680
|
+
}, {
|
|
681
|
+
readonly name: "_nodeOperatorManager";
|
|
682
|
+
readonly type: "address";
|
|
683
|
+
readonly internalType: "address";
|
|
684
|
+
}, {
|
|
685
|
+
readonly name: "_nodeOperatorFeeBP";
|
|
686
|
+
readonly type: "uint256";
|
|
687
|
+
readonly internalType: "uint256";
|
|
688
|
+
}, {
|
|
689
|
+
readonly name: "_confirmExpiry";
|
|
690
|
+
readonly type: "uint256";
|
|
691
|
+
readonly internalType: "uint256";
|
|
692
|
+
}, {
|
|
693
|
+
readonly name: "_maxFinalizationTime";
|
|
694
|
+
readonly type: "uint256";
|
|
695
|
+
readonly internalType: "uint256";
|
|
696
|
+
}, {
|
|
697
|
+
readonly name: "_minWithdrawalDelayTime";
|
|
698
|
+
readonly type: "uint256";
|
|
699
|
+
readonly internalType: "uint256";
|
|
700
|
+
}, {
|
|
701
|
+
readonly name: "_allowlistEnabled";
|
|
702
|
+
readonly type: "bool";
|
|
703
|
+
readonly internalType: "bool";
|
|
704
|
+
}, {
|
|
705
|
+
readonly name: "_timelockExecutor";
|
|
706
|
+
readonly type: "address";
|
|
707
|
+
readonly internalType: "address";
|
|
708
|
+
}];
|
|
709
|
+
readonly outputs: readonly [{
|
|
710
|
+
readonly name: "vault";
|
|
711
|
+
readonly type: "address";
|
|
712
|
+
readonly internalType: "address";
|
|
713
|
+
}, {
|
|
714
|
+
readonly name: "dashboard";
|
|
715
|
+
readonly type: "address";
|
|
716
|
+
readonly internalType: "address";
|
|
717
|
+
}, {
|
|
718
|
+
readonly name: "poolProxy";
|
|
719
|
+
readonly type: "address";
|
|
720
|
+
readonly internalType: "address payable";
|
|
721
|
+
}, {
|
|
722
|
+
readonly name: "withdrawalQueueProxy";
|
|
723
|
+
readonly type: "address";
|
|
724
|
+
readonly internalType: "address";
|
|
725
|
+
}];
|
|
726
|
+
readonly stateMutability: "payable";
|
|
727
|
+
}, {
|
|
728
|
+
readonly type: "event";
|
|
729
|
+
readonly name: "VaultWrapperCreated";
|
|
730
|
+
readonly inputs: readonly [{
|
|
731
|
+
readonly name: "vault";
|
|
732
|
+
readonly type: "address";
|
|
733
|
+
readonly indexed: true;
|
|
734
|
+
readonly internalType: "address";
|
|
735
|
+
}, {
|
|
736
|
+
readonly name: "pool";
|
|
737
|
+
readonly type: "address";
|
|
738
|
+
readonly indexed: true;
|
|
739
|
+
readonly internalType: "address";
|
|
740
|
+
}, {
|
|
741
|
+
readonly name: "withdrawalQueue";
|
|
742
|
+
readonly type: "address";
|
|
743
|
+
readonly indexed: true;
|
|
744
|
+
readonly internalType: "address";
|
|
745
|
+
}, {
|
|
746
|
+
readonly name: "strategy";
|
|
747
|
+
readonly type: "address";
|
|
748
|
+
readonly indexed: false;
|
|
749
|
+
readonly internalType: "address";
|
|
750
|
+
}, {
|
|
751
|
+
readonly name: "configuration";
|
|
752
|
+
readonly type: "uint8";
|
|
753
|
+
readonly indexed: false;
|
|
754
|
+
readonly internalType: "enum Factory.WrapperType";
|
|
755
|
+
}];
|
|
756
|
+
readonly anonymous: false;
|
|
757
|
+
}, {
|
|
758
|
+
readonly type: "error";
|
|
759
|
+
readonly name: "InvalidConfiguration";
|
|
760
|
+
readonly inputs: readonly [];
|
|
761
|
+
}];
|