@4everland/land-v6 1.0.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 (171) hide show
  1. package/.gitattributes +1 -0
  2. package/.gitmodules +3 -0
  3. package/README.md +9 -0
  4. package/package.json +96 -0
  5. package/tsconfig.json +11 -0
  6. package/types/BasicToken.d.ts +300 -0
  7. package/types/BlackList.d.ts +512 -0
  8. package/types/BlastOracleLand.d.ts +933 -0
  9. package/types/ChainlinkPriceFeed.d.ts +427 -0
  10. package/types/Console.d.ts +101 -0
  11. package/types/CustomPriceFeed.d.ts +214 -0
  12. package/types/ERC1967Proxy.d.ts +126 -0
  13. package/types/ERC1967Upgrade.d.ts +126 -0
  14. package/types/ERC20.d.ts +343 -0
  15. package/types/ERC20Basic.d.ts +199 -0
  16. package/types/ETHOracleLand.d.ts +901 -0
  17. package/types/FixedPriceFeed.d.ts +212 -0
  18. package/types/IAggregatorV3Interface.d.ts +234 -0
  19. package/types/IBeacon.d.ts +101 -0
  20. package/types/IBlast.d.ts +919 -0
  21. package/types/ICoin.d.ts +95 -0
  22. package/types/IERC1822Proxiable.d.ts +101 -0
  23. package/types/IERC1967.d.ts +126 -0
  24. package/types/IERC20.d.ts +324 -0
  25. package/types/IERC20Metadata.d.ts +363 -0
  26. package/types/IERC20Rebasing.d.ts +184 -0
  27. package/types/ILand.d.ts +386 -0
  28. package/types/ILandCore.d.ts +255 -0
  29. package/types/IPriceFeed.d.ts +108 -0
  30. package/types/IPyth.d.ts +194 -0
  31. package/types/IQuoter.d.ts +269 -0
  32. package/types/ITransparentUpgradeableProxy.d.ts +256 -0
  33. package/types/IUniswapV3Pool.d.ts +203 -0
  34. package/types/IUniswapV3PoolActions.d.ts +396 -0
  35. package/types/IUniswapV3PoolDerivedState.d.ts +185 -0
  36. package/types/IUniswapV3PoolEvents.d.ts +482 -0
  37. package/types/IUniswapV3PoolImmutables.d.ts +174 -0
  38. package/types/IUniswapV3PoolOwnerActions.d.ts +168 -0
  39. package/types/IUniswapV3PoolState.d.ts +438 -0
  40. package/types/IWETH.d.ts +374 -0
  41. package/types/Initializable.d.ts +92 -0
  42. package/types/Land.d.ts +586 -0
  43. package/types/LandCore.d.ts +255 -0
  44. package/types/LandMath.d.ts +101 -0
  45. package/types/LandOwnable.d.ts +134 -0
  46. package/types/LandOwnableUpgradeable.d.ts +148 -0
  47. package/types/MockDAI.d.ts +441 -0
  48. package/types/MockUSDC.d.ts +441 -0
  49. package/types/MockUSDT.d.ts +441 -0
  50. package/types/OracleLand.d.ts +724 -0
  51. package/types/Ownable.d.ts +130 -0
  52. package/types/Pausable.d.ts +203 -0
  53. package/types/Proxy.d.ts +78 -0
  54. package/types/ProxyAdmin.d.ts +357 -0
  55. package/types/PythPriceFeed.d.ts +423 -0
  56. package/types/StandardToken.d.ts +493 -0
  57. package/types/TetherToken.d.ts +1018 -0
  58. package/types/TransparentUpgradeableProxy.d.ts +126 -0
  59. package/types/UpgradedStandardToken.d.ts +630 -0
  60. package/types/common.d.ts +35 -0
  61. package/types/factories/BasicToken__factory.js +183 -0
  62. package/types/factories/BasicToken__factory.ts +185 -0
  63. package/types/factories/BlackList__factory.js +318 -0
  64. package/types/factories/BlackList__factory.ts +320 -0
  65. package/types/factories/BlastOracleLand__factory.js +656 -0
  66. package/types/factories/BlastOracleLand__factory.ts +649 -0
  67. package/types/factories/ChainlinkPriceFeed__factory.js +378 -0
  68. package/types/factories/ChainlinkPriceFeed__factory.ts +398 -0
  69. package/types/factories/Console__factory.js +76 -0
  70. package/types/factories/Console__factory.ts +66 -0
  71. package/types/factories/CustomPriceFeed__factory.js +207 -0
  72. package/types/factories/CustomPriceFeed__factory.ts +211 -0
  73. package/types/factories/ERC1967Proxy__factory.js +132 -0
  74. package/types/factories/ERC1967Proxy__factory.ts +137 -0
  75. package/types/factories/ERC1967Upgrade__factory.js +66 -0
  76. package/types/factories/ERC1967Upgrade__factory.ts +71 -0
  77. package/types/factories/ERC20Basic__factory.js +108 -0
  78. package/types/factories/ERC20Basic__factory.ts +110 -0
  79. package/types/factories/ERC20__factory.js +193 -0
  80. package/types/factories/ERC20__factory.ts +192 -0
  81. package/types/factories/ETHOracleLand__factory.js +625 -0
  82. package/types/factories/ETHOracleLand__factory.ts +615 -0
  83. package/types/factories/FixedPriceFeed__factory.js +192 -0
  84. package/types/factories/FixedPriceFeed__factory.ts +203 -0
  85. package/types/factories/IAggregatorV3Interface__factory.js +132 -0
  86. package/types/factories/IAggregatorV3Interface__factory.ts +141 -0
  87. package/types/factories/IBeacon__factory.js +34 -0
  88. package/types/factories/IBeacon__factory.ts +36 -0
  89. package/types/factories/IBlast__factory.js +439 -0
  90. package/types/factories/IBlast__factory.ts +438 -0
  91. package/types/factories/ICoin__factory.js +34 -0
  92. package/types/factories/ICoin__factory.ts +33 -0
  93. package/types/factories/IERC1822Proxiable__factory.js +34 -0
  94. package/types/factories/IERC1822Proxiable__factory.ts +39 -0
  95. package/types/factories/IERC1967__factory.js +66 -0
  96. package/types/factories/IERC1967__factory.ts +68 -0
  97. package/types/factories/IERC20Metadata__factory.js +243 -0
  98. package/types/factories/IERC20Metadata__factory.ts +248 -0
  99. package/types/factories/IERC20Rebasing__factory.js +83 -0
  100. package/types/factories/IERC20Rebasing__factory.ts +88 -0
  101. package/types/factories/IERC20__factory.js +204 -0
  102. package/types/factories/IERC20__factory.ts +203 -0
  103. package/types/factories/ILandCore__factory.js +143 -0
  104. package/types/factories/ILandCore__factory.ts +145 -0
  105. package/types/factories/ILand__factory.js +255 -0
  106. package/types/factories/ILand__factory.ts +254 -0
  107. package/types/factories/IPriceFeed__factory.js +40 -0
  108. package/types/factories/IPriceFeed__factory.ts +42 -0
  109. package/types/factories/IPyth__factory.js +103 -0
  110. package/types/factories/IPyth__factory.ts +102 -0
  111. package/types/factories/IQuoter__factory.js +147 -0
  112. package/types/factories/IQuoter__factory.ts +149 -0
  113. package/types/factories/ITransparentUpgradeableProxy__factory.js +136 -0
  114. package/types/factories/ITransparentUpgradeableProxy__factory.ts +145 -0
  115. package/types/factories/IUniswapV3PoolActions__factory.js +241 -0
  116. package/types/factories/IUniswapV3PoolActions__factory.ts +250 -0
  117. package/types/factories/IUniswapV3PoolDerivedState__factory.js +79 -0
  118. package/types/factories/IUniswapV3PoolDerivedState__factory.ts +88 -0
  119. package/types/factories/IUniswapV3PoolEvents__factory.js +348 -0
  120. package/types/factories/IUniswapV3PoolEvents__factory.ts +357 -0
  121. package/types/factories/IUniswapV3PoolImmutables__factory.js +99 -0
  122. package/types/factories/IUniswapV3PoolImmutables__factory.ts +108 -0
  123. package/types/factories/IUniswapV3PoolOwnerActions__factory.js +73 -0
  124. package/types/factories/IUniswapV3PoolOwnerActions__factory.ts +82 -0
  125. package/types/factories/IUniswapV3PoolState__factory.js +267 -0
  126. package/types/factories/IUniswapV3PoolState__factory.ts +272 -0
  127. package/types/factories/IUniswapV3Pool__factory.js +114 -0
  128. package/types/factories/IUniswapV3Pool__factory.ts +119 -0
  129. package/types/factories/IWETH__factory.js +224 -0
  130. package/types/factories/IWETH__factory.ts +223 -0
  131. package/types/factories/Initializable__factory.js +34 -0
  132. package/types/factories/Initializable__factory.ts +36 -0
  133. package/types/factories/LandCore__factory.js +201 -0
  134. package/types/factories/LandCore__factory.ts +199 -0
  135. package/types/factories/LandMath__factory.js +76 -0
  136. package/types/factories/LandMath__factory.ts +66 -0
  137. package/types/factories/LandOwnableUpgradeable__factory.js +128 -0
  138. package/types/factories/LandOwnableUpgradeable__factory.ts +125 -0
  139. package/types/factories/LandOwnable__factory.js +126 -0
  140. package/types/factories/LandOwnable__factory.ts +118 -0
  141. package/types/factories/Land__factory.js +462 -0
  142. package/types/factories/Land__factory.ts +449 -0
  143. package/types/factories/MockDAI__factory.js +338 -0
  144. package/types/factories/MockDAI__factory.ts +328 -0
  145. package/types/factories/MockUSDC__factory.js +338 -0
  146. package/types/factories/MockUSDC__factory.ts +328 -0
  147. package/types/factories/MockUSDT__factory.js +338 -0
  148. package/types/factories/MockUSDT__factory.ts +328 -0
  149. package/types/factories/OracleLand__factory.js +537 -0
  150. package/types/factories/OracleLand__factory.ts +527 -0
  151. package/types/factories/Ownable__factory.js +73 -0
  152. package/types/factories/Ownable__factory.ts +75 -0
  153. package/types/factories/Pausable__factory.js +135 -0
  154. package/types/factories/Pausable__factory.ts +125 -0
  155. package/types/factories/ProxyAdmin__factory.js +212 -0
  156. package/types/factories/ProxyAdmin__factory.ts +202 -0
  157. package/types/factories/Proxy__factory.js +29 -0
  158. package/types/factories/Proxy__factory.ts +28 -0
  159. package/types/factories/PythPriceFeed__factory.js +378 -0
  160. package/types/factories/PythPriceFeed__factory.ts +400 -0
  161. package/types/factories/StandardToken__factory.js +305 -0
  162. package/types/factories/StandardToken__factory.ts +307 -0
  163. package/types/factories/TetherToken__factory.js +732 -0
  164. package/types/factories/TetherToken__factory.ts +749 -0
  165. package/types/factories/TransparentUpgradeableProxy__factory.js +137 -0
  166. package/types/factories/TransparentUpgradeableProxy__factory.ts +152 -0
  167. package/types/factories/UpgradedStandardToken__factory.js +375 -0
  168. package/types/factories/UpgradedStandardToken__factory.ts +384 -0
  169. package/types/hardhat.d.ts +573 -0
  170. package/types/index.js +112 -0
  171. package/types/index.ts +112 -0
