@venusprotocol/protocol-reserve 1.5.0 → 1.6.0-dev.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. package/package.json +3 -2
  2. package/typechain/AbstractTokenConverter.d.ts +1775 -0
  3. package/typechain/AccessControl.d.ts +388 -0
  4. package/typechain/AccessControlledV8.d.ts +341 -0
  5. package/typechain/BeaconProxy.d.ts +126 -0
  6. package/typechain/BoundValidatorInterface.d.ts +126 -0
  7. package/typechain/ContextUpgradeable.d.ts +92 -0
  8. package/typechain/ConverterNetwork.d.ts +723 -0
  9. package/typechain/ERC165.d.ts +116 -0
  10. package/typechain/ERC1967Proxy.d.ts +126 -0
  11. package/typechain/ERC1967Upgrade.d.ts +126 -0
  12. package/typechain/ERC20.d.ts +441 -0
  13. package/typechain/IAbstractTokenConverter.d.ts +773 -0
  14. package/typechain/IAccessControl.d.ts +333 -0
  15. package/typechain/IAccessControlManagerV8.d.ts +504 -0
  16. package/typechain/IBeacon.d.ts +101 -0
  17. package/typechain/IComptroller.d.ts +136 -0
  18. package/typechain/IConverterNetwork.d.ts +292 -0
  19. package/typechain/IERC165.d.ts +116 -0
  20. package/typechain/IERC1822Proxiable.d.ts +101 -0
  21. package/typechain/IERC1967.d.ts +126 -0
  22. package/typechain/IERC20.d.ts +324 -0
  23. package/typechain/IERC20Metadata.d.ts +363 -0
  24. package/typechain/IERC20PermitUpgradeable.d.ts +187 -0
  25. package/typechain/IERC20Upgradeable.d.ts +324 -0
  26. package/typechain/IIncomeDestination.d.ts +122 -0
  27. package/typechain/IPoolRegistry.d.ts +155 -0
  28. package/typechain/IProtocolShareReserve.d.ts +127 -0
  29. package/typechain/IRiskFund.d.ts +200 -0
  30. package/typechain/IRiskFundConverter.d.ts +138 -0
  31. package/typechain/IRiskFundGetters.d.ts +103 -0
  32. package/typechain/IShortfall.d.ts +110 -0
  33. package/typechain/ITransparentUpgradeableProxy.d.ts +256 -0
  34. package/typechain/IVToken.d.ts +98 -0
  35. package/typechain/IXVSVault.d.ts +95 -0
  36. package/typechain/Initializable.d.ts +92 -0
  37. package/typechain/MaxLoopsLimitHelper.d.ts +128 -0
  38. package/typechain/MaxLoopsLimitHelpersStorage.d.ts +101 -0
  39. package/typechain/MockACM.d.ts +615 -0
  40. package/typechain/MockArraySorter.d.ts +118 -0
  41. package/typechain/MockConverter.d.ts +1969 -0
  42. package/typechain/MockDeflatingToken.d.ts +486 -0
  43. package/typechain/MockRiskFundConverter.d.ts +2479 -0
  44. package/typechain/MockToken.d.ts +505 -0
  45. package/typechain/OracleInterface.d.ts +98 -0
  46. package/typechain/Ownable.d.ts +181 -0
  47. package/typechain/Ownable2StepUpgradeable.d.ts +261 -0
  48. package/typechain/OwnableUpgradeable.d.ts +193 -0
  49. package/typechain/PausableUpgradeable.d.ts +129 -0
  50. package/typechain/ProtocolShareReserve.d.ts +1214 -0
  51. package/typechain/Proxy.d.ts +78 -0
  52. package/typechain/ProxyAdmin.d.ts +357 -0
  53. package/typechain/ReentrancyGuardUpgradeable.d.ts +92 -0
  54. package/typechain/ReserveHelpersStorage.d.ts +300 -0
  55. package/typechain/ResilientOracle.d.ts +1034 -0
  56. package/typechain/ResilientOracleInterface.d.ts +192 -0
  57. package/typechain/RiskFundConverter.d.ts +2235 -0
  58. package/typechain/RiskFundV1Storage.d.ts +353 -0
  59. package/typechain/RiskFundV2.d.ts +965 -0
  60. package/typechain/RiskFundV2Storage.d.ts +372 -0
  61. package/typechain/SingleTokenConverter.d.ts +1944 -0
  62. package/typechain/TransparentUpgradeableProxy.d.ts +126 -0
  63. package/typechain/TwapInterface.d.ts +124 -0
  64. package/typechain/UpgradeableBeacon.d.ts +240 -0
  65. package/typechain/VBep20Interface.d.ts +379 -0
  66. package/typechain/XVSVaultTreasury.d.ts +515 -0
  67. package/typechain/common.d.ts +35 -0
  68. package/typechain/factories/AbstractTokenConverter__factory.ts +1297 -0
  69. package/typechain/factories/AccessControl__factory.ts +227 -0
  70. package/typechain/factories/AccessControlledV8__factory.ts +196 -0
  71. package/typechain/factories/BeaconProxy__factory.ts +133 -0
  72. package/typechain/factories/BoundValidatorInterface__factory.ts +59 -0
  73. package/typechain/factories/ContextUpgradeable__factory.ts +39 -0
  74. package/typechain/factories/ConverterNetwork__factory.ts +502 -0
  75. package/typechain/factories/ERC165__factory.ts +39 -0
  76. package/typechain/factories/ERC1967Proxy__factory.ts +137 -0
  77. package/typechain/factories/ERC1967Upgrade__factory.ts +71 -0
  78. package/typechain/factories/ERC20__factory.ts +340 -0
  79. package/typechain/factories/IAbstractTokenConverter__factory.ts +466 -0
  80. package/typechain/factories/IAccessControlManagerV8__factory.ts +301 -0
  81. package/typechain/factories/IAccessControl__factory.ts +198 -0
  82. package/typechain/factories/IBeacon__factory.ts +36 -0
  83. package/typechain/factories/IComptroller__factory.ts +68 -0
  84. package/typechain/factories/IConverterNetwork__factory.ts +142 -0
  85. package/typechain/factories/IERC165__factory.ts +42 -0
  86. package/typechain/factories/IERC1822Proxiable__factory.ts +39 -0
  87. package/typechain/factories/IERC1967__factory.ts +68 -0
  88. package/typechain/factories/IERC20Metadata__factory.ts +248 -0
  89. package/typechain/factories/IERC20PermitUpgradeable__factory.ts +105 -0
  90. package/typechain/factories/IERC20Upgradeable__factory.ts +209 -0
  91. package/typechain/factories/IERC20__factory.ts +203 -0
  92. package/typechain/factories/IIncomeDestination__factory.ts +44 -0
  93. package/typechain/factories/IPoolRegistry__factory.ts +66 -0
  94. package/typechain/factories/IProtocolShareReserve__factory.ts +53 -0
  95. package/typechain/factories/IRiskFundConverter__factory.ts +63 -0
  96. package/typechain/factories/IRiskFundGetters__factory.ts +39 -0
  97. package/typechain/factories/IRiskFund__factory.ts +89 -0
  98. package/typechain/factories/IShortfall__factory.ts +36 -0
  99. package/typechain/factories/ITransparentUpgradeableProxy__factory.ts +145 -0
  100. package/typechain/factories/IVToken__factory.ts +36 -0
  101. package/typechain/factories/IXVSVault__factory.ts +36 -0
  102. package/typechain/factories/Initializable__factory.ts +36 -0
  103. package/typechain/factories/MaxLoopsLimitHelper__factory.ts +74 -0
  104. package/typechain/factories/MaxLoopsLimitHelpersStorage__factory.ts +75 -0
  105. package/typechain/factories/MockACM__factory.ts +411 -0
  106. package/typechain/factories/MockArraySorter__factory.ts +85 -0
  107. package/typechain/factories/MockConverter__factory.ts +1439 -0
  108. package/typechain/factories/MockDeflatingToken__factory.ts +389 -0
  109. package/typechain/factories/MockRiskFundConverter__factory.ts +1828 -0
  110. package/typechain/factories/MockToken__factory.ts +398 -0
  111. package/typechain/factories/OracleInterface__factory.ts +45 -0
  112. package/typechain/factories/Ownable2StepUpgradeable__factory.ts +134 -0
  113. package/typechain/factories/OwnableUpgradeable__factory.ts +91 -0
  114. package/typechain/factories/Ownable__factory.ts +75 -0
  115. package/typechain/factories/PausableUpgradeable__factory.ts +78 -0
  116. package/typechain/factories/ProtocolShareReserve__factory.ts +874 -0
  117. package/typechain/factories/ProxyAdmin__factory.ts +202 -0
  118. package/typechain/factories/Proxy__factory.ts +28 -0
  119. package/typechain/factories/ReentrancyGuardUpgradeable__factory.ts +43 -0
  120. package/typechain/factories/ReserveHelpersStorage__factory.ts +188 -0
  121. package/typechain/factories/ResilientOracleInterface__factory.ts +94 -0
  122. package/typechain/factories/ResilientOracle__factory.ts +710 -0
  123. package/typechain/factories/RiskFundConverter__factory.ts +1694 -0
  124. package/typechain/factories/RiskFundV1Storage__factory.ts +223 -0
  125. package/typechain/factories/RiskFundV2Storage__factory.ts +236 -0
  126. package/typechain/factories/RiskFundV2__factory.ts +672 -0
  127. package/typechain/factories/SingleTokenConverter__factory.ts +1441 -0
  128. package/typechain/factories/TransparentUpgradeableProxy__factory.ts +152 -0
  129. package/typechain/factories/TwapInterface__factory.ts +61 -0
  130. package/typechain/factories/UpgradeableBeacon__factory.ts +163 -0
  131. package/typechain/factories/VBep20Interface__factory.ts +261 -0
  132. package/typechain/factories/XVSVaultTreasury__factory.ts +365 -0
  133. package/typechain/index.ts +134 -0
