@imtbl/x-client 2.0.0-alpha.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.
Files changed (82) hide show
  1. package/LICENSE.md +176 -0
  2. package/README.md +53 -0
  3. package/dist/browser/index.js +2 -0
  4. package/dist/node/index.cjs +2 -0
  5. package/dist/node/index.js +2 -0
  6. package/dist/types/IMXClient.d.ts +334 -0
  7. package/dist/types/config/config.test.d.ts +1 -0
  8. package/dist/types/config/index.d.ts +77 -0
  9. package/dist/types/contracts/@openzeppelin/contracts/index.d.ts +4 -0
  10. package/dist/types/contracts/@openzeppelin/contracts/token/ERC20/IERC20.d.ts +129 -0
  11. package/dist/types/contracts/@openzeppelin/contracts/token/ERC20/index.d.ts +1 -0
  12. package/dist/types/contracts/@openzeppelin/contracts/token/ERC721/IERC721.d.ts +199 -0
  13. package/dist/types/contracts/@openzeppelin/contracts/token/ERC721/index.d.ts +1 -0
  14. package/dist/types/contracts/@openzeppelin/contracts/token/index.d.ts +4 -0
  15. package/dist/types/contracts/@openzeppelin/contracts/utils/index.d.ts +2 -0
  16. package/dist/types/contracts/@openzeppelin/contracts/utils/introspection/IERC165.d.ts +29 -0
  17. package/dist/types/contracts/@openzeppelin/contracts/utils/introspection/index.d.ts +1 -0
  18. package/dist/types/contracts/@openzeppelin/index.d.ts +2 -0
  19. package/dist/types/contracts/common.d.ts +50 -0
  20. package/dist/types/contracts/contracts/index.d.ts +4 -0
  21. package/dist/types/contracts/contracts/v3/Core.d.ts +1088 -0
  22. package/dist/types/contracts/contracts/v3/Registration.d.ts +169 -0
  23. package/dist/types/contracts/contracts/v3/index.d.ts +2 -0
  24. package/dist/types/contracts/contracts/v4/CoreV4.d.ts +1650 -0
  25. package/dist/types/contracts/contracts/v4/RegistrationV4.d.ts +111 -0
  26. package/dist/types/contracts/contracts/v4/index.d.ts +2 -0
  27. package/dist/types/contracts/factories/@openzeppelin/contracts/index.d.ts +2 -0
  28. package/dist/types/contracts/factories/@openzeppelin/contracts/token/ERC20/IERC20__factory.d.ts +147 -0
  29. package/dist/types/contracts/factories/@openzeppelin/contracts/token/ERC20/index.d.ts +1 -0
  30. package/dist/types/contracts/factories/@openzeppelin/contracts/token/ERC721/IERC721__factory.d.ts +227 -0
  31. package/dist/types/contracts/factories/@openzeppelin/contracts/token/ERC721/index.d.ts +1 -0
  32. package/dist/types/contracts/factories/@openzeppelin/contracts/token/index.d.ts +2 -0
  33. package/dist/types/contracts/factories/@openzeppelin/contracts/utils/index.d.ts +1 -0
  34. package/dist/types/contracts/factories/@openzeppelin/contracts/utils/introspection/IERC165__factory.d.ts +21 -0
  35. package/dist/types/contracts/factories/@openzeppelin/contracts/utils/introspection/index.d.ts +1 -0
  36. package/dist/types/contracts/factories/@openzeppelin/index.d.ts +1 -0
  37. package/dist/types/contracts/factories/contracts/index.d.ts +2 -0
  38. package/dist/types/contracts/factories/contracts/v3/Core__factory.d.ts +1254 -0
  39. package/dist/types/contracts/factories/contracts/v3/Registration__factory.d.ts +214 -0
  40. package/dist/types/contracts/factories/contracts/v3/index.d.ts +2 -0
  41. package/dist/types/contracts/factories/contracts/v4/CoreV4__factory.d.ts +1890 -0
  42. package/dist/types/contracts/factories/contracts/v4/RegistrationV4__factory.d.ts +168 -0
  43. package/dist/types/contracts/factories/contracts/v4/index.d.ts +2 -0
  44. package/dist/types/contracts/factories/index.d.ts +2 -0
  45. package/dist/types/contracts/index.d.ts +19 -0
  46. package/dist/types/exportContracts.d.ts +2 -0
  47. package/dist/types/exportUtils.d.ts +1 -0
  48. package/dist/types/imx.test.d.ts +1 -0
  49. package/dist/types/index.d.ts +11 -0
  50. package/dist/types/types/api.d.ts +223 -0
  51. package/dist/types/types/errors.d.ts +9 -0
  52. package/dist/types/types/index.d.ts +6 -0
  53. package/dist/types/types/requests.d.ts +53 -0
  54. package/dist/types/types/signers.d.ts +37 -0
  55. package/dist/types/types/tokens.d.ts +51 -0
  56. package/dist/types/types/transfers.d.ts +17 -0
  57. package/dist/types/utils/convertToSignableToken.d.ts +8 -0
  58. package/dist/types/utils/crypto/crypto.d.ts +16 -0
  59. package/dist/types/utils/crypto/crypto.test.d.ts +1 -0
  60. package/dist/types/utils/crypto/index.d.ts +1 -0
  61. package/dist/types/utils/formatError.d.ts +7 -0
  62. package/dist/types/utils/formatError.test.d.ts +1 -0
  63. package/dist/types/utils/index.d.ts +5 -0
  64. package/dist/types/utils/stark/errors.d.ts +3 -0
  65. package/dist/types/utils/stark/getStarkPublicKeyFromImx.d.ts +12 -0
  66. package/dist/types/utils/stark/legacy/crypto/constants.d.ts +27 -0
  67. package/dist/types/utils/stark/legacy/crypto/crypto.d.ts +14 -0
  68. package/dist/types/utils/stark/legacy/crypto/index.d.ts +2 -0
  69. package/dist/types/utils/stark/legacy/crypto/points.d.ts +1 -0
  70. package/dist/types/utils/stark/legacy/crypto/types.d.ts +18 -0
  71. package/dist/types/utils/stark/starkCurve.d.ts +18 -0
  72. package/dist/types/utils/stark/starkCurve.test.d.ts +1 -0
  73. package/dist/types/utils/stark/starkSigner.d.ts +17 -0
  74. package/dist/types/utils/stark/starkSigner.test.d.ts +1 -0
  75. package/dist/types/workflows/errors.d.ts +3 -0
  76. package/dist/types/workflows/exchangeTransfers.d.ts +8 -0
  77. package/dist/types/workflows/index.d.ts +1 -0
  78. package/dist/types/workflows/minting.d.ts +4 -0
  79. package/dist/types/workflows/orders.d.ts +13 -0
  80. package/dist/types/workflows/trades.d.ts +8 -0
  81. package/dist/types/workflows/workflows.d.ts +29 -0
  82. package/package.json +70 -0