@@ -0,0 +1,438 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Contract, Signer, utils } from "ethers";
6
+ import { Provider } from "@ethersproject/providers";
7
+ import type { IBlast, IBlastInterface } from "../IBlast";
8
+
9
+ const _abi = [
10
+ {
11
+ inputs: [
12
+ {
13
+ internalType: "address",
14
+ name: "contractAddress",
15
+ type: "address",
16
+ },
17
+ {
18
+ internalType: "address",
19
+ name: "recipientOfGas",
20
+ type: "address",
21
+ },
22
+ ],
23
+ name: "claimAllGas",
24
+ outputs: [
25
+ {
26
+ internalType: "uint256",
27
+ name: "",
28
+ type: "uint256",
29
+ },
30
+ ],
31
+ stateMutability: "nonpayable",
32
+ type: "function",
33
+ },
34
+ {
35
+ inputs: [
36
+ {
37
+ internalType: "address",
38
+ name: "contractAddress",
39
+ type: "address",
40
+ },
41
+ {
42
+ internalType: "address",
43
+ name: "recipientOfYield",
44
+ type: "address",
45
+ },
46
+ ],
47
+ name: "claimAllYield",
48
+ outputs: [
49
+ {
50
+ internalType: "uint256",
51
+ name: "",
52
+ type: "uint256",
53
+ },
54
+ ],
55
+ stateMutability: "nonpayable",
56
+ type: "function",
57
+ },
58
+ {
59
+ inputs: [
60
+ {
61
+ internalType: "address",
62
+ name: "contractAddress",
63
+ type: "address",
64
+ },
65
+ {
66
+ internalType: "address",
67
+ name: "recipientOfGas",
68
+ type: "address",
69
+ },
70
+ {
71
+ internalType: "uint256",
72
+ name: "gasToClaim",
73
+ type: "uint256",
74
+ },
75
+ {
76
+ internalType: "uint256",
77
+ name: "gasSecondsToConsume",
78
+ type: "uint256",
79
+ },
80
+ ],
81
+ name: "claimGas",
82
+ outputs: [
83
+ {
84
+ internalType: "uint256",
85
+ name: "",
86
+ type: "uint256",
87
+ },
88
+ ],
89
+ stateMutability: "nonpayable",
90
+ type: "function",
91
+ },
92
+ {
93
+ inputs: [
94
+ {
95
+ internalType: "address",
96
+ name: "contractAddress",
97
+ type: "address",
98
+ },
99
+ {
100
+ internalType: "address",
101
+ name: "recipientOfGas",
102
+ type: "address",
103
+ },
104
+ {
105
+ internalType: "uint256",
106
+ name: "minClaimRateBips",
107
+ type: "uint256",
108
+ },
109
+ ],
110
+ name: "claimGasAtMinClaimRate",
111
+ outputs: [
112
+ {
113
+ internalType: "uint256",
114
+ name: "",
115
+ type: "uint256",
116
+ },
117
+ ],
118
+ stateMutability: "nonpayable",
119
+ type: "function",
120
+ },
121
+ {
122
+ inputs: [
123
+ {
124
+ internalType: "address",
125
+ name: "contractAddress",
126
+ type: "address",
127
+ },
128
+ {
129
+ internalType: "address",
130
+ name: "recipientOfGas",
131
+ type: "address",
132
+ },
133
+ ],
134
+ name: "claimMaxGas",
135
+ outputs: [
136
+ {
137
+ internalType: "uint256",
138
+ name: "",
139
+ type: "uint256",
140
+ },
141
+ ],
142
+ stateMutability: "nonpayable",
143
+ type: "function",
144
+ },
145
+ {
146
+ inputs: [
147
+ {
148
+ internalType: "address",
149
+ name: "contractAddress",
150
+ type: "address",
151
+ },
152
+ {
153
+ internalType: "address",
154
+ name: "recipientOfYield",
155
+ type: "address",
156
+ },
157
+ {
158
+ internalType: "uint256",
159
+ name: "amount",
160
+ type: "uint256",
161
+ },
162
+ ],
163
+ name: "claimYield",
164
+ outputs: [
165
+ {
166
+ internalType: "uint256",
167
+ name: "",
168
+ type: "uint256",
169
+ },
170
+ ],
171
+ stateMutability: "nonpayable",
172
+ type: "function",
173
+ },
174
+ {
175
+ inputs: [
176
+ {
177
+ internalType: "enum YieldMode",
178
+ name: "_yield",
179
+ type: "uint8",
180
+ },
181
+ {
182
+ internalType: "enum GasMode",
183
+ name: "gasMode",
184
+ type: "uint8",
185
+ },
186
+ {
187
+ internalType: "address",
188
+ name: "governor",
189
+ type: "address",
190
+ },
191
+ ],
192
+ name: "configure",
193
+ outputs: [],
194
+ stateMutability: "nonpayable",
195
+ type: "function",
196
+ },
197
+ {
198
+ inputs: [],
199
+ name: "configureAutomaticYield",
200
+ outputs: [],
201
+ stateMutability: "nonpayable",
202
+ type: "function",
203
+ },
204
+ {
205
+ inputs: [
206
+ {
207
+ internalType: "address",
208
+ name: "contractAddress",
209
+ type: "address",
210
+ },
211
+ ],
212
+ name: "configureAutomaticYieldOnBehalf",
213
+ outputs: [],
214
+ stateMutability: "nonpayable",
215
+ type: "function",
216
+ },
217
+ {
218
+ inputs: [],
219
+ name: "configureClaimableGas",
220
+ outputs: [],
221
+ stateMutability: "nonpayable",
222
+ type: "function",
223
+ },
224
+ {
225
+ inputs: [
226
+ {
227
+ internalType: "address",
228
+ name: "contractAddress",
229
+ type: "address",
230
+ },
231
+ ],
232
+ name: "configureClaimableGasOnBehalf",
233
+ outputs: [],
234
+ stateMutability: "nonpayable",
235
+ type: "function",
236
+ },
237
+ {
238
+ inputs: [],
239
+ name: "configureClaimableYield",
240
+ outputs: [],
241
+ stateMutability: "nonpayable",
242
+ type: "function",
243
+ },
244
+ {
245
+ inputs: [
246
+ {
247
+ internalType: "address",
248
+ name: "contractAddress",
249
+ type: "address",
250
+ },
251
+ ],
252
+ name: "configureClaimableYieldOnBehalf",
253
+ outputs: [],
254
+ stateMutability: "nonpayable",
255
+ type: "function",
256
+ },
257
+ {
258
+ inputs: [
259
+ {
260
+ internalType: "address",
261
+ name: "contractAddress",
262
+ type: "address",
263
+ },
264
+ {
265
+ internalType: "enum YieldMode",
266
+ name: "_yield",
267
+ type: "uint8",
268
+ },
269
+ {
270
+ internalType: "enum GasMode",
271
+ name: "gasMode",
272
+ type: "uint8",
273
+ },
274
+ {
275
+ internalType: "address",
276
+ name: "governor",
277
+ type: "address",
278
+ },
279
+ ],
280
+ name: "configureContract",
281
+ outputs: [],
282
+ stateMutability: "nonpayable",
283
+ type: "function",
284
+ },
285
+ {
286
+ inputs: [
287
+ {
288
+ internalType: "address",
289
+ name: "_governor",
290
+ type: "address",
291
+ },
292
+ ],
293
+ name: "configureGovernor",
294
+ outputs: [],
295
+ stateMutability: "nonpayable",
296
+ type: "function",
297
+ },
298
+ {
299
+ inputs: [
300
+ {
301
+ internalType: "address",
302
+ name: "_newGovernor",
303
+ type: "address",
304
+ },
305
+ {
306
+ internalType: "address",
307
+ name: "contractAddress",
308
+ type: "address",
309
+ },
310
+ ],
311
+ name: "configureGovernorOnBehalf",
312
+ outputs: [],
313
+ stateMutability: "nonpayable",
314
+ type: "function",
315
+ },
316
+ {
317
+ inputs: [],
318
+ name: "configureVoidGas",
319
+ outputs: [],
320
+ stateMutability: "nonpayable",
321
+ type: "function",
322
+ },
323
+ {
324
+ inputs: [
325
+ {
326
+ internalType: "address",
327
+ name: "contractAddress",
328
+ type: "address",
329
+ },
330
+ ],
331
+ name: "configureVoidGasOnBehalf",
332
+ outputs: [],
333
+ stateMutability: "nonpayable",
334
+ type: "function",
335
+ },
336
+ {
337
+ inputs: [],
338
+ name: "configureVoidYield",
339
+ outputs: [],
340
+ stateMutability: "nonpayable",
341
+ type: "function",
342
+ },
343
+ {
344
+ inputs: [
345
+ {
346
+ internalType: "address",
347
+ name: "contractAddress",
348
+ type: "address",
349
+ },
350
+ ],
351
+ name: "configureVoidYieldOnBehalf",
352
+ outputs: [],
353
+ stateMutability: "nonpayable",
354
+ type: "function",
355
+ },
356
+ {
357
+ inputs: [
358
+ {
359
+ internalType: "address",
360
+ name: "contractAddress",
361
+ type: "address",
362
+ },
363
+ ],
364
+ name: "readClaimableYield",
365
+ outputs: [
366
+ {
367
+ internalType: "uint256",
368
+ name: "",
369
+ type: "uint256",
370
+ },
371
+ ],
372
+ stateMutability: "view",
373
+ type: "function",
374
+ },
375
+ {
376
+ inputs: [
377
+ {
378
+ internalType: "address",
379
+ name: "contractAddress",
380
+ type: "address",
381
+ },
382
+ ],
383
+ name: "readGasParams",
384
+ outputs: [
385
+ {
386
+ internalType: "uint256",
387
+ name: "etherSeconds",
388
+ type: "uint256",
389
+ },
390
+ {
391
+ internalType: "uint256",
392
+ name: "etherBalance",
393
+ type: "uint256",
394
+ },
395
+ {
396
+ internalType: "uint256",
397
+ name: "lastUpdated",
398
+ type: "uint256",
399
+ },
400
+ {
401
+ internalType: "enum GasMode",
402
+ name: "",
403
+ type: "uint8",
404
+ },
405
+ ],
406
+ stateMutability: "view",
407
+ type: "function",
408
+ },
409
+ {
410
+ inputs: [
411
+ {
412
+ internalType: "address",
413
+ name: "contractAddress",
414
+ type: "address",
415
+ },
416
+ ],
417
+ name: "readYieldConfiguration",
418
+ outputs: [
419
+ {
420
+ internalType: "uint8",
421
+ name: "",
422
+ type: "uint8",
423
+ },
424
+ ],
425
+ stateMutability: "view",
426
+ type: "function",
427
+ },
428
+ ];
429
+
430
+ export class IBlast__factory {
431
+ static readonly abi = _abi;
432
+ static createInterface(): IBlastInterface {
433
+ return new utils.Interface(_abi) as IBlastInterface;
434
+ }
435
+ static connect(address: string, signerOrProvider: Signer | Provider): IBlast {
436
+ return new Contract(address, _abi, signerOrProvider) as IBlast;
437
+ }
438
+ }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.ICoin__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ inputs: [],
11
+ name: "decimals",
12
+ outputs: [
13
+ {
14
+ internalType: "uint8",
15
+ name: "",
16
+ type: "uint8",
17
+ },
18
+ ],
19
+ stateMutability: "view",
20
+ type: "function",
21
+ },
22
+ ];
23
+ var ICoin__factory = exports.ICoin__factory = /** @class */ (function () {
24
+ function ICoin__factory() {
25
+ }
26
+ ICoin__factory.createInterface = function () {
27
+ return new ethers_1.utils.Interface(_abi);
28
+ };
29
+ ICoin__factory.connect = function (address, signerOrProvider) {
30
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
31
+ };
32
+ ICoin__factory.abi = _abi;
33
+ return ICoin__factory;
34
+ }());
@@ -0,0 +1,33 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Contract, Signer, utils } from "ethers";
6
+ import { Provider } from "@ethersproject/providers";
7
+ import type { ICoin, ICoinInterface } from "../ICoin";
8
+
9
+ const _abi = [
10
+ {
11
+ inputs: [],
12
+ name: "decimals",
13
+ outputs: [
14
+ {
15
+ internalType: "uint8",
16
+ name: "",
17
+ type: "uint8",
18
+ },
19
+ ],
20
+ stateMutability: "view",
21
+ type: "function",
22
+ },
23
+ ];
24
+
25
+ export class ICoin__factory {
26
+ static readonly abi = _abi;
27
+ static createInterface(): ICoinInterface {
28
+ return new utils.Interface(_abi) as ICoinInterface;
29
+ }
30
+ static connect(address: string, signerOrProvider: Signer | Provider): ICoin {
31
+ return new Contract(address, _abi, signerOrProvider) as ICoin;
32
+ }
33
+ }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.IERC1822Proxiable__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ inputs: [],
11
+ name: "proxiableUUID",
12
+ outputs: [
13
+ {
14
+ internalType: "bytes32",
15
+ name: "",
16
+ type: "bytes32",
17
+ },
18
+ ],
19
+ stateMutability: "view",
20
+ type: "function",
21
+ },
22
+ ];
23
+ var IERC1822Proxiable__factory = exports.IERC1822Proxiable__factory = /** @class */ (function () {
24
+ function IERC1822Proxiable__factory() {
25
+ }
26
+ IERC1822Proxiable__factory.createInterface = function () {
27
+ return new ethers_1.utils.Interface(_abi);
28
+ };
29
+ IERC1822Proxiable__factory.connect = function (address, signerOrProvider) {
30
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
31
+ };
32
+ IERC1822Proxiable__factory.abi = _abi;
33
+ return IERC1822Proxiable__factory;
34
+ }());
@@ -0,0 +1,39 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Contract, Signer, utils } from "ethers";
6
+ import { Provider } from "@ethersproject/providers";
7
+ import type {
8
+ IERC1822Proxiable,
9
+ IERC1822ProxiableInterface,
10
+ } from "../IERC1822Proxiable";
11
+
12
+ const _abi = [
13
+ {
14
+ inputs: [],
15
+ name: "proxiableUUID",
16
+ outputs: [
17
+ {
18
+ internalType: "bytes32",
19
+ name: "",
20
+ type: "bytes32",
21
+ },
22
+ ],
23
+ stateMutability: "view",
24
+ type: "function",
25
+ },
26
+ ];
27
+
28
+ export class IERC1822Proxiable__factory {
29
+ static readonly abi = _abi;
30
+ static createInterface(): IERC1822ProxiableInterface {
31
+ return new utils.Interface(_abi) as IERC1822ProxiableInterface;
32
+ }
33
+ static connect(
34
+ address: string,
35
+ signerOrProvider: Signer | Provider
36
+ ): IERC1822Proxiable {
37
+ return new Contract(address, _abi, signerOrProvider) as IERC1822Proxiable;
38
+ }
39
+ }
@@ -0,0 +1,66 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.IERC1967__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ anonymous: false,
11
+ inputs: [
12
+ {
13
+ indexed: false,
14
+ internalType: "address",
15
+ name: "previousAdmin",
16
+ type: "address",
17
+ },
18
+ {
19
+ indexed: false,
20
+ internalType: "address",
21
+ name: "newAdmin",
22
+ type: "address",
23
+ },
24
+ ],
25
+ name: "AdminChanged",
26
+ type: "event",
27
+ },
28
+ {
29
+ anonymous: false,
30
+ inputs: [
31
+ {
32
+ indexed: true,
33
+ internalType: "address",
34
+ name: "beacon",
35
+ type: "address",
36
+ },
37
+ ],
38
+ name: "BeaconUpgraded",
39
+ type: "event",
40
+ },
41
+ {
42
+ anonymous: false,
43
+ inputs: [
44
+ {
45
+ indexed: true,
46
+ internalType: "address",
47
+ name: "implementation",
48
+ type: "address",
49
+ },
50
+ ],
51
+ name: "Upgraded",
52
+ type: "event",
53
+ },
54
+ ];
55
+ var IERC1967__factory = exports.IERC1967__factory = /** @class */ (function () {
56
+ function IERC1967__factory() {
57
+ }
58
+ IERC1967__factory.createInterface = function () {
59
+ return new ethers_1.utils.Interface(_abi);
60
+ };
61
+ IERC1967__factory.connect = function (address, signerOrProvider) {
62
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
63
+ };
64
+ IERC1967__factory.abi = _abi;
65
+ return IERC1967__factory;
66
+ }());
@@ -0,0 +1,68 @@
1
+ /* Autogenerated file. Do not edit manually. */
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+
5
+ import { Contract, Signer, utils } from "ethers";
6
+ import { Provider } from "@ethersproject/providers";
7
+ import type { IERC1967, IERC1967Interface } from "../IERC1967";
8
+
9
+ const _abi = [
10
+ {
11
+ anonymous: false,
12
+ inputs: [
13
+ {
14
+ indexed: false,
15
+ internalType: "address",
16
+ name: "previousAdmin",
17
+ type: "address",
18
+ },
19
+ {
20
+ indexed: false,
21
+ internalType: "address",
22
+ name: "newAdmin",
23
+ type: "address",
24
+ },
25
+ ],
26
+ name: "AdminChanged",
27
+ type: "event",
28
+ },
29
+ {
30
+ anonymous: false,
31
+ inputs: [
32
+ {
33
+ indexed: true,
34
+ internalType: "address",
35
+ name: "beacon",
36
+ type: "address",
37
+ },
38
+ ],
39
+ name: "BeaconUpgraded",
40
+ type: "event",
41
+ },
42
+ {
43
+ anonymous: false,
44
+ inputs: [
45
+ {
46
+ indexed: true,
47
+ internalType: "address",
48
+ name: "implementation",
49
+ type: "address",
50
+ },
51
+ ],
52
+ name: "Upgraded",
53
+ type: "event",
54
+ },
55
+ ];
56
+
57
+ export class IERC1967__factory {
58
+ static readonly abi = _abi;
59
+ static createInterface(): IERC1967Interface {
60
+ return new utils.Interface(_abi) as IERC1967Interface;
61
+ }
62
+ static connect(
63
+ address: string,
64
+ signerOrProvider: Signer | Provider
65
+ ): IERC1967 {
66
+ return new Contract(address, _abi, signerOrProvider) as IERC1967;
67
+ }
68
+ }