@@ -0,0 +1,223 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
6
+ import { Provider, TransactionRequest } from "@ethersproject/providers";
7
+ import type {
8
+ RiskFundV1Storage,
9
+ RiskFundV1StorageInterface,
10
+ } from "../RiskFundV1Storage";
11
+
12
+ const _abi = [
13
+ {
14
+ anonymous: false,
15
+ inputs: [
16
+ {
17
+ indexed: false,
18
+ internalType: "uint8",
19
+ name: "version",
20
+ type: "uint8",
21
+ },
22
+ ],
23
+ name: "Initialized",
24
+ type: "event",
25
+ },
26
+ {
27
+ anonymous: false,
28
+ inputs: [
29
+ {
30
+ indexed: true,
31
+ internalType: "address",
32
+ name: "previousOwner",
33
+ type: "address",
34
+ },
35
+ {
36
+ indexed: true,
37
+ internalType: "address",
38
+ name: "newOwner",
39
+ type: "address",
40
+ },
41
+ ],
42
+ name: "OwnershipTransferStarted",
43
+ type: "event",
44
+ },
45
+ {
46
+ anonymous: false,
47
+ inputs: [
48
+ {
49
+ indexed: true,
50
+ internalType: "address",
51
+ name: "previousOwner",
52
+ type: "address",
53
+ },
54
+ {
55
+ indexed: true,
56
+ internalType: "address",
57
+ name: "newOwner",
58
+ type: "address",
59
+ },
60
+ ],
61
+ name: "OwnershipTransferred",
62
+ type: "event",
63
+ },
64
+ {
65
+ inputs: [],
66
+ name: "acceptOwnership",
67
+ outputs: [],
68
+ stateMutability: "nonpayable",
69
+ type: "function",
70
+ },
71
+ {
72
+ inputs: [],
73
+ name: "convertibleBaseAsset",
74
+ outputs: [
75
+ {
76
+ internalType: "address",
77
+ name: "",
78
+ type: "address",
79
+ },
80
+ ],
81
+ stateMutability: "view",
82
+ type: "function",
83
+ },
84
+ {
85
+ inputs: [],
86
+ name: "maxLoopsLimit",
87
+ outputs: [
88
+ {
89
+ internalType: "uint256",
90
+ name: "",
91
+ type: "uint256",
92
+ },
93
+ ],
94
+ stateMutability: "view",
95
+ type: "function",
96
+ },
97
+ {
98
+ inputs: [],
99
+ name: "owner",
100
+ outputs: [
101
+ {
102
+ internalType: "address",
103
+ name: "",
104
+ type: "address",
105
+ },
106
+ ],
107
+ stateMutability: "view",
108
+ type: "function",
109
+ },
110
+ {
111
+ inputs: [],
112
+ name: "pendingOwner",
113
+ outputs: [
114
+ {
115
+ internalType: "address",
116
+ name: "",
117
+ type: "address",
118
+ },
119
+ ],
120
+ stateMutability: "view",
121
+ type: "function",
122
+ },
123
+ {
124
+ inputs: [
125
+ {
126
+ internalType: "address",
127
+ name: "",
128
+ type: "address",
129
+ },
130
+ {
131
+ internalType: "address",
132
+ name: "",
133
+ type: "address",
134
+ },
135
+ ],
136
+ name: "poolAssetsFunds",
137
+ outputs: [
138
+ {
139
+ internalType: "uint256",
140
+ name: "",
141
+ type: "uint256",
142
+ },
143
+ ],
144
+ stateMutability: "view",
145
+ type: "function",
146
+ },
147
+ {
148
+ inputs: [],
149
+ name: "renounceOwnership",
150
+ outputs: [],
151
+ stateMutability: "nonpayable",
152
+ type: "function",
153
+ },
154
+ {
155
+ inputs: [],
156
+ name: "shortfall",
157
+ outputs: [
158
+ {
159
+ internalType: "address",
160
+ name: "",
161
+ type: "address",
162
+ },
163
+ ],
164
+ stateMutability: "view",
165
+ type: "function",
166
+ },
167
+ {
168
+ inputs: [
169
+ {
170
+ internalType: "address",
171
+ name: "newOwner",
172
+ type: "address",
173
+ },
174
+ ],
175
+ name: "transferOwnership",
176
+ outputs: [],
177
+ stateMutability: "nonpayable",
178
+ type: "function",
179
+ },
180
+ ];
181
+
182
+ const _bytecode =
183
+ "0x608060405234801561001057600080fd5b5061050b806100206000396000f3fe608060405234801561001057600080fd5b50600436106100a35760003560e01c80638da5cb5b11610076578063c8ecc0d31161005b578063c8ecc0d314610164578063e30c397814610184578063f2fde38b146101a257600080fd5b80638da5cb5b1461013d578063be26317e1461015b57600080fd5b806319b1faef146100a85780635dbe3533146100f2578063715018a61461012b57806379ba509714610135575b600080fd5b60fc546100c89073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b61011d610100366004610480565b609860209081526000928352604080842090915290825290205481565b6040519081526020016100e9565b6101336101b5565b005b6101336101c9565b60335473ffffffffffffffffffffffffffffffffffffffff166100c8565b61011d60c95481565b60fb546100c89073ffffffffffffffffffffffffffffffffffffffff1681565b60655473ffffffffffffffffffffffffffffffffffffffff166100c8565b6101336101b03660046104b3565b610283565b6101bd610333565b6101c760006103b4565b565b606554339073ffffffffffffffffffffffffffffffffffffffff168114610277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b610280816103b4565b50565b61028b610333565b6065805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff000000000000000000000000000000000000000090911681179091556102ee60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60335473ffffffffffffffffffffffffffffffffffffffff1633146101c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161026e565b606580547fffffffffffffffffffffffff0000000000000000000000000000000000000000169055610280816033805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b803573ffffffffffffffffffffffffffffffffffffffff8116811461047b57600080fd5b919050565b6000806040838503121561049357600080fd5b61049c83610457565b91506104aa60208401610457565b90509250929050565b6000602082840312156104c557600080fd5b6104ce82610457565b939250505056fea26469706673582212209752197ae878820996867e815d21fad7ad483929d9aba559e9870da4b0dc485b64736f6c634300080d0033";
184
+
185
+ export class RiskFundV1Storage__factory extends ContractFactory {
186
+ constructor(
187
+ ...args: [signer: Signer] | ConstructorParameters<typeof ContractFactory>
188
+ ) {
189
+ if (args.length === 1) {
190
+ super(_abi, _bytecode, args[0]);
191
+ } else {
192
+ super(...args);
193
+ }
194
+ }
195
+
196
+ deploy(
197
+ overrides?: Overrides & { from?: string | Promise<string> }
198
+ ): Promise<RiskFundV1Storage> {
199
+ return super.deploy(overrides || {}) as Promise<RiskFundV1Storage>;
200
+ }
201
+ getDeployTransaction(
202
+ overrides?: Overrides & { from?: string | Promise<string> }
203
+ ): TransactionRequest {
204
+ return super.getDeployTransaction(overrides || {});
205
+ }
206
+ attach(address: string): RiskFundV1Storage {
207
+ return super.attach(address) as RiskFundV1Storage;
208
+ }
209
+ connect(signer: Signer): RiskFundV1Storage__factory {
210
+ return super.connect(signer) as RiskFundV1Storage__factory;
211
+ }
212
+ static readonly bytecode = _bytecode;
213
+ static readonly abi = _abi;
214
+ static createInterface(): RiskFundV1StorageInterface {
215
+ return new utils.Interface(_abi) as RiskFundV1StorageInterface;
216
+ }
217
+ static connect(
218
+ address: string,
219
+ signerOrProvider: Signer | Provider
220
+ ): RiskFundV1Storage {
221
+ return new Contract(address, _abi, signerOrProvider) as RiskFundV1Storage;
222
+ }
223
+ }
@@ -0,0 +1,236 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Signer, utils, Contract, ContractFactory, Overrides } from "ethers";
6
+ import { Provider, TransactionRequest } from "@ethersproject/providers";
7
+ import type {
8
+ RiskFundV2Storage,
9
+ RiskFundV2StorageInterface,
10
+ } from "../RiskFundV2Storage";
11
+
12
+ const _abi = [
13
+ {
14
+ anonymous: false,
15
+ inputs: [
16
+ {
17
+ indexed: false,
18
+ internalType: "uint8",
19
+ name: "version",
20
+ type: "uint8",
21
+ },
22
+ ],
23
+ name: "Initialized",
24
+ type: "event",
25
+ },
26
+ {
27
+ anonymous: false,
28
+ inputs: [
29
+ {
30
+ indexed: true,
31
+ internalType: "address",
32
+ name: "previousOwner",
33
+ type: "address",
34
+ },
35
+ {
36
+ indexed: true,
37
+ internalType: "address",
38
+ name: "newOwner",
39
+ type: "address",
40
+ },
41
+ ],
42
+ name: "OwnershipTransferStarted",
43
+ type: "event",
44
+ },
45
+ {
46
+ anonymous: false,
47
+ inputs: [
48
+ {
49
+ indexed: true,
50
+ internalType: "address",
51
+ name: "previousOwner",
52
+ type: "address",
53
+ },
54
+ {
55
+ indexed: true,
56
+ internalType: "address",
57
+ name: "newOwner",
58
+ type: "address",
59
+ },
60
+ ],
61
+ name: "OwnershipTransferred",
62
+ type: "event",
63
+ },
64
+ {
65
+ inputs: [],
66
+ name: "acceptOwnership",
67
+ outputs: [],
68
+ stateMutability: "nonpayable",
69
+ type: "function",
70
+ },
71
+ {
72
+ inputs: [],
73
+ name: "convertibleBaseAsset",
74
+ outputs: [
75
+ {
76
+ internalType: "address",
77
+ name: "",
78
+ type: "address",
79
+ },
80
+ ],
81
+ stateMutability: "view",
82
+ type: "function",
83
+ },
84
+ {
85
+ inputs: [],
86
+ name: "maxLoopsLimit",
87
+ outputs: [
88
+ {
89
+ internalType: "uint256",
90
+ name: "",
91
+ type: "uint256",
92
+ },
93
+ ],
94
+ stateMutability: "view",
95
+ type: "function",
96
+ },
97
+ {
98
+ inputs: [],
99
+ name: "owner",
100
+ outputs: [
101
+ {
102
+ internalType: "address",
103
+ name: "",
104
+ type: "address",
105
+ },
106
+ ],
107
+ stateMutability: "view",
108
+ type: "function",
109
+ },
110
+ {
111
+ inputs: [],
112
+ name: "pendingOwner",
113
+ outputs: [
114
+ {
115
+ internalType: "address",
116
+ name: "",
117
+ type: "address",
118
+ },
119
+ ],
120
+ stateMutability: "view",
121
+ type: "function",
122
+ },
123
+ {
124
+ inputs: [
125
+ {
126
+ internalType: "address",
127
+ name: "",
128
+ type: "address",
129
+ },
130
+ {
131
+ internalType: "address",
132
+ name: "",
133
+ type: "address",
134
+ },
135
+ ],
136
+ name: "poolAssetsFunds",
137
+ outputs: [
138
+ {
139
+ internalType: "uint256",
140
+ name: "",
141
+ type: "uint256",
142
+ },
143
+ ],
144
+ stateMutability: "view",
145
+ type: "function",
146
+ },
147
+ {
148
+ inputs: [],
149
+ name: "renounceOwnership",
150
+ outputs: [],
151
+ stateMutability: "nonpayable",
152
+ type: "function",
153
+ },
154
+ {
155
+ inputs: [],
156
+ name: "riskFundConverter",
157
+ outputs: [
158
+ {
159
+ internalType: "address",
160
+ name: "",
161
+ type: "address",
162
+ },
163
+ ],
164
+ stateMutability: "view",
165
+ type: "function",
166
+ },
167
+ {
168
+ inputs: [],
169
+ name: "shortfall",
170
+ outputs: [
171
+ {
172
+ internalType: "address",
173
+ name: "",
174
+ type: "address",
175
+ },
176
+ ],
177
+ stateMutability: "view",
178
+ type: "function",
179
+ },
180
+ {
181
+ inputs: [
182
+ {
183
+ internalType: "address",
184
+ name: "newOwner",
185
+ type: "address",
186
+ },
187
+ ],
188
+ name: "transferOwnership",
189
+ outputs: [],
190
+ stateMutability: "nonpayable",
191
+ type: "function",
192
+ },
193
+ ];
194
+
195
+ const _bytecode =
196
+ "0x608060405234801561001057600080fd5b50610547806100206000396000f3fe608060405234801561001057600080fd5b50600436106100be5760003560e01c80638da5cb5b11610076578063c8ecc0d31161005b578063c8ecc0d3146101a0578063e30c3978146101c0578063f2fde38b146101de57600080fd5b80638da5cb5b14610179578063be26317e1461019757600080fd5b80635dbe3533116100a75780635dbe35331461012e578063715018a61461016757806379ba50971461017157600080fd5b806319b1faef146100c35780632eef91721461010d575b600080fd5b60fc546100e39073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020015b60405180910390f35b610131546100e39073ffffffffffffffffffffffffffffffffffffffff1681565b61015961013c3660046104bc565b609860209081526000928352604080842090915290825290205481565b604051908152602001610104565b61016f6101f1565b005b61016f610205565b60335473ffffffffffffffffffffffffffffffffffffffff166100e3565b61015960c95481565b60fb546100e39073ffffffffffffffffffffffffffffffffffffffff1681565b60655473ffffffffffffffffffffffffffffffffffffffff166100e3565b61016f6101ec3660046104ef565b6102bf565b6101f961036f565b61020360006103f0565b565b606554339073ffffffffffffffffffffffffffffffffffffffff1681146102b3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6102bc816103f0565b50565b6102c761036f565b6065805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff0000000000000000000000000000000000000000909116811790915561032a60335473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b60335473ffffffffffffffffffffffffffffffffffffffff163314610203576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016102aa565b606580547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556102bc816033805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b803573ffffffffffffffffffffffffffffffffffffffff811681146104b757600080fd5b919050565b600080604083850312156104cf57600080fd5b6104d883610493565b91506104e660208401610493565b90509250929050565b60006020828403121561050157600080fd5b61050a82610493565b939250505056fea2646970667358221220961c5fbca821a852d623a1be4ae456b0f390197d658ae9e6f62234b1e8b4904764736f6c634300080d0033";
197
+
198
+ export class RiskFundV2Storage__factory extends ContractFactory {
199
+ constructor(
200
+ ...args: [signer: Signer] | ConstructorParameters<typeof ContractFactory>
201
+ ) {
202
+ if (args.length === 1) {
203
+ super(_abi, _bytecode, args[0]);
204
+ } else {
205
+ super(...args);
206
+ }
207
+ }
208
+
209
+ deploy(
210
+ overrides?: Overrides & { from?: string | Promise<string> }
211
+ ): Promise<RiskFundV2Storage> {
212
+ return super.deploy(overrides || {}) as Promise<RiskFundV2Storage>;
213
+ }
214
+ getDeployTransaction(
215
+ overrides?: Overrides & { from?: string | Promise<string> }
216
+ ): TransactionRequest {
217
+ return super.getDeployTransaction(overrides || {});
218
+ }
219
+ attach(address: string): RiskFundV2Storage {
220
+ return super.attach(address) as RiskFundV2Storage;
221
+ }
222
+ connect(signer: Signer): RiskFundV2Storage__factory {
223
+ return super.connect(signer) as RiskFundV2Storage__factory;
224
+ }
225
+ static readonly bytecode = _bytecode;
226
+ static readonly abi = _abi;
227
+ static createInterface(): RiskFundV2StorageInterface {
228
+ return new utils.Interface(_abi) as RiskFundV2StorageInterface;
229
+ }
230
+ static connect(
231
+ address: string,
232
+ signerOrProvider: Signer | Provider
233
+ ): RiskFundV2Storage {
234
+ return new Contract(address, _abi, signerOrProvider) as RiskFundV2Storage;
235
+ }
236
+ }