@@ -0,0 +1,1650 @@
1
+ import type { BaseContract, BigNumberish, BytesLike, FunctionFragment, Result, Interface, EventFragment, AddressLike, ContractRunner, ContractMethod, Listener } from "ethers";
2
+ import type { TypedContractEvent, TypedDeferredTopicFilter, TypedEventLog, TypedLogDescription, TypedListener, TypedContractMethod } from "../../common";
3
+ export interface CoreV4Interface extends Interface {
4
+ getFunction(nameOrSignature: "DEPOSIT_CANCEL_DELAY" | "FREEZE_GRACE_PERIOD" | "MAIN_GOVERNANCE_INFO_TAG" | "MAX_FORCED_ACTIONS_REQS_PER_BLOCK" | "MAX_VERIFIER_COUNT" | "STARKEX_MAX_DEFAULT_VAULT_LOCK" | "UNFREEZE_DELAY" | "VERIFIER_REMOVAL_DELAY" | "VERSION" | "announceAvailabilityVerifierRemovalIntent" | "announceVerifierRemovalIntent" | "defaultVaultWithdrawalLock" | "deposit(uint256,uint256,uint256)" | "deposit(uint256,uint256,uint256,uint256)" | "depositCancel" | "depositERC20" | "depositERC20ToVault" | "depositEth" | "depositEthToVault" | "depositNft" | "depositNftReclaim" | "depositReclaim" | "escape" | "freezeRequest" | "fullWithdrawalRequest" | "getActionCount" | "getActionHashByIndex" | "getAssetInfo" | "getCancellationRequest" | "getDepositBalance" | "getEthKey" | "getFullWithdrawalRequest" | "getLastBatchId" | "getOrderRoot" | "getOrderTreeHeight" | "getQuantizedDepositBalance" | "getQuantizedVaultBalance" | "getQuantum" | "getRegisteredAvailabilityVerifiers" | "getRegisteredVerifiers" | "getSequenceNumber" | "getVaultBalance" | "getVaultRoot" | "getVaultTreeHeight" | "getVaultWithdrawalLock" | "getWithdrawalBalance" | "initialize" | "isAssetRegistered" | "isAvailabilityVerifier" | "isFrozen" | "isOperator" | "isStrictVaultBalancePolicy" | "isTokenAdmin" | "isVaultLocked" | "isVerifier" | "lockVault" | "mainAcceptGovernance" | "mainCancelNomination" | "mainIsGovernor" | "mainNominateNewGovernor" | "mainRemoveGovernor" | "onERC721Received" | "orderRegistryAddress" | "registerAndDepositERC20" | "registerAndDepositEth" | "registerAvailabilityVerifier" | "registerEthAddress" | "registerOperator" | "registerSender" | "registerToken(uint256,bytes)" | "registerToken(uint256,bytes,uint256)" | "registerTokenAdmin" | "registerVerifier" | "removeAvailabilityVerifier" | "removeVerifier" | "setDefaultVaultWithdrawalLock" | "unFreeze" | "unregisterOperator" | "unregisterTokenAdmin" | "updateImplementationActivationTime" | "updateState" | "withdraw" | "withdrawAndMint" | "withdrawFromVault" | "withdrawNft"): FunctionFragment;
5
+ getEvent(nameOrSignatureOrTopic: "ImplementationActivationRescheduled" | "LogDefaultVaultWithdrawalLockSet" | "LogDeposit" | "LogDepositCancel" | "LogDepositCancelReclaimed" | "LogDepositNftCancelReclaimed" | "LogDepositToVault" | "LogFrozen" | "LogFullWithdrawalRequest" | "LogMintWithdrawalPerformed" | "LogMintableWithdrawalAllowed" | "LogNewGovernorAccepted" | "LogNftDeposit" | "LogNftWithdrawalAllowed" | "LogNftWithdrawalPerformed" | "LogNominatedGovernor" | "LogNominationCancelled" | "LogOperatorAdded" | "LogOperatorRemoved" | "LogRegistered" | "LogRemovalIntent" | "LogRemoved" | "LogRemovedGovernor" | "LogRootUpdate" | "LogStateTransitionFact" | "LogTokenAdminAdded" | "LogTokenAdminRemoved" | "LogTokenRegistered" | "LogUnFrozen" | "LogUserRegistered" | "LogVaultBalanceChangeApplied" | "LogVaultWithdrawalLockSet" | "LogWithdrawalAllowed" | "LogWithdrawalFromVault" | "LogWithdrawalPerformed"): EventFragment;
6
+ encodeFunctionData(functionFragment: "DEPOSIT_CANCEL_DELAY", values?: undefined): string;
7
+ encodeFunctionData(functionFragment: "FREEZE_GRACE_PERIOD", values?: undefined): string;
8
+ encodeFunctionData(functionFragment: "MAIN_GOVERNANCE_INFO_TAG", values?: undefined): string;
9
+ encodeFunctionData(functionFragment: "MAX_FORCED_ACTIONS_REQS_PER_BLOCK", values?: undefined): string;
10
+ encodeFunctionData(functionFragment: "MAX_VERIFIER_COUNT", values?: undefined): string;
11
+ encodeFunctionData(functionFragment: "STARKEX_MAX_DEFAULT_VAULT_LOCK", values?: undefined): string;
12
+ encodeFunctionData(functionFragment: "UNFREEZE_DELAY", values?: undefined): string;
13
+ encodeFunctionData(functionFragment: "VERIFIER_REMOVAL_DELAY", values?: undefined): string;
14
+ encodeFunctionData(functionFragment: "VERSION", values?: undefined): string;
15
+ encodeFunctionData(functionFragment: "announceAvailabilityVerifierRemovalIntent", values: [AddressLike]): string;
16
+ encodeFunctionData(functionFragment: "announceVerifierRemovalIntent", values: [AddressLike]): string;
17
+ encodeFunctionData(functionFragment: "defaultVaultWithdrawalLock", values?: undefined): string;
18
+ encodeFunctionData(functionFragment: "deposit(uint256,uint256,uint256)", values: [BigNumberish, BigNumberish, BigNumberish]): string;
19
+ encodeFunctionData(functionFragment: "deposit(uint256,uint256,uint256,uint256)", values: [BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
20
+ encodeFunctionData(functionFragment: "depositCancel", values: [BigNumberish, BigNumberish, BigNumberish]): string;
21
+ encodeFunctionData(functionFragment: "depositERC20", values: [BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
22
+ encodeFunctionData(functionFragment: "depositERC20ToVault", values: [BigNumberish, BigNumberish, BigNumberish]): string;
23
+ encodeFunctionData(functionFragment: "depositEth", values: [BigNumberish, BigNumberish, BigNumberish]): string;
24
+ encodeFunctionData(functionFragment: "depositEthToVault", values: [BigNumberish, BigNumberish]): string;
25
+ encodeFunctionData(functionFragment: "depositNft", values: [BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
26
+ encodeFunctionData(functionFragment: "depositNftReclaim", values: [BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
27
+ encodeFunctionData(functionFragment: "depositReclaim", values: [BigNumberish, BigNumberish, BigNumberish]): string;
28
+ encodeFunctionData(functionFragment: "escape", values: [BigNumberish, BigNumberish, BigNumberish, BigNumberish]): string;
29
+ encodeFunctionData(functionFragment: "freezeRequest", values: [BigNumberish, BigNumberish]): string;
30
+ encodeFunctionData(functionFragment: "fullWithdrawalRequest", values: [BigNumberish, BigNumberish]): string;
31
+ encodeFunctionData(functionFragment: "getActionCount", values?: undefined): string;
32
+ encodeFunctionData(functionFragment: "getActionHashByIndex", values: [BigNumberish]): string;
33
+ encodeFunctionData(functionFragment: "getAssetInfo", values: [BigNumberish]): string;
34
+ encodeFunctionData(functionFragment: "getCancellationRequest", values: [BigNumberish, BigNumberish, BigNumberish]): string;
35
+ encodeFunctionData(functionFragment: "getDepositBalance", values: [BigNumberish, BigNumberish, BigNumberish]): string;
36
+ encodeFunctionData(functionFragment: "getEthKey", values: [BigNumberish]): string;
37
+ encodeFunctionData(functionFragment: "getFullWithdrawalRequest", values: [BigNumberish, BigNumberish]): string;
38
+ encodeFunctionData(functionFragment: "getLastBatchId", values?: undefined): string;
39
+ encodeFunctionData(functionFragment: "getOrderRoot", values?: undefined): string;
40
+ encodeFunctionData(functionFragment: "getOrderTreeHeight", values?: undefined): string;
41
+ encodeFunctionData(functionFragment: "getQuantizedDepositBalance", values: [BigNumberish, BigNumberish, BigNumberish]): string;
42
+ encodeFunctionData(functionFragment: "getQuantizedVaultBalance", values: [AddressLike, BigNumberish, BigNumberish]): string;
43
+ encodeFunctionData(functionFragment: "getQuantum", values: [BigNumberish]): string;
44
+ encodeFunctionData(functionFragment: "getRegisteredAvailabilityVerifiers", values?: undefined): string;
45
+ encodeFunctionData(functionFragment: "getRegisteredVerifiers", values?: undefined): string;
46
+ encodeFunctionData(functionFragment: "getSequenceNumber", values?: undefined): string;
47
+ encodeFunctionData(functionFragment: "getVaultBalance", values: [AddressLike, BigNumberish, BigNumberish]): string;
48
+ encodeFunctionData(functionFragment: "getVaultRoot", values?: undefined): string;
49
+ encodeFunctionData(functionFragment: "getVaultTreeHeight", values?: undefined): string;
50
+ encodeFunctionData(functionFragment: "getVaultWithdrawalLock", values: [AddressLike, BigNumberish, BigNumberish]): string;
51
+ encodeFunctionData(functionFragment: "getWithdrawalBalance", values: [BigNumberish, BigNumberish]): string;
52
+ encodeFunctionData(functionFragment: "initialize", values: [BytesLike]): string;
53
+ encodeFunctionData(functionFragment: "isAssetRegistered", values: [BigNumberish]): string;
54
+ encodeFunctionData(functionFragment: "isAvailabilityVerifier", values: [AddressLike]): string;
55
+ encodeFunctionData(functionFragment: "isFrozen", values?: undefined): string;
56
+ encodeFunctionData(functionFragment: "isOperator", values: [AddressLike]): string;
57
+ encodeFunctionData(functionFragment: "isStrictVaultBalancePolicy", values?: undefined): string;
58
+ encodeFunctionData(functionFragment: "isTokenAdmin", values: [AddressLike]): string;
59
+ encodeFunctionData(functionFragment: "isVaultLocked", values: [AddressLike, BigNumberish, BigNumberish]): string;
60
+ encodeFunctionData(functionFragment: "isVerifier", values: [AddressLike]): string;
61
+ encodeFunctionData(functionFragment: "lockVault", values: [BigNumberish, BigNumberish, BigNumberish]): string;
62
+ encodeFunctionData(functionFragment: "mainAcceptGovernance", values?: undefined): string;
63
+ encodeFunctionData(functionFragment: "mainCancelNomination", values?: undefined): string;
64
+ encodeFunctionData(functionFragment: "mainIsGovernor", values: [AddressLike]): string;
65
+ encodeFunctionData(functionFragment: "mainNominateNewGovernor", values: [AddressLike]): string;
66
+ encodeFunctionData(functionFragment: "mainRemoveGovernor", values: [AddressLike]): string;
67
+ encodeFunctionData(functionFragment: "onERC721Received", values: [AddressLike, AddressLike, BigNumberish, BytesLike]): string;
68
+ encodeFunctionData(functionFragment: "orderRegistryAddress", values?: undefined): string;
69
+ encodeFunctionData(functionFragment: "registerAndDepositERC20", values: [
70
+ AddressLike,
71
+ BigNumberish,
72
+ BytesLike,
73
+ BigNumberish,
74
+ BigNumberish,
75
+ BigNumberish
76
+ ]): string;
77
+ encodeFunctionData(functionFragment: "registerAndDepositEth", values: [AddressLike, BigNumberish, BytesLike, BigNumberish, BigNumberish]): string;
78
+ encodeFunctionData(functionFragment: "registerAvailabilityVerifier", values: [AddressLike, string]): string;
79
+ encodeFunctionData(functionFragment: "registerEthAddress", values: [AddressLike, BigNumberish, BytesLike]): string;
80
+ encodeFunctionData(functionFragment: "registerOperator", values: [AddressLike]): string;
81
+ encodeFunctionData(functionFragment: "registerSender", values: [BigNumberish, BytesLike]): string;
82
+ encodeFunctionData(functionFragment: "registerToken(uint256,bytes)", values: [BigNumberish, BytesLike]): string;
83
+ encodeFunctionData(functionFragment: "registerToken(uint256,bytes,uint256)", values: [BigNumberish, BytesLike, BigNumberish]): string;
84
+ encodeFunctionData(functionFragment: "registerTokenAdmin", values: [AddressLike]): string;
85
+ encodeFunctionData(functionFragment: "registerVerifier", values: [AddressLike, string]): string;
86
+ encodeFunctionData(functionFragment: "removeAvailabilityVerifier", values: [AddressLike]): string;
87
+ encodeFunctionData(functionFragment: "removeVerifier", values: [AddressLike]): string;
88
+ encodeFunctionData(functionFragment: "setDefaultVaultWithdrawalLock", values: [BigNumberish]): string;
89
+ encodeFunctionData(functionFragment: "unFreeze", values?: undefined): string;
90
+ encodeFunctionData(functionFragment: "unregisterOperator", values: [AddressLike]): string;
91
+ encodeFunctionData(functionFragment: "unregisterTokenAdmin", values: [AddressLike]): string;
92
+ encodeFunctionData(functionFragment: "updateImplementationActivationTime", values: [AddressLike, BytesLike, boolean]): string;
93
+ encodeFunctionData(functionFragment: "updateState", values: [BigNumberish[], BigNumberish[]]): string;
94
+ encodeFunctionData(functionFragment: "withdraw", values: [BigNumberish, BigNumberish]): string;
95
+ encodeFunctionData(functionFragment: "withdrawAndMint", values: [BigNumberish, BigNumberish, BytesLike]): string;
96
+ encodeFunctionData(functionFragment: "withdrawFromVault", values: [BigNumberish, BigNumberish, BigNumberish]): string;
97
+ encodeFunctionData(functionFragment: "withdrawNft", values: [BigNumberish, BigNumberish, BigNumberish]): string;
98
+ decodeFunctionResult(functionFragment: "DEPOSIT_CANCEL_DELAY", data: BytesLike): Result;
99
+ decodeFunctionResult(functionFragment: "FREEZE_GRACE_PERIOD", data: BytesLike): Result;
100
+ decodeFunctionResult(functionFragment: "MAIN_GOVERNANCE_INFO_TAG", data: BytesLike): Result;
101
+ decodeFunctionResult(functionFragment: "MAX_FORCED_ACTIONS_REQS_PER_BLOCK", data: BytesLike): Result;
102
+ decodeFunctionResult(functionFragment: "MAX_VERIFIER_COUNT", data: BytesLike): Result;
103
+ decodeFunctionResult(functionFragment: "STARKEX_MAX_DEFAULT_VAULT_LOCK", data: BytesLike): Result;
104
+ decodeFunctionResult(functionFragment: "UNFREEZE_DELAY", data: BytesLike): Result;
105
+ decodeFunctionResult(functionFragment: "VERIFIER_REMOVAL_DELAY", data: BytesLike): Result;
106
+ decodeFunctionResult(functionFragment: "VERSION", data: BytesLike): Result;
107
+ decodeFunctionResult(functionFragment: "announceAvailabilityVerifierRemovalIntent", data: BytesLike): Result;
108
+ decodeFunctionResult(functionFragment: "announceVerifierRemovalIntent", data: BytesLike): Result;
109
+ decodeFunctionResult(functionFragment: "defaultVaultWithdrawalLock", data: BytesLike): Result;
110
+ decodeFunctionResult(functionFragment: "deposit(uint256,uint256,uint256)", data: BytesLike): Result;
111
+ decodeFunctionResult(functionFragment: "deposit(uint256,uint256,uint256,uint256)", data: BytesLike): Result;
112
+ decodeFunctionResult(functionFragment: "depositCancel", data: BytesLike): Result;
113
+ decodeFunctionResult(functionFragment: "depositERC20", data: BytesLike): Result;
114
+ decodeFunctionResult(functionFragment: "depositERC20ToVault", data: BytesLike): Result;
115
+ decodeFunctionResult(functionFragment: "depositEth", data: BytesLike): Result;
116
+ decodeFunctionResult(functionFragment: "depositEthToVault", data: BytesLike): Result;
117
+ decodeFunctionResult(functionFragment: "depositNft", data: BytesLike): Result;
118
+ decodeFunctionResult(functionFragment: "depositNftReclaim", data: BytesLike): Result;
119
+ decodeFunctionResult(functionFragment: "depositReclaim", data: BytesLike): Result;
120
+ decodeFunctionResult(functionFragment: "escape", data: BytesLike): Result;
121
+ decodeFunctionResult(functionFragment: "freezeRequest", data: BytesLike): Result;
122
+ decodeFunctionResult(functionFragment: "fullWithdrawalRequest", data: BytesLike): Result;
123
+ decodeFunctionResult(functionFragment: "getActionCount", data: BytesLike): Result;
124
+ decodeFunctionResult(functionFragment: "getActionHashByIndex", data: BytesLike): Result;
125
+ decodeFunctionResult(functionFragment: "getAssetInfo", data: BytesLike): Result;
126
+ decodeFunctionResult(functionFragment: "getCancellationRequest", data: BytesLike): Result;
127
+ decodeFunctionResult(functionFragment: "getDepositBalance", data: BytesLike): Result;
128
+ decodeFunctionResult(functionFragment: "getEthKey", data: BytesLike): Result;
129
+ decodeFunctionResult(functionFragment: "getFullWithdrawalRequest", data: BytesLike): Result;
130
+ decodeFunctionResult(functionFragment: "getLastBatchId", data: BytesLike): Result;
131
+ decodeFunctionResult(functionFragment: "getOrderRoot", data: BytesLike): Result;
132
+ decodeFunctionResult(functionFragment: "getOrderTreeHeight", data: BytesLike): Result;
133
+ decodeFunctionResult(functionFragment: "getQuantizedDepositBalance", data: BytesLike): Result;
134
+ decodeFunctionResult(functionFragment: "getQuantizedVaultBalance", data: BytesLike): Result;
135
+ decodeFunctionResult(functionFragment: "getQuantum", data: BytesLike): Result;
136
+ decodeFunctionResult(functionFragment: "getRegisteredAvailabilityVerifiers", data: BytesLike): Result;
137
+ decodeFunctionResult(functionFragment: "getRegisteredVerifiers", data: BytesLike): Result;
138
+ decodeFunctionResult(functionFragment: "getSequenceNumber", data: BytesLike): Result;
139
+ decodeFunctionResult(functionFragment: "getVaultBalance", data: BytesLike): Result;
140
+ decodeFunctionResult(functionFragment: "getVaultRoot", data: BytesLike): Result;
141
+ decodeFunctionResult(functionFragment: "getVaultTreeHeight", data: BytesLike): Result;
142
+ decodeFunctionResult(functionFragment: "getVaultWithdrawalLock", data: BytesLike): Result;
143
+ decodeFunctionResult(functionFragment: "getWithdrawalBalance", data: BytesLike): Result;
144
+ decodeFunctionResult(functionFragment: "initialize", data: BytesLike): Result;
145
+ decodeFunctionResult(functionFragment: "isAssetRegistered", data: BytesLike): Result;
146
+ decodeFunctionResult(functionFragment: "isAvailabilityVerifier", data: BytesLike): Result;
147
+ decodeFunctionResult(functionFragment: "isFrozen", data: BytesLike): Result;
148
+ decodeFunctionResult(functionFragment: "isOperator", data: BytesLike): Result;
149
+ decodeFunctionResult(functionFragment: "isStrictVaultBalancePolicy", data: BytesLike): Result;
150
+ decodeFunctionResult(functionFragment: "isTokenAdmin", data: BytesLike): Result;
151
+ decodeFunctionResult(functionFragment: "isVaultLocked", data: BytesLike): Result;
152
+ decodeFunctionResult(functionFragment: "isVerifier", data: BytesLike): Result;
153
+ decodeFunctionResult(functionFragment: "lockVault", data: BytesLike): Result;
154
+ decodeFunctionResult(functionFragment: "mainAcceptGovernance", data: BytesLike): Result;
155
+ decodeFunctionResult(functionFragment: "mainCancelNomination", data: BytesLike): Result;
156
+ decodeFunctionResult(functionFragment: "mainIsGovernor", data: BytesLike): Result;
157
+ decodeFunctionResult(functionFragment: "mainNominateNewGovernor", data: BytesLike): Result;
158
+ decodeFunctionResult(functionFragment: "mainRemoveGovernor", data: BytesLike): Result;
159
+ decodeFunctionResult(functionFragment: "onERC721Received", data: BytesLike): Result;
160
+ decodeFunctionResult(functionFragment: "orderRegistryAddress", data: BytesLike): Result;
161
+ decodeFunctionResult(functionFragment: "registerAndDepositERC20", data: BytesLike): Result;
162
+ decodeFunctionResult(functionFragment: "registerAndDepositEth", data: BytesLike): Result;
163
+ decodeFunctionResult(functionFragment: "registerAvailabilityVerifier", data: BytesLike): Result;
164
+ decodeFunctionResult(functionFragment: "registerEthAddress", data: BytesLike): Result;
165
+ decodeFunctionResult(functionFragment: "registerOperator", data: BytesLike): Result;
166
+ decodeFunctionResult(functionFragment: "registerSender", data: BytesLike): Result;
167
+ decodeFunctionResult(functionFragment: "registerToken(uint256,bytes)", data: BytesLike): Result;
168
+ decodeFunctionResult(functionFragment: "registerToken(uint256,bytes,uint256)", data: BytesLike): Result;
169
+ decodeFunctionResult(functionFragment: "registerTokenAdmin", data: BytesLike): Result;
170
+ decodeFunctionResult(functionFragment: "registerVerifier", data: BytesLike): Result;
171
+ decodeFunctionResult(functionFragment: "removeAvailabilityVerifier", data: BytesLike): Result;
172
+ decodeFunctionResult(functionFragment: "removeVerifier", data: BytesLike): Result;
173
+ decodeFunctionResult(functionFragment: "setDefaultVaultWithdrawalLock", data: BytesLike): Result;
174
+ decodeFunctionResult(functionFragment: "unFreeze", data: BytesLike): Result;
175
+ decodeFunctionResult(functionFragment: "unregisterOperator", data: BytesLike): Result;
176
+ decodeFunctionResult(functionFragment: "unregisterTokenAdmin", data: BytesLike): Result;
177
+ decodeFunctionResult(functionFragment: "updateImplementationActivationTime", data: BytesLike): Result;
178
+ decodeFunctionResult(functionFragment: "updateState", data: BytesLike): Result;
179
+ decodeFunctionResult(functionFragment: "withdraw", data: BytesLike): Result;
180
+ decodeFunctionResult(functionFragment: "withdrawAndMint", data: BytesLike): Result;
181
+ decodeFunctionResult(functionFragment: "withdrawFromVault", data: BytesLike): Result;
182
+ decodeFunctionResult(functionFragment: "withdrawNft", data: BytesLike): Result;
183
+ }
184
+ export declare namespace ImplementationActivationRescheduledEvent {
185
+ type InputTuple = [
186
+ implementation: AddressLike,
187
+ updatedActivationTime: BigNumberish
188
+ ];
189
+ type OutputTuple = [
190
+ implementation: string,
191
+ updatedActivationTime: bigint
192
+ ];
193
+ interface OutputObject {
194
+ implementation: string;
195
+ updatedActivationTime: bigint;
196
+ }
197
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
198
+ type Filter = TypedDeferredTopicFilter<Event>;
199
+ type Log = TypedEventLog<Event>;
200
+ type LogDescription = TypedLogDescription<Event>;
201
+ }
202
+ export declare namespace LogDefaultVaultWithdrawalLockSetEvent {
203
+ type InputTuple = [newDefaultLockTime: BigNumberish];
204
+ type OutputTuple = [newDefaultLockTime: bigint];
205
+ interface OutputObject {
206
+ newDefaultLockTime: bigint;
207
+ }
208
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
209
+ type Filter = TypedDeferredTopicFilter<Event>;
210
+ type Log = TypedEventLog<Event>;
211
+ type LogDescription = TypedLogDescription<Event>;
212
+ }
213
+ export declare namespace LogDepositEvent {
214
+ type InputTuple = [
215
+ depositorEthKey: AddressLike,
216
+ starkKey: BigNumberish,
217
+ vaultId: BigNumberish,
218
+ assetType: BigNumberish,
219
+ nonQuantizedAmount: BigNumberish,
220
+ quantizedAmount: BigNumberish
221
+ ];
222
+ type OutputTuple = [
223
+ depositorEthKey: string,
224
+ starkKey: bigint,
225
+ vaultId: bigint,
226
+ assetType: bigint,
227
+ nonQuantizedAmount: bigint,
228
+ quantizedAmount: bigint
229
+ ];
230
+ interface OutputObject {
231
+ depositorEthKey: string;
232
+ starkKey: bigint;
233
+ vaultId: bigint;
234
+ assetType: bigint;
235
+ nonQuantizedAmount: bigint;
236
+ quantizedAmount: bigint;
237
+ }
238
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
239
+ type Filter = TypedDeferredTopicFilter<Event>;
240
+ type Log = TypedEventLog<Event>;
241
+ type LogDescription = TypedLogDescription<Event>;
242
+ }
243
+ export declare namespace LogDepositCancelEvent {
244
+ type InputTuple = [
245
+ starkKey: BigNumberish,
246
+ vaultId: BigNumberish,
247
+ assetId: BigNumberish
248
+ ];
249
+ type OutputTuple = [
250
+ starkKey: bigint,
251
+ vaultId: bigint,
252
+ assetId: bigint
253
+ ];
254
+ interface OutputObject {
255
+ starkKey: bigint;
256
+ vaultId: bigint;
257
+ assetId: bigint;
258
+ }
259
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
260
+ type Filter = TypedDeferredTopicFilter<Event>;
261
+ type Log = TypedEventLog<Event>;
262
+ type LogDescription = TypedLogDescription<Event>;
263
+ }
264
+ export declare namespace LogDepositCancelReclaimedEvent {
265
+ type InputTuple = [
266
+ starkKey: BigNumberish,
267
+ vaultId: BigNumberish,
268
+ assetType: BigNumberish,
269
+ nonQuantizedAmount: BigNumberish,
270
+ quantizedAmount: BigNumberish
271
+ ];
272
+ type OutputTuple = [
273
+ starkKey: bigint,
274
+ vaultId: bigint,
275
+ assetType: bigint,
276
+ nonQuantizedAmount: bigint,
277
+ quantizedAmount: bigint
278
+ ];
279
+ interface OutputObject {
280
+ starkKey: bigint;
281
+ vaultId: bigint;
282
+ assetType: bigint;
283
+ nonQuantizedAmount: bigint;
284
+ quantizedAmount: bigint;
285
+ }
286
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
287
+ type Filter = TypedDeferredTopicFilter<Event>;
288
+ type Log = TypedEventLog<Event>;
289
+ type LogDescription = TypedLogDescription<Event>;
290
+ }
291
+ export declare namespace LogDepositNftCancelReclaimedEvent {
292
+ type InputTuple = [
293
+ starkKey: BigNumberish,
294
+ vaultId: BigNumberish,
295
+ assetType: BigNumberish,
296
+ tokenId: BigNumberish,
297
+ assetId: BigNumberish
298
+ ];
299
+ type OutputTuple = [
300
+ starkKey: bigint,
301
+ vaultId: bigint,
302
+ assetType: bigint,
303
+ tokenId: bigint,
304
+ assetId: bigint
305
+ ];
306
+ interface OutputObject {
307
+ starkKey: bigint;
308
+ vaultId: bigint;
309
+ assetType: bigint;
310
+ tokenId: bigint;
311
+ assetId: bigint;
312
+ }
313
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
314
+ type Filter = TypedDeferredTopicFilter<Event>;
315
+ type Log = TypedEventLog<Event>;
316
+ type LogDescription = TypedLogDescription<Event>;
317
+ }
318
+ export declare namespace LogDepositToVaultEvent {
319
+ type InputTuple = [
320
+ ethKey: AddressLike,
321
+ assetId: BigNumberish,
322
+ vaultId: BigNumberish,
323
+ nonQuantizedAmount: BigNumberish,
324
+ quantizedAmount: BigNumberish
325
+ ];
326
+ type OutputTuple = [
327
+ ethKey: string,
328
+ assetId: bigint,
329
+ vaultId: bigint,
330
+ nonQuantizedAmount: bigint,
331
+ quantizedAmount: bigint
332
+ ];
333
+ interface OutputObject {
334
+ ethKey: string;
335
+ assetId: bigint;
336
+ vaultId: bigint;
337
+ nonQuantizedAmount: bigint;
338
+ quantizedAmount: bigint;
339
+ }
340
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
341
+ type Filter = TypedDeferredTopicFilter<Event>;
342
+ type Log = TypedEventLog<Event>;
343
+ type LogDescription = TypedLogDescription<Event>;
344
+ }
345
+ export declare namespace LogFrozenEvent {
346
+ type InputTuple = [];
347
+ type OutputTuple = [];
348
+ interface OutputObject {
349
+ }
350
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
351
+ type Filter = TypedDeferredTopicFilter<Event>;
352
+ type Log = TypedEventLog<Event>;
353
+ type LogDescription = TypedLogDescription<Event>;
354
+ }
355
+ export declare namespace LogFullWithdrawalRequestEvent {
356
+ type InputTuple = [starkKey: BigNumberish, vaultId: BigNumberish];
357
+ type OutputTuple = [starkKey: bigint, vaultId: bigint];
358
+ interface OutputObject {
359
+ starkKey: bigint;
360
+ vaultId: bigint;
361
+ }
362
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
363
+ type Filter = TypedDeferredTopicFilter<Event>;
364
+ type Log = TypedEventLog<Event>;
365
+ type LogDescription = TypedLogDescription<Event>;
366
+ }
367
+ export declare namespace LogMintWithdrawalPerformedEvent {
368
+ type InputTuple = [
369
+ ownerKey: BigNumberish,
370
+ assetType: BigNumberish,
371
+ nonQuantizedAmount: BigNumberish,
372
+ quantizedAmount: BigNumberish,
373
+ assetId: BigNumberish
374
+ ];
375
+ type OutputTuple = [
376
+ ownerKey: bigint,
377
+ assetType: bigint,
378
+ nonQuantizedAmount: bigint,
379
+ quantizedAmount: bigint,
380
+ assetId: bigint
381
+ ];
382
+ interface OutputObject {
383
+ ownerKey: bigint;
384
+ assetType: bigint;
385
+ nonQuantizedAmount: bigint;
386
+ quantizedAmount: bigint;
387
+ assetId: bigint;
388
+ }
389
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
390
+ type Filter = TypedDeferredTopicFilter<Event>;
391
+ type Log = TypedEventLog<Event>;
392
+ type LogDescription = TypedLogDescription<Event>;
393
+ }
394
+ export declare namespace LogMintableWithdrawalAllowedEvent {
395
+ type InputTuple = [
396
+ ownerKey: BigNumberish,
397
+ assetId: BigNumberish,
398
+ quantizedAmount: BigNumberish
399
+ ];
400
+ type OutputTuple = [
401
+ ownerKey: bigint,
402
+ assetId: bigint,
403
+ quantizedAmount: bigint
404
+ ];
405
+ interface OutputObject {
406
+ ownerKey: bigint;
407
+ assetId: bigint;
408
+ quantizedAmount: bigint;
409
+ }
410
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
411
+ type Filter = TypedDeferredTopicFilter<Event>;
412
+ type Log = TypedEventLog<Event>;
413
+ type LogDescription = TypedLogDescription<Event>;
414
+ }
415
+ export declare namespace LogNewGovernorAcceptedEvent {
416
+ type InputTuple = [acceptedGovernor: AddressLike];
417
+ type OutputTuple = [acceptedGovernor: string];
418
+ interface OutputObject {
419
+ acceptedGovernor: string;
420
+ }
421
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
422
+ type Filter = TypedDeferredTopicFilter<Event>;
423
+ type Log = TypedEventLog<Event>;
424
+ type LogDescription = TypedLogDescription<Event>;
425
+ }
426
+ export declare namespace LogNftDepositEvent {
427
+ type InputTuple = [
428
+ depositorEthKey: AddressLike,
429
+ starkKey: BigNumberish,
430
+ vaultId: BigNumberish,
431
+ assetType: BigNumberish,
432
+ tokenId: BigNumberish,
433
+ assetId: BigNumberish
434
+ ];
435
+ type OutputTuple = [
436
+ depositorEthKey: string,
437
+ starkKey: bigint,
438
+ vaultId: bigint,
439
+ assetType: bigint,
440
+ tokenId: bigint,
441
+ assetId: bigint
442
+ ];
443
+ interface OutputObject {
444
+ depositorEthKey: string;
445
+ starkKey: bigint;
446
+ vaultId: bigint;
447
+ assetType: bigint;
448
+ tokenId: bigint;
449
+ assetId: bigint;
450
+ }
451
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
452
+ type Filter = TypedDeferredTopicFilter<Event>;
453
+ type Log = TypedEventLog<Event>;
454
+ type LogDescription = TypedLogDescription<Event>;
455
+ }
456
+ export declare namespace LogNftWithdrawalAllowedEvent {
457
+ type InputTuple = [ownerKey: BigNumberish, assetId: BigNumberish];
458
+ type OutputTuple = [ownerKey: bigint, assetId: bigint];
459
+ interface OutputObject {
460
+ ownerKey: bigint;
461
+ assetId: bigint;
462
+ }
463
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
464
+ type Filter = TypedDeferredTopicFilter<Event>;
465
+ type Log = TypedEventLog<Event>;
466
+ type LogDescription = TypedLogDescription<Event>;
467
+ }
468
+ export declare namespace LogNftWithdrawalPerformedEvent {
469
+ type InputTuple = [
470
+ ownerKey: BigNumberish,
471
+ assetType: BigNumberish,
472
+ tokenId: BigNumberish,
473
+ assetId: BigNumberish,
474
+ recipient: AddressLike
475
+ ];
476
+ type OutputTuple = [
477
+ ownerKey: bigint,
478
+ assetType: bigint,
479
+ tokenId: bigint,
480
+ assetId: bigint,
481
+ recipient: string
482
+ ];
483
+ interface OutputObject {
484
+ ownerKey: bigint;
485
+ assetType: bigint;
486
+ tokenId: bigint;
487
+ assetId: bigint;
488
+ recipient: string;
489
+ }
490
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
491
+ type Filter = TypedDeferredTopicFilter<Event>;
492
+ type Log = TypedEventLog<Event>;
493
+ type LogDescription = TypedLogDescription<Event>;
494
+ }
495
+ export declare namespace LogNominatedGovernorEvent {
496
+ type InputTuple = [nominatedGovernor: AddressLike];
497
+ type OutputTuple = [nominatedGovernor: string];
498
+ interface OutputObject {
499
+ nominatedGovernor: string;
500
+ }
501
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
502
+ type Filter = TypedDeferredTopicFilter<Event>;
503
+ type Log = TypedEventLog<Event>;
504
+ type LogDescription = TypedLogDescription<Event>;
505
+ }
506
+ export declare namespace LogNominationCancelledEvent {
507
+ type InputTuple = [];
508
+ type OutputTuple = [];
509
+ interface OutputObject {
510
+ }
511
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
512
+ type Filter = TypedDeferredTopicFilter<Event>;
513
+ type Log = TypedEventLog<Event>;
514
+ type LogDescription = TypedLogDescription<Event>;
515
+ }
516
+ export declare namespace LogOperatorAddedEvent {
517
+ type InputTuple = [operator: AddressLike];
518
+ type OutputTuple = [operator: string];
519
+ interface OutputObject {
520
+ operator: string;
521
+ }
522
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
523
+ type Filter = TypedDeferredTopicFilter<Event>;
524
+ type Log = TypedEventLog<Event>;
525
+ type LogDescription = TypedLogDescription<Event>;
526
+ }
527
+ export declare namespace LogOperatorRemovedEvent {
528
+ type InputTuple = [operator: AddressLike];
529
+ type OutputTuple = [operator: string];
530
+ interface OutputObject {
531
+ operator: string;
532
+ }
533
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
534
+ type Filter = TypedDeferredTopicFilter<Event>;
535
+ type Log = TypedEventLog<Event>;
536
+ type LogDescription = TypedLogDescription<Event>;
537
+ }
538
+ export declare namespace LogRegisteredEvent {
539
+ type InputTuple = [entry: AddressLike, entryId: string];
540
+ type OutputTuple = [entry: string, entryId: string];
541
+ interface OutputObject {
542
+ entry: string;
543
+ entryId: string;
544
+ }
545
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
546
+ type Filter = TypedDeferredTopicFilter<Event>;
547
+ type Log = TypedEventLog<Event>;
548
+ type LogDescription = TypedLogDescription<Event>;
549
+ }
550
+ export declare namespace LogRemovalIntentEvent {
551
+ type InputTuple = [entry: AddressLike, entryId: string];
552
+ type OutputTuple = [entry: string, entryId: string];
553
+ interface OutputObject {
554
+ entry: string;
555
+ entryId: string;
556
+ }
557
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
558
+ type Filter = TypedDeferredTopicFilter<Event>;
559
+ type Log = TypedEventLog<Event>;
560
+ type LogDescription = TypedLogDescription<Event>;
561
+ }
562
+ export declare namespace LogRemovedEvent {
563
+ type InputTuple = [entry: AddressLike, entryId: string];
564
+ type OutputTuple = [entry: string, entryId: string];
565
+ interface OutputObject {
566
+ entry: string;
567
+ entryId: string;
568
+ }
569
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
570
+ type Filter = TypedDeferredTopicFilter<Event>;
571
+ type Log = TypedEventLog<Event>;
572
+ type LogDescription = TypedLogDescription<Event>;
573
+ }
574
+ export declare namespace LogRemovedGovernorEvent {
575
+ type InputTuple = [removedGovernor: AddressLike];
576
+ type OutputTuple = [removedGovernor: string];
577
+ interface OutputObject {
578
+ removedGovernor: string;
579
+ }
580
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
581
+ type Filter = TypedDeferredTopicFilter<Event>;
582
+ type Log = TypedEventLog<Event>;
583
+ type LogDescription = TypedLogDescription<Event>;
584
+ }
585
+ export declare namespace LogRootUpdateEvent {
586
+ type InputTuple = [
587
+ sequenceNumber: BigNumberish,
588
+ batchId: BigNumberish,
589
+ vaultRoot: BigNumberish,
590
+ orderRoot: BigNumberish
591
+ ];
592
+ type OutputTuple = [
593
+ sequenceNumber: bigint,
594
+ batchId: bigint,
595
+ vaultRoot: bigint,
596
+ orderRoot: bigint
597
+ ];
598
+ interface OutputObject {
599
+ sequenceNumber: bigint;
600
+ batchId: bigint;
601
+ vaultRoot: bigint;
602
+ orderRoot: bigint;
603
+ }
604
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
605
+ type Filter = TypedDeferredTopicFilter<Event>;
606
+ type Log = TypedEventLog<Event>;
607
+ type LogDescription = TypedLogDescription<Event>;
608
+ }
609
+ export declare namespace LogStateTransitionFactEvent {
610
+ type InputTuple = [stateTransitionFact: BytesLike];
611
+ type OutputTuple = [stateTransitionFact: string];
612
+ interface OutputObject {
613
+ stateTransitionFact: string;
614
+ }
615
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
616
+ type Filter = TypedDeferredTopicFilter<Event>;
617
+ type Log = TypedEventLog<Event>;
618
+ type LogDescription = TypedLogDescription<Event>;
619
+ }
620
+ export declare namespace LogTokenAdminAddedEvent {
621
+ type InputTuple = [tokenAdmin: AddressLike];
622
+ type OutputTuple = [tokenAdmin: string];
623
+ interface OutputObject {
624
+ tokenAdmin: string;
625
+ }
626
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
627
+ type Filter = TypedDeferredTopicFilter<Event>;
628
+ type Log = TypedEventLog<Event>;
629
+ type LogDescription = TypedLogDescription<Event>;
630
+ }
631
+ export declare namespace LogTokenAdminRemovedEvent {
632
+ type InputTuple = [tokenAdmin: AddressLike];
633
+ type OutputTuple = [tokenAdmin: string];
634
+ interface OutputObject {
635
+ tokenAdmin: string;
636
+ }
637
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
638
+ type Filter = TypedDeferredTopicFilter<Event>;
639
+ type Log = TypedEventLog<Event>;
640
+ type LogDescription = TypedLogDescription<Event>;
641
+ }
642
+ export declare namespace LogTokenRegisteredEvent {
643
+ type InputTuple = [
644
+ assetType: BigNumberish,
645
+ assetInfo: BytesLike,
646
+ quantum: BigNumberish
647
+ ];
648
+ type OutputTuple = [
649
+ assetType: bigint,
650
+ assetInfo: string,
651
+ quantum: bigint
652
+ ];
653
+ interface OutputObject {
654
+ assetType: bigint;
655
+ assetInfo: string;
656
+ quantum: bigint;
657
+ }
658
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
659
+ type Filter = TypedDeferredTopicFilter<Event>;
660
+ type Log = TypedEventLog<Event>;
661
+ type LogDescription = TypedLogDescription<Event>;
662
+ }
663
+ export declare namespace LogUnFrozenEvent {
664
+ type InputTuple = [];
665
+ type OutputTuple = [];
666
+ interface OutputObject {
667
+ }
668
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
669
+ type Filter = TypedDeferredTopicFilter<Event>;
670
+ type Log = TypedEventLog<Event>;
671
+ type LogDescription = TypedLogDescription<Event>;
672
+ }
673
+ export declare namespace LogUserRegisteredEvent {
674
+ type InputTuple = [
675
+ ethKey: AddressLike,
676
+ starkKey: BigNumberish,
677
+ sender: AddressLike
678
+ ];
679
+ type OutputTuple = [ethKey: string, starkKey: bigint, sender: string];
680
+ interface OutputObject {
681
+ ethKey: string;
682
+ starkKey: bigint;
683
+ sender: string;
684
+ }
685
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
686
+ type Filter = TypedDeferredTopicFilter<Event>;
687
+ type Log = TypedEventLog<Event>;
688
+ type LogDescription = TypedLogDescription<Event>;
689
+ }
690
+ export declare namespace LogVaultBalanceChangeAppliedEvent {
691
+ type InputTuple = [
692
+ ethKey: AddressLike,
693
+ assetId: BigNumberish,
694
+ vaultId: BigNumberish,
695
+ quantizedAmountChange: BigNumberish
696
+ ];
697
+ type OutputTuple = [
698
+ ethKey: string,
699
+ assetId: bigint,
700
+ vaultId: bigint,
701
+ quantizedAmountChange: bigint
702
+ ];
703
+ interface OutputObject {
704
+ ethKey: string;
705
+ assetId: bigint;
706
+ vaultId: bigint;
707
+ quantizedAmountChange: bigint;
708
+ }
709
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
710
+ type Filter = TypedDeferredTopicFilter<Event>;
711
+ type Log = TypedEventLog<Event>;
712
+ type LogDescription = TypedLogDescription<Event>;
713
+ }
714
+ export declare namespace LogVaultWithdrawalLockSetEvent {
715
+ type InputTuple = [
716
+ ethKey: AddressLike,
717
+ assetId: BigNumberish,
718
+ vaultId: BigNumberish,
719
+ timeRelease: BigNumberish
720
+ ];
721
+ type OutputTuple = [
722
+ ethKey: string,
723
+ assetId: bigint,
724
+ vaultId: bigint,
725
+ timeRelease: bigint
726
+ ];
727
+ interface OutputObject {
728
+ ethKey: string;
729
+ assetId: bigint;
730
+ vaultId: bigint;
731
+ timeRelease: bigint;
732
+ }
733
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
734
+ type Filter = TypedDeferredTopicFilter<Event>;
735
+ type Log = TypedEventLog<Event>;
736
+ type LogDescription = TypedLogDescription<Event>;
737
+ }
738
+ export declare namespace LogWithdrawalAllowedEvent {
739
+ type InputTuple = [
740
+ ownerKey: BigNumberish,
741
+ assetType: BigNumberish,
742
+ nonQuantizedAmount: BigNumberish,
743
+ quantizedAmount: BigNumberish
744
+ ];
745
+ type OutputTuple = [
746
+ ownerKey: bigint,
747
+ assetType: bigint,
748
+ nonQuantizedAmount: bigint,
749
+ quantizedAmount: bigint
750
+ ];
751
+ interface OutputObject {
752
+ ownerKey: bigint;
753
+ assetType: bigint;
754
+ nonQuantizedAmount: bigint;
755
+ quantizedAmount: bigint;
756
+ }
757
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
758
+ type Filter = TypedDeferredTopicFilter<Event>;
759
+ type Log = TypedEventLog<Event>;
760
+ type LogDescription = TypedLogDescription<Event>;
761
+ }
762
+ export declare namespace LogWithdrawalFromVaultEvent {
763
+ type InputTuple = [
764
+ ethKey: AddressLike,
765
+ assetId: BigNumberish,
766
+ vaultId: BigNumberish,
767
+ nonQuantizedAmount: BigNumberish,
768
+ quantizedAmount: BigNumberish
769
+ ];
770
+ type OutputTuple = [
771
+ ethKey: string,
772
+ assetId: bigint,
773
+ vaultId: bigint,
774
+ nonQuantizedAmount: bigint,
775
+ quantizedAmount: bigint
776
+ ];
777
+ interface OutputObject {
778
+ ethKey: string;
779
+ assetId: bigint;
780
+ vaultId: bigint;
781
+ nonQuantizedAmount: bigint;
782
+ quantizedAmount: bigint;
783
+ }
784
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
785
+ type Filter = TypedDeferredTopicFilter<Event>;
786
+ type Log = TypedEventLog<Event>;
787
+ type LogDescription = TypedLogDescription<Event>;
788
+ }
789
+ export declare namespace LogWithdrawalPerformedEvent {
790
+ type InputTuple = [
791
+ ownerKey: BigNumberish,
792
+ assetType: BigNumberish,
793
+ nonQuantizedAmount: BigNumberish,
794
+ quantizedAmount: BigNumberish,
795
+ recipient: AddressLike
796
+ ];
797
+ type OutputTuple = [
798
+ ownerKey: bigint,
799
+ assetType: bigint,
800
+ nonQuantizedAmount: bigint,
801
+ quantizedAmount: bigint,
802
+ recipient: string
803
+ ];
804
+ interface OutputObject {
805
+ ownerKey: bigint;
806
+ assetType: bigint;
807
+ nonQuantizedAmount: bigint;
808
+ quantizedAmount: bigint;
809
+ recipient: string;
810
+ }
811
+ type Event = TypedContractEvent<InputTuple, OutputTuple, OutputObject>;
812
+ type Filter = TypedDeferredTopicFilter<Event>;
813
+ type Log = TypedEventLog<Event>;
814
+ type LogDescription = TypedLogDescription<Event>;
815
+ }
816
+ export interface CoreV4 extends BaseContract {
817
+ connect(runner?: ContractRunner | null): CoreV4;
818
+ waitForDeployment(): Promise<this>;
819
+ interface: CoreV4Interface;
820
+ queryFilter<TCEvent extends TypedContractEvent>(event: TCEvent, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
821
+ queryFilter<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, fromBlockOrBlockhash?: string | number | undefined, toBlock?: string | number | undefined): Promise<Array<TypedEventLog<TCEvent>>>;
822
+ on<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
823
+ on<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
824
+ once<TCEvent extends TypedContractEvent>(event: TCEvent, listener: TypedListener<TCEvent>): Promise<this>;
825
+ once<TCEvent extends TypedContractEvent>(filter: TypedDeferredTopicFilter<TCEvent>, listener: TypedListener<TCEvent>): Promise<this>;
826
+ listeners<TCEvent extends TypedContractEvent>(event: TCEvent): Promise<Array<TypedListener<TCEvent>>>;
827
+ listeners(eventName?: string): Promise<Array<Listener>>;
828
+ removeAllListeners<TCEvent extends TypedContractEvent>(event?: TCEvent): Promise<this>;
829
+ DEPOSIT_CANCEL_DELAY: TypedContractMethod<[], [bigint], "view">;
830
+ FREEZE_GRACE_PERIOD: TypedContractMethod<[], [bigint], "view">;
831
+ MAIN_GOVERNANCE_INFO_TAG: TypedContractMethod<[], [string], "view">;
832
+ MAX_FORCED_ACTIONS_REQS_PER_BLOCK: TypedContractMethod<[], [bigint], "view">;
833
+ MAX_VERIFIER_COUNT: TypedContractMethod<[], [bigint], "view">;
834
+ STARKEX_MAX_DEFAULT_VAULT_LOCK: TypedContractMethod<[], [bigint], "view">;
835
+ UNFREEZE_DELAY: TypedContractMethod<[], [bigint], "view">;
836
+ VERIFIER_REMOVAL_DELAY: TypedContractMethod<[], [bigint], "view">;
837
+ VERSION: TypedContractMethod<[], [string], "view">;
838
+ announceAvailabilityVerifierRemovalIntent: TypedContractMethod<[
839
+ verifier: AddressLike
840
+ ], [
841
+ void
842
+ ], "nonpayable">;
843
+ announceVerifierRemovalIntent: TypedContractMethod<[
844
+ verifier: AddressLike
845
+ ], [
846
+ void
847
+ ], "nonpayable">;
848
+ defaultVaultWithdrawalLock: TypedContractMethod<[], [bigint], "view">;
849
+ "deposit(uint256,uint256,uint256)": TypedContractMethod<[
850
+ starkKey: BigNumberish,
851
+ assetType: BigNumberish,
852
+ vaultId: BigNumberish
853
+ ], [
854
+ void
855
+ ], "payable">;
856
+ "deposit(uint256,uint256,uint256,uint256)": TypedContractMethod<[
857
+ starkKey: BigNumberish,
858
+ assetType: BigNumberish,
859
+ vaultId: BigNumberish,
860
+ quantizedAmount: BigNumberish
861
+ ], [
862
+ void
863
+ ], "nonpayable">;
864
+ depositCancel: TypedContractMethod<[
865
+ starkKey: BigNumberish,
866
+ assetId: BigNumberish,
867
+ vaultId: BigNumberish
868
+ ], [
869
+ void
870
+ ], "nonpayable">;
871
+ depositERC20: TypedContractMethod<[
872
+ starkKey: BigNumberish,
873
+ assetType: BigNumberish,
874
+ vaultId: BigNumberish,
875
+ quantizedAmount: BigNumberish
876
+ ], [
877
+ void
878
+ ], "nonpayable">;
879
+ depositERC20ToVault: TypedContractMethod<[
880
+ assetId: BigNumberish,
881
+ vaultId: BigNumberish,
882
+ quantizedAmount: BigNumberish
883
+ ], [
884
+ void
885
+ ], "nonpayable">;
886
+ depositEth: TypedContractMethod<[
887
+ starkKey: BigNumberish,
888
+ assetType: BigNumberish,
889
+ vaultId: BigNumberish
890
+ ], [
891
+ void
892
+ ], "payable">;
893
+ depositEthToVault: TypedContractMethod<[
894
+ assetId: BigNumberish,
895
+ vaultId: BigNumberish
896
+ ], [
897
+ void
898
+ ], "payable">;
899
+ depositNft: TypedContractMethod<[
900
+ starkKey: BigNumberish,
901
+ assetType: BigNumberish,
902
+ vaultId: BigNumberish,
903
+ tokenId: BigNumberish
904
+ ], [
905
+ void
906
+ ], "nonpayable">;
907
+ depositNftReclaim: TypedContractMethod<[
908
+ starkKey: BigNumberish,
909
+ assetType: BigNumberish,
910
+ vaultId: BigNumberish,
911
+ tokenId: BigNumberish
912
+ ], [
913
+ void
914
+ ], "nonpayable">;
915
+ depositReclaim: TypedContractMethod<[
916
+ starkKey: BigNumberish,
917
+ assetId: BigNumberish,
918
+ vaultId: BigNumberish
919
+ ], [
920
+ void
921
+ ], "nonpayable">;
922
+ escape: TypedContractMethod<[
923
+ starkKey: BigNumberish,
924
+ vaultId: BigNumberish,
925
+ assetId: BigNumberish,
926
+ quantizedAmount: BigNumberish
927
+ ], [
928
+ void
929
+ ], "nonpayable">;
930
+ freezeRequest: TypedContractMethod<[
931
+ starkKey: BigNumberish,
932
+ vaultId: BigNumberish
933
+ ], [
934
+ void
935
+ ], "nonpayable">;
936
+ fullWithdrawalRequest: TypedContractMethod<[
937
+ starkKey: BigNumberish,
938
+ vaultId: BigNumberish
939
+ ], [
940
+ void
941
+ ], "nonpayable">;
942
+ getActionCount: TypedContractMethod<[], [bigint], "view">;
943
+ getActionHashByIndex: TypedContractMethod<[
944
+ actionIndex: BigNumberish
945
+ ], [
946
+ string
947
+ ], "view">;
948
+ getAssetInfo: TypedContractMethod<[
949
+ assetType: BigNumberish
950
+ ], [
951
+ string
952
+ ], "view">;
953
+ getCancellationRequest: TypedContractMethod<[
954
+ starkKey: BigNumberish,
955
+ assetId: BigNumberish,
956
+ vaultId: BigNumberish
957
+ ], [
958
+ bigint
959
+ ], "view">;
960
+ getDepositBalance: TypedContractMethod<[
961
+ starkKey: BigNumberish,
962
+ assetId: BigNumberish,
963
+ vaultId: BigNumberish
964
+ ], [
965
+ bigint
966
+ ], "view">;
967
+ getEthKey: TypedContractMethod<[ownerKey: BigNumberish], [string], "view">;
968
+ getFullWithdrawalRequest: TypedContractMethod<[
969
+ starkKey: BigNumberish,
970
+ vaultId: BigNumberish
971
+ ], [
972
+ bigint
973
+ ], "view">;
974
+ getLastBatchId: TypedContractMethod<[], [bigint], "view">;
975
+ getOrderRoot: TypedContractMethod<[], [bigint], "view">;
976
+ getOrderTreeHeight: TypedContractMethod<[], [bigint], "view">;
977
+ getQuantizedDepositBalance: TypedContractMethod<[
978
+ starkKey: BigNumberish,
979
+ assetId: BigNumberish,
980
+ vaultId: BigNumberish
981
+ ], [
982
+ bigint
983
+ ], "view">;
984
+ getQuantizedVaultBalance: TypedContractMethod<[
985
+ ethKey: AddressLike,
986
+ assetId: BigNumberish,
987
+ vaultId: BigNumberish
988
+ ], [
989
+ bigint
990
+ ], "view">;
991
+ getQuantum: TypedContractMethod<[
992
+ presumedAssetType: BigNumberish
993
+ ], [
994
+ bigint
995
+ ], "view">;
996
+ getRegisteredAvailabilityVerifiers: TypedContractMethod<[
997
+ ], [
998
+ string[]
999
+ ], "view">;
1000
+ getRegisteredVerifiers: TypedContractMethod<[], [string[]], "view">;
1001
+ getSequenceNumber: TypedContractMethod<[], [bigint], "view">;
1002
+ getVaultBalance: TypedContractMethod<[
1003
+ ethKey: AddressLike,
1004
+ assetId: BigNumberish,
1005
+ vaultId: BigNumberish
1006
+ ], [
1007
+ bigint
1008
+ ], "view">;
1009
+ getVaultRoot: TypedContractMethod<[], [bigint], "view">;
1010
+ getVaultTreeHeight: TypedContractMethod<[], [bigint], "view">;
1011
+ getVaultWithdrawalLock: TypedContractMethod<[
1012
+ ethKey: AddressLike,
1013
+ assetId: BigNumberish,
1014
+ vaultId: BigNumberish
1015
+ ], [
1016
+ bigint
1017
+ ], "view">;
1018
+ getWithdrawalBalance: TypedContractMethod<[
1019
+ ownerKey: BigNumberish,
1020
+ assetId: BigNumberish
1021
+ ], [
1022
+ bigint
1023
+ ], "view">;
1024
+ initialize: TypedContractMethod<[data: BytesLike], [void], "nonpayable">;
1025
+ isAssetRegistered: TypedContractMethod<[
1026
+ assetType: BigNumberish
1027
+ ], [
1028
+ boolean
1029
+ ], "view">;
1030
+ isAvailabilityVerifier: TypedContractMethod<[
1031
+ verifierAddress: AddressLike
1032
+ ], [
1033
+ boolean
1034
+ ], "view">;
1035
+ isFrozen: TypedContractMethod<[], [boolean], "view">;
1036
+ isOperator: TypedContractMethod<[
1037
+ testedOperator: AddressLike
1038
+ ], [
1039
+ boolean
1040
+ ], "view">;
1041
+ isStrictVaultBalancePolicy: TypedContractMethod<[], [boolean], "view">;
1042
+ isTokenAdmin: TypedContractMethod<[
1043
+ testedAdmin: AddressLike
1044
+ ], [
1045
+ boolean
1046
+ ], "view">;
1047
+ isVaultLocked: TypedContractMethod<[
1048
+ ethKey: AddressLike,
1049
+ assetId: BigNumberish,
1050
+ vaultId: BigNumberish
1051
+ ], [
1052
+ boolean
1053
+ ], "view">;
1054
+ isVerifier: TypedContractMethod<[
1055
+ verifierAddress: AddressLike
1056
+ ], [
1057
+ boolean
1058
+ ], "view">;
1059
+ lockVault: TypedContractMethod<[
1060
+ assetId: BigNumberish,
1061
+ vaultId: BigNumberish,
1062
+ lockTime: BigNumberish
1063
+ ], [
1064
+ void
1065
+ ], "nonpayable">;
1066
+ mainAcceptGovernance: TypedContractMethod<[], [void], "nonpayable">;
1067
+ mainCancelNomination: TypedContractMethod<[], [void], "nonpayable">;
1068
+ mainIsGovernor: TypedContractMethod<[
1069
+ testGovernor: AddressLike
1070
+ ], [
1071
+ boolean
1072
+ ], "view">;
1073
+ mainNominateNewGovernor: TypedContractMethod<[
1074
+ newGovernor: AddressLike
1075
+ ], [
1076
+ void
1077
+ ], "nonpayable">;
1078
+ mainRemoveGovernor: TypedContractMethod<[
1079
+ governorForRemoval: AddressLike
1080
+ ], [
1081
+ void
1082
+ ], "nonpayable">;
1083
+ onERC721Received: TypedContractMethod<[
1084
+ arg0: AddressLike,
1085
+ arg1: AddressLike,
1086
+ arg2: BigNumberish,
1087
+ arg3: BytesLike
1088
+ ], [
1089
+ string
1090
+ ], "nonpayable">;
1091
+ orderRegistryAddress: TypedContractMethod<[], [string], "view">;
1092
+ registerAndDepositERC20: TypedContractMethod<[
1093
+ ethKey: AddressLike,
1094
+ starkKey: BigNumberish,
1095
+ signature: BytesLike,
1096
+ assetType: BigNumberish,
1097
+ vaultId: BigNumberish,
1098
+ quantizedAmount: BigNumberish
1099
+ ], [
1100
+ void
1101
+ ], "nonpayable">;
1102
+ registerAndDepositEth: TypedContractMethod<[
1103
+ ethKey: AddressLike,
1104
+ starkKey: BigNumberish,
1105
+ signature: BytesLike,
1106
+ assetType: BigNumberish,
1107
+ vaultId: BigNumberish
1108
+ ], [
1109
+ void
1110
+ ], "payable">;
1111
+ registerAvailabilityVerifier: TypedContractMethod<[
1112
+ verifier: AddressLike,
1113
+ identifier: string
1114
+ ], [
1115
+ void
1116
+ ], "nonpayable">;
1117
+ registerEthAddress: TypedContractMethod<[
1118
+ ethKey: AddressLike,
1119
+ starkKey: BigNumberish,
1120
+ starkSignature: BytesLike
1121
+ ], [
1122
+ void
1123
+ ], "nonpayable">;
1124
+ registerOperator: TypedContractMethod<[
1125
+ newOperator: AddressLike
1126
+ ], [
1127
+ void
1128
+ ], "nonpayable">;
1129
+ registerSender: TypedContractMethod<[
1130
+ starkKey: BigNumberish,
1131
+ starkSignature: BytesLike
1132
+ ], [
1133
+ void
1134
+ ], "nonpayable">;
1135
+ "registerToken(uint256,bytes)": TypedContractMethod<[
1136
+ assetType: BigNumberish,
1137
+ assetInfo: BytesLike
1138
+ ], [
1139
+ void
1140
+ ], "nonpayable">;
1141
+ "registerToken(uint256,bytes,uint256)": TypedContractMethod<[
1142
+ assetType: BigNumberish,
1143
+ assetInfo: BytesLike,
1144
+ quantum: BigNumberish
1145
+ ], [
1146
+ void
1147
+ ], "nonpayable">;
1148
+ registerTokenAdmin: TypedContractMethod<[
1149
+ newAdmin: AddressLike
1150
+ ], [
1151
+ void
1152
+ ], "nonpayable">;
1153
+ registerVerifier: TypedContractMethod<[
1154
+ verifier: AddressLike,
1155
+ identifier: string
1156
+ ], [
1157
+ void
1158
+ ], "nonpayable">;
1159
+ removeAvailabilityVerifier: TypedContractMethod<[
1160
+ verifier: AddressLike
1161
+ ], [
1162
+ void
1163
+ ], "nonpayable">;
1164
+ removeVerifier: TypedContractMethod<[
1165
+ verifier: AddressLike
1166
+ ], [
1167
+ void
1168
+ ], "nonpayable">;
1169
+ setDefaultVaultWithdrawalLock: TypedContractMethod<[
1170
+ newDefaultTime: BigNumberish
1171
+ ], [
1172
+ void
1173
+ ], "nonpayable">;
1174
+ unFreeze: TypedContractMethod<[], [void], "nonpayable">;
1175
+ unregisterOperator: TypedContractMethod<[
1176
+ removedOperator: AddressLike
1177
+ ], [
1178
+ void
1179
+ ], "nonpayable">;
1180
+ unregisterTokenAdmin: TypedContractMethod<[
1181
+ oldAdmin: AddressLike
1182
+ ], [
1183
+ void
1184
+ ], "nonpayable">;
1185
+ updateImplementationActivationTime: TypedContractMethod<[
1186
+ implementation: AddressLike,
1187
+ data: BytesLike,
1188
+ finalize: boolean
1189
+ ], [
1190
+ void
1191
+ ], "nonpayable">;
1192
+ updateState: TypedContractMethod<[
1193
+ publicInput: BigNumberish[],
1194
+ applicationData: BigNumberish[]
1195
+ ], [
1196
+ void
1197
+ ], "nonpayable">;
1198
+ withdraw: TypedContractMethod<[
1199
+ ownerKey: BigNumberish,
1200
+ assetType: BigNumberish
1201
+ ], [
1202
+ void
1203
+ ], "nonpayable">;
1204
+ withdrawAndMint: TypedContractMethod<[
1205
+ ownerKey: BigNumberish,
1206
+ assetType: BigNumberish,
1207
+ mintingBlob: BytesLike
1208
+ ], [
1209
+ void
1210
+ ], "nonpayable">;
1211
+ withdrawFromVault: TypedContractMethod<[
1212
+ assetId: BigNumberish,
1213
+ vaultId: BigNumberish,
1214
+ quantizedAmount: BigNumberish
1215
+ ], [
1216
+ void
1217
+ ], "nonpayable">;
1218
+ withdrawNft: TypedContractMethod<[
1219
+ ownerKey: BigNumberish,
1220
+ assetType: BigNumberish,
1221
+ tokenId: BigNumberish
1222
+ ], [
1223
+ void
1224
+ ], "nonpayable">;
1225
+ getFunction<T extends ContractMethod = ContractMethod>(key: string | FunctionFragment): T;
1226
+ getFunction(nameOrSignature: "DEPOSIT_CANCEL_DELAY"): TypedContractMethod<[], [bigint], "view">;
1227
+ getFunction(nameOrSignature: "FREEZE_GRACE_PERIOD"): TypedContractMethod<[], [bigint], "view">;
1228
+ getFunction(nameOrSignature: "MAIN_GOVERNANCE_INFO_TAG"): TypedContractMethod<[], [string], "view">;
1229
+ getFunction(nameOrSignature: "MAX_FORCED_ACTIONS_REQS_PER_BLOCK"): TypedContractMethod<[], [bigint], "view">;
1230
+ getFunction(nameOrSignature: "MAX_VERIFIER_COUNT"): TypedContractMethod<[], [bigint], "view">;
1231
+ getFunction(nameOrSignature: "STARKEX_MAX_DEFAULT_VAULT_LOCK"): TypedContractMethod<[], [bigint], "view">;
1232
+ getFunction(nameOrSignature: "UNFREEZE_DELAY"): TypedContractMethod<[], [bigint], "view">;
1233
+ getFunction(nameOrSignature: "VERIFIER_REMOVAL_DELAY"): TypedContractMethod<[], [bigint], "view">;
1234
+ getFunction(nameOrSignature: "VERSION"): TypedContractMethod<[], [string], "view">;
1235
+ getFunction(nameOrSignature: "announceAvailabilityVerifierRemovalIntent"): TypedContractMethod<[verifier: AddressLike], [void], "nonpayable">;
1236
+ getFunction(nameOrSignature: "announceVerifierRemovalIntent"): TypedContractMethod<[verifier: AddressLike], [void], "nonpayable">;
1237
+ getFunction(nameOrSignature: "defaultVaultWithdrawalLock"): TypedContractMethod<[], [bigint], "view">;
1238
+ getFunction(nameOrSignature: "deposit(uint256,uint256,uint256)"): TypedContractMethod<[
1239
+ starkKey: BigNumberish,
1240
+ assetType: BigNumberish,
1241
+ vaultId: BigNumberish
1242
+ ], [
1243
+ void
1244
+ ], "payable">;
1245
+ getFunction(nameOrSignature: "deposit(uint256,uint256,uint256,uint256)"): TypedContractMethod<[
1246
+ starkKey: BigNumberish,
1247
+ assetType: BigNumberish,
1248
+ vaultId: BigNumberish,
1249
+ quantizedAmount: BigNumberish
1250
+ ], [
1251
+ void
1252
+ ], "nonpayable">;
1253
+ getFunction(nameOrSignature: "depositCancel"): TypedContractMethod<[
1254
+ starkKey: BigNumberish,
1255
+ assetId: BigNumberish,
1256
+ vaultId: BigNumberish
1257
+ ], [
1258
+ void
1259
+ ], "nonpayable">;
1260
+ getFunction(nameOrSignature: "depositERC20"): TypedContractMethod<[
1261
+ starkKey: BigNumberish,
1262
+ assetType: BigNumberish,
1263
+ vaultId: BigNumberish,
1264
+ quantizedAmount: BigNumberish
1265
+ ], [
1266
+ void
1267
+ ], "nonpayable">;
1268
+ getFunction(nameOrSignature: "depositERC20ToVault"): TypedContractMethod<[
1269
+ assetId: BigNumberish,
1270
+ vaultId: BigNumberish,
1271
+ quantizedAmount: BigNumberish
1272
+ ], [
1273
+ void
1274
+ ], "nonpayable">;
1275
+ getFunction(nameOrSignature: "depositEth"): TypedContractMethod<[
1276
+ starkKey: BigNumberish,
1277
+ assetType: BigNumberish,
1278
+ vaultId: BigNumberish
1279
+ ], [
1280
+ void
1281
+ ], "payable">;
1282
+ getFunction(nameOrSignature: "depositEthToVault"): TypedContractMethod<[
1283
+ assetId: BigNumberish,
1284
+ vaultId: BigNumberish
1285
+ ], [
1286
+ void
1287
+ ], "payable">;
1288
+ getFunction(nameOrSignature: "depositNft"): TypedContractMethod<[
1289
+ starkKey: BigNumberish,
1290
+ assetType: BigNumberish,
1291
+ vaultId: BigNumberish,
1292
+ tokenId: BigNumberish
1293
+ ], [
1294
+ void
1295
+ ], "nonpayable">;
1296
+ getFunction(nameOrSignature: "depositNftReclaim"): TypedContractMethod<[
1297
+ starkKey: BigNumberish,
1298
+ assetType: BigNumberish,
1299
+ vaultId: BigNumberish,
1300
+ tokenId: BigNumberish
1301
+ ], [
1302
+ void
1303
+ ], "nonpayable">;
1304
+ getFunction(nameOrSignature: "depositReclaim"): TypedContractMethod<[
1305
+ starkKey: BigNumberish,
1306
+ assetId: BigNumberish,
1307
+ vaultId: BigNumberish
1308
+ ], [
1309
+ void
1310
+ ], "nonpayable">;
1311
+ getFunction(nameOrSignature: "escape"): TypedContractMethod<[
1312
+ starkKey: BigNumberish,
1313
+ vaultId: BigNumberish,
1314
+ assetId: BigNumberish,
1315
+ quantizedAmount: BigNumberish
1316
+ ], [
1317
+ void
1318
+ ], "nonpayable">;
1319
+ getFunction(nameOrSignature: "freezeRequest"): TypedContractMethod<[
1320
+ starkKey: BigNumberish,
1321
+ vaultId: BigNumberish
1322
+ ], [
1323
+ void
1324
+ ], "nonpayable">;
1325
+ getFunction(nameOrSignature: "fullWithdrawalRequest"): TypedContractMethod<[
1326
+ starkKey: BigNumberish,
1327
+ vaultId: BigNumberish
1328
+ ], [
1329
+ void
1330
+ ], "nonpayable">;
1331
+ getFunction(nameOrSignature: "getActionCount"): TypedContractMethod<[], [bigint], "view">;
1332
+ getFunction(nameOrSignature: "getActionHashByIndex"): TypedContractMethod<[actionIndex: BigNumberish], [string], "view">;
1333
+ getFunction(nameOrSignature: "getAssetInfo"): TypedContractMethod<[assetType: BigNumberish], [string], "view">;
1334
+ getFunction(nameOrSignature: "getCancellationRequest"): TypedContractMethod<[
1335
+ starkKey: BigNumberish,
1336
+ assetId: BigNumberish,
1337
+ vaultId: BigNumberish
1338
+ ], [
1339
+ bigint
1340
+ ], "view">;
1341
+ getFunction(nameOrSignature: "getDepositBalance"): TypedContractMethod<[
1342
+ starkKey: BigNumberish,
1343
+ assetId: BigNumberish,
1344
+ vaultId: BigNumberish
1345
+ ], [
1346
+ bigint
1347
+ ], "view">;
1348
+ getFunction(nameOrSignature: "getEthKey"): TypedContractMethod<[ownerKey: BigNumberish], [string], "view">;
1349
+ getFunction(nameOrSignature: "getFullWithdrawalRequest"): TypedContractMethod<[
1350
+ starkKey: BigNumberish,
1351
+ vaultId: BigNumberish
1352
+ ], [
1353
+ bigint
1354
+ ], "view">;
1355
+ getFunction(nameOrSignature: "getLastBatchId"): TypedContractMethod<[], [bigint], "view">;
1356
+ getFunction(nameOrSignature: "getOrderRoot"): TypedContractMethod<[], [bigint], "view">;
1357
+ getFunction(nameOrSignature: "getOrderTreeHeight"): TypedContractMethod<[], [bigint], "view">;
1358
+ getFunction(nameOrSignature: "getQuantizedDepositBalance"): TypedContractMethod<[
1359
+ starkKey: BigNumberish,
1360
+ assetId: BigNumberish,
1361
+ vaultId: BigNumberish
1362
+ ], [
1363
+ bigint
1364
+ ], "view">;
1365
+ getFunction(nameOrSignature: "getQuantizedVaultBalance"): TypedContractMethod<[
1366
+ ethKey: AddressLike,
1367
+ assetId: BigNumberish,
1368
+ vaultId: BigNumberish
1369
+ ], [
1370
+ bigint
1371
+ ], "view">;
1372
+ getFunction(nameOrSignature: "getQuantum"): TypedContractMethod<[presumedAssetType: BigNumberish], [bigint], "view">;
1373
+ getFunction(nameOrSignature: "getRegisteredAvailabilityVerifiers"): TypedContractMethod<[], [string[]], "view">;
1374
+ getFunction(nameOrSignature: "getRegisteredVerifiers"): TypedContractMethod<[], [string[]], "view">;
1375
+ getFunction(nameOrSignature: "getSequenceNumber"): TypedContractMethod<[], [bigint], "view">;
1376
+ getFunction(nameOrSignature: "getVaultBalance"): TypedContractMethod<[
1377
+ ethKey: AddressLike,
1378
+ assetId: BigNumberish,
1379
+ vaultId: BigNumberish
1380
+ ], [
1381
+ bigint
1382
+ ], "view">;
1383
+ getFunction(nameOrSignature: "getVaultRoot"): TypedContractMethod<[], [bigint], "view">;
1384
+ getFunction(nameOrSignature: "getVaultTreeHeight"): TypedContractMethod<[], [bigint], "view">;
1385
+ getFunction(nameOrSignature: "getVaultWithdrawalLock"): TypedContractMethod<[
1386
+ ethKey: AddressLike,
1387
+ assetId: BigNumberish,
1388
+ vaultId: BigNumberish
1389
+ ], [
1390
+ bigint
1391
+ ], "view">;
1392
+ getFunction(nameOrSignature: "getWithdrawalBalance"): TypedContractMethod<[
1393
+ ownerKey: BigNumberish,
1394
+ assetId: BigNumberish
1395
+ ], [
1396
+ bigint
1397
+ ], "view">;
1398
+ getFunction(nameOrSignature: "initialize"): TypedContractMethod<[data: BytesLike], [void], "nonpayable">;
1399
+ getFunction(nameOrSignature: "isAssetRegistered"): TypedContractMethod<[assetType: BigNumberish], [boolean], "view">;
1400
+ getFunction(nameOrSignature: "isAvailabilityVerifier"): TypedContractMethod<[verifierAddress: AddressLike], [boolean], "view">;
1401
+ getFunction(nameOrSignature: "isFrozen"): TypedContractMethod<[], [boolean], "view">;
1402
+ getFunction(nameOrSignature: "isOperator"): TypedContractMethod<[testedOperator: AddressLike], [boolean], "view">;
1403
+ getFunction(nameOrSignature: "isStrictVaultBalancePolicy"): TypedContractMethod<[], [boolean], "view">;
1404
+ getFunction(nameOrSignature: "isTokenAdmin"): TypedContractMethod<[testedAdmin: AddressLike], [boolean], "view">;
1405
+ getFunction(nameOrSignature: "isVaultLocked"): TypedContractMethod<[
1406
+ ethKey: AddressLike,
1407
+ assetId: BigNumberish,
1408
+ vaultId: BigNumberish
1409
+ ], [
1410
+ boolean
1411
+ ], "view">;
1412
+ getFunction(nameOrSignature: "isVerifier"): TypedContractMethod<[verifierAddress: AddressLike], [boolean], "view">;
1413
+ getFunction(nameOrSignature: "lockVault"): TypedContractMethod<[
1414
+ assetId: BigNumberish,
1415
+ vaultId: BigNumberish,
1416
+ lockTime: BigNumberish
1417
+ ], [
1418
+ void
1419
+ ], "nonpayable">;
1420
+ getFunction(nameOrSignature: "mainAcceptGovernance"): TypedContractMethod<[], [void], "nonpayable">;
1421
+ getFunction(nameOrSignature: "mainCancelNomination"): TypedContractMethod<[], [void], "nonpayable">;
1422
+ getFunction(nameOrSignature: "mainIsGovernor"): TypedContractMethod<[testGovernor: AddressLike], [boolean], "view">;
1423
+ getFunction(nameOrSignature: "mainNominateNewGovernor"): TypedContractMethod<[newGovernor: AddressLike], [void], "nonpayable">;
1424
+ getFunction(nameOrSignature: "mainRemoveGovernor"): TypedContractMethod<[
1425
+ governorForRemoval: AddressLike
1426
+ ], [
1427
+ void
1428
+ ], "nonpayable">;
1429
+ getFunction(nameOrSignature: "onERC721Received"): TypedContractMethod<[
1430
+ arg0: AddressLike,
1431
+ arg1: AddressLike,
1432
+ arg2: BigNumberish,
1433
+ arg3: BytesLike
1434
+ ], [
1435
+ string
1436
+ ], "nonpayable">;
1437
+ getFunction(nameOrSignature: "orderRegistryAddress"): TypedContractMethod<[], [string], "view">;
1438
+ getFunction(nameOrSignature: "registerAndDepositERC20"): TypedContractMethod<[
1439
+ ethKey: AddressLike,
1440
+ starkKey: BigNumberish,
1441
+ signature: BytesLike,
1442
+ assetType: BigNumberish,
1443
+ vaultId: BigNumberish,
1444
+ quantizedAmount: BigNumberish
1445
+ ], [
1446
+ void
1447
+ ], "nonpayable">;
1448
+ getFunction(nameOrSignature: "registerAndDepositEth"): TypedContractMethod<[
1449
+ ethKey: AddressLike,
1450
+ starkKey: BigNumberish,
1451
+ signature: BytesLike,
1452
+ assetType: BigNumberish,
1453
+ vaultId: BigNumberish
1454
+ ], [
1455
+ void
1456
+ ], "payable">;
1457
+ getFunction(nameOrSignature: "registerAvailabilityVerifier"): TypedContractMethod<[
1458
+ verifier: AddressLike,
1459
+ identifier: string
1460
+ ], [
1461
+ void
1462
+ ], "nonpayable">;
1463
+ getFunction(nameOrSignature: "registerEthAddress"): TypedContractMethod<[
1464
+ ethKey: AddressLike,
1465
+ starkKey: BigNumberish,
1466
+ starkSignature: BytesLike
1467
+ ], [
1468
+ void
1469
+ ], "nonpayable">;
1470
+ getFunction(nameOrSignature: "registerOperator"): TypedContractMethod<[newOperator: AddressLike], [void], "nonpayable">;
1471
+ getFunction(nameOrSignature: "registerSender"): TypedContractMethod<[
1472
+ starkKey: BigNumberish,
1473
+ starkSignature: BytesLike
1474
+ ], [
1475
+ void
1476
+ ], "nonpayable">;
1477
+ getFunction(nameOrSignature: "registerToken(uint256,bytes)"): TypedContractMethod<[
1478
+ assetType: BigNumberish,
1479
+ assetInfo: BytesLike
1480
+ ], [
1481
+ void
1482
+ ], "nonpayable">;
1483
+ getFunction(nameOrSignature: "registerToken(uint256,bytes,uint256)"): TypedContractMethod<[
1484
+ assetType: BigNumberish,
1485
+ assetInfo: BytesLike,
1486
+ quantum: BigNumberish
1487
+ ], [
1488
+ void
1489
+ ], "nonpayable">;
1490
+ getFunction(nameOrSignature: "registerTokenAdmin"): TypedContractMethod<[newAdmin: AddressLike], [void], "nonpayable">;
1491
+ getFunction(nameOrSignature: "registerVerifier"): TypedContractMethod<[
1492
+ verifier: AddressLike,
1493
+ identifier: string
1494
+ ], [
1495
+ void
1496
+ ], "nonpayable">;
1497
+ getFunction(nameOrSignature: "removeAvailabilityVerifier"): TypedContractMethod<[verifier: AddressLike], [void], "nonpayable">;
1498
+ getFunction(nameOrSignature: "removeVerifier"): TypedContractMethod<[verifier: AddressLike], [void], "nonpayable">;
1499
+ getFunction(nameOrSignature: "setDefaultVaultWithdrawalLock"): TypedContractMethod<[newDefaultTime: BigNumberish], [void], "nonpayable">;
1500
+ getFunction(nameOrSignature: "unFreeze"): TypedContractMethod<[], [void], "nonpayable">;
1501
+ getFunction(nameOrSignature: "unregisterOperator"): TypedContractMethod<[removedOperator: AddressLike], [void], "nonpayable">;
1502
+ getFunction(nameOrSignature: "unregisterTokenAdmin"): TypedContractMethod<[oldAdmin: AddressLike], [void], "nonpayable">;
1503
+ getFunction(nameOrSignature: "updateImplementationActivationTime"): TypedContractMethod<[
1504
+ implementation: AddressLike,
1505
+ data: BytesLike,
1506
+ finalize: boolean
1507
+ ], [
1508
+ void
1509
+ ], "nonpayable">;
1510
+ getFunction(nameOrSignature: "updateState"): TypedContractMethod<[
1511
+ publicInput: BigNumberish[],
1512
+ applicationData: BigNumberish[]
1513
+ ], [
1514
+ void
1515
+ ], "nonpayable">;
1516
+ getFunction(nameOrSignature: "withdraw"): TypedContractMethod<[
1517
+ ownerKey: BigNumberish,
1518
+ assetType: BigNumberish
1519
+ ], [
1520
+ void
1521
+ ], "nonpayable">;
1522
+ getFunction(nameOrSignature: "withdrawAndMint"): TypedContractMethod<[
1523
+ ownerKey: BigNumberish,
1524
+ assetType: BigNumberish,
1525
+ mintingBlob: BytesLike
1526
+ ], [
1527
+ void
1528
+ ], "nonpayable">;
1529
+ getFunction(nameOrSignature: "withdrawFromVault"): TypedContractMethod<[
1530
+ assetId: BigNumberish,
1531
+ vaultId: BigNumberish,
1532
+ quantizedAmount: BigNumberish
1533
+ ], [
1534
+ void
1535
+ ], "nonpayable">;
1536
+ getFunction(nameOrSignature: "withdrawNft"): TypedContractMethod<[
1537
+ ownerKey: BigNumberish,
1538
+ assetType: BigNumberish,
1539
+ tokenId: BigNumberish
1540
+ ], [
1541
+ void
1542
+ ], "nonpayable">;
1543
+ getEvent(key: "ImplementationActivationRescheduled"): TypedContractEvent<ImplementationActivationRescheduledEvent.InputTuple, ImplementationActivationRescheduledEvent.OutputTuple, ImplementationActivationRescheduledEvent.OutputObject>;
1544
+ getEvent(key: "LogDefaultVaultWithdrawalLockSet"): TypedContractEvent<LogDefaultVaultWithdrawalLockSetEvent.InputTuple, LogDefaultVaultWithdrawalLockSetEvent.OutputTuple, LogDefaultVaultWithdrawalLockSetEvent.OutputObject>;
1545
+ getEvent(key: "LogDeposit"): TypedContractEvent<LogDepositEvent.InputTuple, LogDepositEvent.OutputTuple, LogDepositEvent.OutputObject>;
1546
+ getEvent(key: "LogDepositCancel"): TypedContractEvent<LogDepositCancelEvent.InputTuple, LogDepositCancelEvent.OutputTuple, LogDepositCancelEvent.OutputObject>;
1547
+ getEvent(key: "LogDepositCancelReclaimed"): TypedContractEvent<LogDepositCancelReclaimedEvent.InputTuple, LogDepositCancelReclaimedEvent.OutputTuple, LogDepositCancelReclaimedEvent.OutputObject>;
1548
+ getEvent(key: "LogDepositNftCancelReclaimed"): TypedContractEvent<LogDepositNftCancelReclaimedEvent.InputTuple, LogDepositNftCancelReclaimedEvent.OutputTuple, LogDepositNftCancelReclaimedEvent.OutputObject>;
1549
+ getEvent(key: "LogDepositToVault"): TypedContractEvent<LogDepositToVaultEvent.InputTuple, LogDepositToVaultEvent.OutputTuple, LogDepositToVaultEvent.OutputObject>;
1550
+ getEvent(key: "LogFrozen"): TypedContractEvent<LogFrozenEvent.InputTuple, LogFrozenEvent.OutputTuple, LogFrozenEvent.OutputObject>;
1551
+ getEvent(key: "LogFullWithdrawalRequest"): TypedContractEvent<LogFullWithdrawalRequestEvent.InputTuple, LogFullWithdrawalRequestEvent.OutputTuple, LogFullWithdrawalRequestEvent.OutputObject>;
1552
+ getEvent(key: "LogMintWithdrawalPerformed"): TypedContractEvent<LogMintWithdrawalPerformedEvent.InputTuple, LogMintWithdrawalPerformedEvent.OutputTuple, LogMintWithdrawalPerformedEvent.OutputObject>;
1553
+ getEvent(key: "LogMintableWithdrawalAllowed"): TypedContractEvent<LogMintableWithdrawalAllowedEvent.InputTuple, LogMintableWithdrawalAllowedEvent.OutputTuple, LogMintableWithdrawalAllowedEvent.OutputObject>;
1554
+ getEvent(key: "LogNewGovernorAccepted"): TypedContractEvent<LogNewGovernorAcceptedEvent.InputTuple, LogNewGovernorAcceptedEvent.OutputTuple, LogNewGovernorAcceptedEvent.OutputObject>;
1555
+ getEvent(key: "LogNftDeposit"): TypedContractEvent<LogNftDepositEvent.InputTuple, LogNftDepositEvent.OutputTuple, LogNftDepositEvent.OutputObject>;
1556
+ getEvent(key: "LogNftWithdrawalAllowed"): TypedContractEvent<LogNftWithdrawalAllowedEvent.InputTuple, LogNftWithdrawalAllowedEvent.OutputTuple, LogNftWithdrawalAllowedEvent.OutputObject>;
1557
+ getEvent(key: "LogNftWithdrawalPerformed"): TypedContractEvent<LogNftWithdrawalPerformedEvent.InputTuple, LogNftWithdrawalPerformedEvent.OutputTuple, LogNftWithdrawalPerformedEvent.OutputObject>;
1558
+ getEvent(key: "LogNominatedGovernor"): TypedContractEvent<LogNominatedGovernorEvent.InputTuple, LogNominatedGovernorEvent.OutputTuple, LogNominatedGovernorEvent.OutputObject>;
1559
+ getEvent(key: "LogNominationCancelled"): TypedContractEvent<LogNominationCancelledEvent.InputTuple, LogNominationCancelledEvent.OutputTuple, LogNominationCancelledEvent.OutputObject>;
1560
+ getEvent(key: "LogOperatorAdded"): TypedContractEvent<LogOperatorAddedEvent.InputTuple, LogOperatorAddedEvent.OutputTuple, LogOperatorAddedEvent.OutputObject>;
1561
+ getEvent(key: "LogOperatorRemoved"): TypedContractEvent<LogOperatorRemovedEvent.InputTuple, LogOperatorRemovedEvent.OutputTuple, LogOperatorRemovedEvent.OutputObject>;
1562
+ getEvent(key: "LogRegistered"): TypedContractEvent<LogRegisteredEvent.InputTuple, LogRegisteredEvent.OutputTuple, LogRegisteredEvent.OutputObject>;
1563
+ getEvent(key: "LogRemovalIntent"): TypedContractEvent<LogRemovalIntentEvent.InputTuple, LogRemovalIntentEvent.OutputTuple, LogRemovalIntentEvent.OutputObject>;
1564
+ getEvent(key: "LogRemoved"): TypedContractEvent<LogRemovedEvent.InputTuple, LogRemovedEvent.OutputTuple, LogRemovedEvent.OutputObject>;
1565
+ getEvent(key: "LogRemovedGovernor"): TypedContractEvent<LogRemovedGovernorEvent.InputTuple, LogRemovedGovernorEvent.OutputTuple, LogRemovedGovernorEvent.OutputObject>;
1566
+ getEvent(key: "LogRootUpdate"): TypedContractEvent<LogRootUpdateEvent.InputTuple, LogRootUpdateEvent.OutputTuple, LogRootUpdateEvent.OutputObject>;
1567
+ getEvent(key: "LogStateTransitionFact"): TypedContractEvent<LogStateTransitionFactEvent.InputTuple, LogStateTransitionFactEvent.OutputTuple, LogStateTransitionFactEvent.OutputObject>;
1568
+ getEvent(key: "LogTokenAdminAdded"): TypedContractEvent<LogTokenAdminAddedEvent.InputTuple, LogTokenAdminAddedEvent.OutputTuple, LogTokenAdminAddedEvent.OutputObject>;
1569
+ getEvent(key: "LogTokenAdminRemoved"): TypedContractEvent<LogTokenAdminRemovedEvent.InputTuple, LogTokenAdminRemovedEvent.OutputTuple, LogTokenAdminRemovedEvent.OutputObject>;
1570
+ getEvent(key: "LogTokenRegistered"): TypedContractEvent<LogTokenRegisteredEvent.InputTuple, LogTokenRegisteredEvent.OutputTuple, LogTokenRegisteredEvent.OutputObject>;
1571
+ getEvent(key: "LogUnFrozen"): TypedContractEvent<LogUnFrozenEvent.InputTuple, LogUnFrozenEvent.OutputTuple, LogUnFrozenEvent.OutputObject>;
1572
+ getEvent(key: "LogUserRegistered"): TypedContractEvent<LogUserRegisteredEvent.InputTuple, LogUserRegisteredEvent.OutputTuple, LogUserRegisteredEvent.OutputObject>;
1573
+ getEvent(key: "LogVaultBalanceChangeApplied"): TypedContractEvent<LogVaultBalanceChangeAppliedEvent.InputTuple, LogVaultBalanceChangeAppliedEvent.OutputTuple, LogVaultBalanceChangeAppliedEvent.OutputObject>;
1574
+ getEvent(key: "LogVaultWithdrawalLockSet"): TypedContractEvent<LogVaultWithdrawalLockSetEvent.InputTuple, LogVaultWithdrawalLockSetEvent.OutputTuple, LogVaultWithdrawalLockSetEvent.OutputObject>;
1575
+ getEvent(key: "LogWithdrawalAllowed"): TypedContractEvent<LogWithdrawalAllowedEvent.InputTuple, LogWithdrawalAllowedEvent.OutputTuple, LogWithdrawalAllowedEvent.OutputObject>;
1576
+ getEvent(key: "LogWithdrawalFromVault"): TypedContractEvent<LogWithdrawalFromVaultEvent.InputTuple, LogWithdrawalFromVaultEvent.OutputTuple, LogWithdrawalFromVaultEvent.OutputObject>;
1577
+ getEvent(key: "LogWithdrawalPerformed"): TypedContractEvent<LogWithdrawalPerformedEvent.InputTuple, LogWithdrawalPerformedEvent.OutputTuple, LogWithdrawalPerformedEvent.OutputObject>;
1578
+ filters: {
1579
+ "ImplementationActivationRescheduled(address,uint256)": TypedContractEvent<ImplementationActivationRescheduledEvent.InputTuple, ImplementationActivationRescheduledEvent.OutputTuple, ImplementationActivationRescheduledEvent.OutputObject>;
1580
+ ImplementationActivationRescheduled: TypedContractEvent<ImplementationActivationRescheduledEvent.InputTuple, ImplementationActivationRescheduledEvent.OutputTuple, ImplementationActivationRescheduledEvent.OutputObject>;
1581
+ "LogDefaultVaultWithdrawalLockSet(uint256)": TypedContractEvent<LogDefaultVaultWithdrawalLockSetEvent.InputTuple, LogDefaultVaultWithdrawalLockSetEvent.OutputTuple, LogDefaultVaultWithdrawalLockSetEvent.OutputObject>;
1582
+ LogDefaultVaultWithdrawalLockSet: TypedContractEvent<LogDefaultVaultWithdrawalLockSetEvent.InputTuple, LogDefaultVaultWithdrawalLockSetEvent.OutputTuple, LogDefaultVaultWithdrawalLockSetEvent.OutputObject>;
1583
+ "LogDeposit(address,uint256,uint256,uint256,uint256,uint256)": TypedContractEvent<LogDepositEvent.InputTuple, LogDepositEvent.OutputTuple, LogDepositEvent.OutputObject>;
1584
+ LogDeposit: TypedContractEvent<LogDepositEvent.InputTuple, LogDepositEvent.OutputTuple, LogDepositEvent.OutputObject>;
1585
+ "LogDepositCancel(uint256,uint256,uint256)": TypedContractEvent<LogDepositCancelEvent.InputTuple, LogDepositCancelEvent.OutputTuple, LogDepositCancelEvent.OutputObject>;
1586
+ LogDepositCancel: TypedContractEvent<LogDepositCancelEvent.InputTuple, LogDepositCancelEvent.OutputTuple, LogDepositCancelEvent.OutputObject>;
1587
+ "LogDepositCancelReclaimed(uint256,uint256,uint256,uint256,uint256)": TypedContractEvent<LogDepositCancelReclaimedEvent.InputTuple, LogDepositCancelReclaimedEvent.OutputTuple, LogDepositCancelReclaimedEvent.OutputObject>;
1588
+ LogDepositCancelReclaimed: TypedContractEvent<LogDepositCancelReclaimedEvent.InputTuple, LogDepositCancelReclaimedEvent.OutputTuple, LogDepositCancelReclaimedEvent.OutputObject>;
1589
+ "LogDepositNftCancelReclaimed(uint256,uint256,uint256,uint256,uint256)": TypedContractEvent<LogDepositNftCancelReclaimedEvent.InputTuple, LogDepositNftCancelReclaimedEvent.OutputTuple, LogDepositNftCancelReclaimedEvent.OutputObject>;
1590
+ LogDepositNftCancelReclaimed: TypedContractEvent<LogDepositNftCancelReclaimedEvent.InputTuple, LogDepositNftCancelReclaimedEvent.OutputTuple, LogDepositNftCancelReclaimedEvent.OutputObject>;
1591
+ "LogDepositToVault(address,uint256,uint256,uint256,uint256)": TypedContractEvent<LogDepositToVaultEvent.InputTuple, LogDepositToVaultEvent.OutputTuple, LogDepositToVaultEvent.OutputObject>;
1592
+ LogDepositToVault: TypedContractEvent<LogDepositToVaultEvent.InputTuple, LogDepositToVaultEvent.OutputTuple, LogDepositToVaultEvent.OutputObject>;
1593
+ "LogFrozen()": TypedContractEvent<LogFrozenEvent.InputTuple, LogFrozenEvent.OutputTuple, LogFrozenEvent.OutputObject>;
1594
+ LogFrozen: TypedContractEvent<LogFrozenEvent.InputTuple, LogFrozenEvent.OutputTuple, LogFrozenEvent.OutputObject>;
1595
+ "LogFullWithdrawalRequest(uint256,uint256)": TypedContractEvent<LogFullWithdrawalRequestEvent.InputTuple, LogFullWithdrawalRequestEvent.OutputTuple, LogFullWithdrawalRequestEvent.OutputObject>;
1596
+ LogFullWithdrawalRequest: TypedContractEvent<LogFullWithdrawalRequestEvent.InputTuple, LogFullWithdrawalRequestEvent.OutputTuple, LogFullWithdrawalRequestEvent.OutputObject>;
1597
+ "LogMintWithdrawalPerformed(uint256,uint256,uint256,uint256,uint256)": TypedContractEvent<LogMintWithdrawalPerformedEvent.InputTuple, LogMintWithdrawalPerformedEvent.OutputTuple, LogMintWithdrawalPerformedEvent.OutputObject>;
1598
+ LogMintWithdrawalPerformed: TypedContractEvent<LogMintWithdrawalPerformedEvent.InputTuple, LogMintWithdrawalPerformedEvent.OutputTuple, LogMintWithdrawalPerformedEvent.OutputObject>;
1599
+ "LogMintableWithdrawalAllowed(uint256,uint256,uint256)": TypedContractEvent<LogMintableWithdrawalAllowedEvent.InputTuple, LogMintableWithdrawalAllowedEvent.OutputTuple, LogMintableWithdrawalAllowedEvent.OutputObject>;
1600
+ LogMintableWithdrawalAllowed: TypedContractEvent<LogMintableWithdrawalAllowedEvent.InputTuple, LogMintableWithdrawalAllowedEvent.OutputTuple, LogMintableWithdrawalAllowedEvent.OutputObject>;
1601
+ "LogNewGovernorAccepted(address)": TypedContractEvent<LogNewGovernorAcceptedEvent.InputTuple, LogNewGovernorAcceptedEvent.OutputTuple, LogNewGovernorAcceptedEvent.OutputObject>;
1602
+ LogNewGovernorAccepted: TypedContractEvent<LogNewGovernorAcceptedEvent.InputTuple, LogNewGovernorAcceptedEvent.OutputTuple, LogNewGovernorAcceptedEvent.OutputObject>;
1603
+ "LogNftDeposit(address,uint256,uint256,uint256,uint256,uint256)": TypedContractEvent<LogNftDepositEvent.InputTuple, LogNftDepositEvent.OutputTuple, LogNftDepositEvent.OutputObject>;
1604
+ LogNftDeposit: TypedContractEvent<LogNftDepositEvent.InputTuple, LogNftDepositEvent.OutputTuple, LogNftDepositEvent.OutputObject>;
1605
+ "LogNftWithdrawalAllowed(uint256,uint256)": TypedContractEvent<LogNftWithdrawalAllowedEvent.InputTuple, LogNftWithdrawalAllowedEvent.OutputTuple, LogNftWithdrawalAllowedEvent.OutputObject>;
1606
+ LogNftWithdrawalAllowed: TypedContractEvent<LogNftWithdrawalAllowedEvent.InputTuple, LogNftWithdrawalAllowedEvent.OutputTuple, LogNftWithdrawalAllowedEvent.OutputObject>;
1607
+ "LogNftWithdrawalPerformed(uint256,uint256,uint256,uint256,address)": TypedContractEvent<LogNftWithdrawalPerformedEvent.InputTuple, LogNftWithdrawalPerformedEvent.OutputTuple, LogNftWithdrawalPerformedEvent.OutputObject>;
1608
+ LogNftWithdrawalPerformed: TypedContractEvent<LogNftWithdrawalPerformedEvent.InputTuple, LogNftWithdrawalPerformedEvent.OutputTuple, LogNftWithdrawalPerformedEvent.OutputObject>;
1609
+ "LogNominatedGovernor(address)": TypedContractEvent<LogNominatedGovernorEvent.InputTuple, LogNominatedGovernorEvent.OutputTuple, LogNominatedGovernorEvent.OutputObject>;
1610
+ LogNominatedGovernor: TypedContractEvent<LogNominatedGovernorEvent.InputTuple, LogNominatedGovernorEvent.OutputTuple, LogNominatedGovernorEvent.OutputObject>;
1611
+ "LogNominationCancelled()": TypedContractEvent<LogNominationCancelledEvent.InputTuple, LogNominationCancelledEvent.OutputTuple, LogNominationCancelledEvent.OutputObject>;
1612
+ LogNominationCancelled: TypedContractEvent<LogNominationCancelledEvent.InputTuple, LogNominationCancelledEvent.OutputTuple, LogNominationCancelledEvent.OutputObject>;
1613
+ "LogOperatorAdded(address)": TypedContractEvent<LogOperatorAddedEvent.InputTuple, LogOperatorAddedEvent.OutputTuple, LogOperatorAddedEvent.OutputObject>;
1614
+ LogOperatorAdded: TypedContractEvent<LogOperatorAddedEvent.InputTuple, LogOperatorAddedEvent.OutputTuple, LogOperatorAddedEvent.OutputObject>;
1615
+ "LogOperatorRemoved(address)": TypedContractEvent<LogOperatorRemovedEvent.InputTuple, LogOperatorRemovedEvent.OutputTuple, LogOperatorRemovedEvent.OutputObject>;
1616
+ LogOperatorRemoved: TypedContractEvent<LogOperatorRemovedEvent.InputTuple, LogOperatorRemovedEvent.OutputTuple, LogOperatorRemovedEvent.OutputObject>;
1617
+ "LogRegistered(address,string)": TypedContractEvent<LogRegisteredEvent.InputTuple, LogRegisteredEvent.OutputTuple, LogRegisteredEvent.OutputObject>;
1618
+ LogRegistered: TypedContractEvent<LogRegisteredEvent.InputTuple, LogRegisteredEvent.OutputTuple, LogRegisteredEvent.OutputObject>;
1619
+ "LogRemovalIntent(address,string)": TypedContractEvent<LogRemovalIntentEvent.InputTuple, LogRemovalIntentEvent.OutputTuple, LogRemovalIntentEvent.OutputObject>;
1620
+ LogRemovalIntent: TypedContractEvent<LogRemovalIntentEvent.InputTuple, LogRemovalIntentEvent.OutputTuple, LogRemovalIntentEvent.OutputObject>;
1621
+ "LogRemoved(address,string)": TypedContractEvent<LogRemovedEvent.InputTuple, LogRemovedEvent.OutputTuple, LogRemovedEvent.OutputObject>;
1622
+ LogRemoved: TypedContractEvent<LogRemovedEvent.InputTuple, LogRemovedEvent.OutputTuple, LogRemovedEvent.OutputObject>;
1623
+ "LogRemovedGovernor(address)": TypedContractEvent<LogRemovedGovernorEvent.InputTuple, LogRemovedGovernorEvent.OutputTuple, LogRemovedGovernorEvent.OutputObject>;
1624
+ LogRemovedGovernor: TypedContractEvent<LogRemovedGovernorEvent.InputTuple, LogRemovedGovernorEvent.OutputTuple, LogRemovedGovernorEvent.OutputObject>;
1625
+ "LogRootUpdate(uint256,uint256,uint256,uint256)": TypedContractEvent<LogRootUpdateEvent.InputTuple, LogRootUpdateEvent.OutputTuple, LogRootUpdateEvent.OutputObject>;
1626
+ LogRootUpdate: TypedContractEvent<LogRootUpdateEvent.InputTuple, LogRootUpdateEvent.OutputTuple, LogRootUpdateEvent.OutputObject>;
1627
+ "LogStateTransitionFact(bytes32)": TypedContractEvent<LogStateTransitionFactEvent.InputTuple, LogStateTransitionFactEvent.OutputTuple, LogStateTransitionFactEvent.OutputObject>;
1628
+ LogStateTransitionFact: TypedContractEvent<LogStateTransitionFactEvent.InputTuple, LogStateTransitionFactEvent.OutputTuple, LogStateTransitionFactEvent.OutputObject>;
1629
+ "LogTokenAdminAdded(address)": TypedContractEvent<LogTokenAdminAddedEvent.InputTuple, LogTokenAdminAddedEvent.OutputTuple, LogTokenAdminAddedEvent.OutputObject>;
1630
+ LogTokenAdminAdded: TypedContractEvent<LogTokenAdminAddedEvent.InputTuple, LogTokenAdminAddedEvent.OutputTuple, LogTokenAdminAddedEvent.OutputObject>;
1631
+ "LogTokenAdminRemoved(address)": TypedContractEvent<LogTokenAdminRemovedEvent.InputTuple, LogTokenAdminRemovedEvent.OutputTuple, LogTokenAdminRemovedEvent.OutputObject>;
1632
+ LogTokenAdminRemoved: TypedContractEvent<LogTokenAdminRemovedEvent.InputTuple, LogTokenAdminRemovedEvent.OutputTuple, LogTokenAdminRemovedEvent.OutputObject>;
1633
+ "LogTokenRegistered(uint256,bytes,uint256)": TypedContractEvent<LogTokenRegisteredEvent.InputTuple, LogTokenRegisteredEvent.OutputTuple, LogTokenRegisteredEvent.OutputObject>;
1634
+ LogTokenRegistered: TypedContractEvent<LogTokenRegisteredEvent.InputTuple, LogTokenRegisteredEvent.OutputTuple, LogTokenRegisteredEvent.OutputObject>;
1635
+ "LogUnFrozen()": TypedContractEvent<LogUnFrozenEvent.InputTuple, LogUnFrozenEvent.OutputTuple, LogUnFrozenEvent.OutputObject>;
1636
+ LogUnFrozen: TypedContractEvent<LogUnFrozenEvent.InputTuple, LogUnFrozenEvent.OutputTuple, LogUnFrozenEvent.OutputObject>;
1637
+ "LogUserRegistered(address,uint256,address)": TypedContractEvent<LogUserRegisteredEvent.InputTuple, LogUserRegisteredEvent.OutputTuple, LogUserRegisteredEvent.OutputObject>;
1638
+ LogUserRegistered: TypedContractEvent<LogUserRegisteredEvent.InputTuple, LogUserRegisteredEvent.OutputTuple, LogUserRegisteredEvent.OutputObject>;
1639
+ "LogVaultBalanceChangeApplied(address,uint256,uint256,int256)": TypedContractEvent<LogVaultBalanceChangeAppliedEvent.InputTuple, LogVaultBalanceChangeAppliedEvent.OutputTuple, LogVaultBalanceChangeAppliedEvent.OutputObject>;
1640
+ LogVaultBalanceChangeApplied: TypedContractEvent<LogVaultBalanceChangeAppliedEvent.InputTuple, LogVaultBalanceChangeAppliedEvent.OutputTuple, LogVaultBalanceChangeAppliedEvent.OutputObject>;
1641
+ "LogVaultWithdrawalLockSet(address,uint256,uint256,uint256)": TypedContractEvent<LogVaultWithdrawalLockSetEvent.InputTuple, LogVaultWithdrawalLockSetEvent.OutputTuple, LogVaultWithdrawalLockSetEvent.OutputObject>;
1642
+ LogVaultWithdrawalLockSet: TypedContractEvent<LogVaultWithdrawalLockSetEvent.InputTuple, LogVaultWithdrawalLockSetEvent.OutputTuple, LogVaultWithdrawalLockSetEvent.OutputObject>;
1643
+ "LogWithdrawalAllowed(uint256,uint256,uint256,uint256)": TypedContractEvent<LogWithdrawalAllowedEvent.InputTuple, LogWithdrawalAllowedEvent.OutputTuple, LogWithdrawalAllowedEvent.OutputObject>;
1644
+ LogWithdrawalAllowed: TypedContractEvent<LogWithdrawalAllowedEvent.InputTuple, LogWithdrawalAllowedEvent.OutputTuple, LogWithdrawalAllowedEvent.OutputObject>;
1645
+ "LogWithdrawalFromVault(address,uint256,uint256,uint256,uint256)": TypedContractEvent<LogWithdrawalFromVaultEvent.InputTuple, LogWithdrawalFromVaultEvent.OutputTuple, LogWithdrawalFromVaultEvent.OutputObject>;
1646
+ LogWithdrawalFromVault: TypedContractEvent<LogWithdrawalFromVaultEvent.InputTuple, LogWithdrawalFromVaultEvent.OutputTuple, LogWithdrawalFromVaultEvent.OutputObject>;
1647
+ "LogWithdrawalPerformed(uint256,uint256,uint256,uint256,address)": TypedContractEvent<LogWithdrawalPerformedEvent.InputTuple, LogWithdrawalPerformedEvent.OutputTuple, LogWithdrawalPerformedEvent.OutputObject>;
1648
+ LogWithdrawalPerformed: TypedContractEvent<LogWithdrawalPerformedEvent.InputTuple, LogWithdrawalPerformedEvent.OutputTuple, LogWithdrawalPerformedEvent.OutputObject>;
1649
+ };
1650
+ }