@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.
- package/.gitattributes +1 -0
- package/.gitmodules +3 -0
- package/README.md +9 -0
- package/package.json +96 -0
- package/tsconfig.json +11 -0
- package/types/BasicToken.d.ts +300 -0
- package/types/BlackList.d.ts +512 -0
- package/types/BlastOracleLand.d.ts +933 -0
- package/types/ChainlinkPriceFeed.d.ts +427 -0
- package/types/Console.d.ts +101 -0
- package/types/CustomPriceFeed.d.ts +214 -0
- package/types/ERC1967Proxy.d.ts +126 -0
- package/types/ERC1967Upgrade.d.ts +126 -0
- package/types/ERC20.d.ts +343 -0
- package/types/ERC20Basic.d.ts +199 -0
- package/types/ETHOracleLand.d.ts +901 -0
- package/types/FixedPriceFeed.d.ts +212 -0
- package/types/IAggregatorV3Interface.d.ts +234 -0
- package/types/IBeacon.d.ts +101 -0
- package/types/IBlast.d.ts +919 -0
- package/types/ICoin.d.ts +95 -0
- package/types/IERC1822Proxiable.d.ts +101 -0
- package/types/IERC1967.d.ts +126 -0
- package/types/IERC20.d.ts +324 -0
- package/types/IERC20Metadata.d.ts +363 -0
- package/types/IERC20Rebasing.d.ts +184 -0
- package/types/ILand.d.ts +386 -0
- package/types/ILandCore.d.ts +255 -0
- package/types/IPriceFeed.d.ts +108 -0
- package/types/IPyth.d.ts +194 -0
- package/types/IQuoter.d.ts +269 -0
- package/types/ITransparentUpgradeableProxy.d.ts +256 -0
- package/types/IUniswapV3Pool.d.ts +203 -0
- package/types/IUniswapV3PoolActions.d.ts +396 -0
- package/types/IUniswapV3PoolDerivedState.d.ts +185 -0
- package/types/IUniswapV3PoolEvents.d.ts +482 -0
- package/types/IUniswapV3PoolImmutables.d.ts +174 -0
- package/types/IUniswapV3PoolOwnerActions.d.ts +168 -0
- package/types/IUniswapV3PoolState.d.ts +438 -0
- package/types/IWETH.d.ts +374 -0
- package/types/Initializable.d.ts +92 -0
- package/types/Land.d.ts +586 -0
- package/types/LandCore.d.ts +255 -0
- package/types/LandMath.d.ts +101 -0
- package/types/LandOwnable.d.ts +134 -0
- package/types/LandOwnableUpgradeable.d.ts +148 -0
- package/types/MockDAI.d.ts +441 -0
- package/types/MockUSDC.d.ts +441 -0
- package/types/MockUSDT.d.ts +441 -0
- package/types/OracleLand.d.ts +724 -0
- package/types/Ownable.d.ts +130 -0
- package/types/Pausable.d.ts +203 -0
- package/types/Proxy.d.ts +78 -0
- package/types/ProxyAdmin.d.ts +357 -0
- package/types/PythPriceFeed.d.ts +423 -0
- package/types/StandardToken.d.ts +493 -0
- package/types/TetherToken.d.ts +1018 -0
- package/types/TransparentUpgradeableProxy.d.ts +126 -0
- package/types/UpgradedStandardToken.d.ts +630 -0
- package/types/common.d.ts +35 -0
- package/types/factories/BasicToken__factory.js +183 -0
- package/types/factories/BasicToken__factory.ts +185 -0
- package/types/factories/BlackList__factory.js +318 -0
- package/types/factories/BlackList__factory.ts +320 -0
- package/types/factories/BlastOracleLand__factory.js +656 -0
- package/types/factories/BlastOracleLand__factory.ts +649 -0
- package/types/factories/ChainlinkPriceFeed__factory.js +378 -0
- package/types/factories/ChainlinkPriceFeed__factory.ts +398 -0
- package/types/factories/Console__factory.js +76 -0
- package/types/factories/Console__factory.ts +66 -0
- package/types/factories/CustomPriceFeed__factory.js +207 -0
- package/types/factories/CustomPriceFeed__factory.ts +211 -0
- package/types/factories/ERC1967Proxy__factory.js +132 -0
- package/types/factories/ERC1967Proxy__factory.ts +137 -0
- package/types/factories/ERC1967Upgrade__factory.js +66 -0
- package/types/factories/ERC1967Upgrade__factory.ts +71 -0
- package/types/factories/ERC20Basic__factory.js +108 -0
- package/types/factories/ERC20Basic__factory.ts +110 -0
- package/types/factories/ERC20__factory.js +193 -0
- package/types/factories/ERC20__factory.ts +192 -0
- package/types/factories/ETHOracleLand__factory.js +625 -0
- package/types/factories/ETHOracleLand__factory.ts +615 -0
- package/types/factories/FixedPriceFeed__factory.js +192 -0
- package/types/factories/FixedPriceFeed__factory.ts +203 -0
- package/types/factories/IAggregatorV3Interface__factory.js +132 -0
- package/types/factories/IAggregatorV3Interface__factory.ts +141 -0
- package/types/factories/IBeacon__factory.js +34 -0
- package/types/factories/IBeacon__factory.ts +36 -0
- package/types/factories/IBlast__factory.js +439 -0
- package/types/factories/IBlast__factory.ts +438 -0
- package/types/factories/ICoin__factory.js +34 -0
- package/types/factories/ICoin__factory.ts +33 -0
- package/types/factories/IERC1822Proxiable__factory.js +34 -0
- package/types/factories/IERC1822Proxiable__factory.ts +39 -0
- package/types/factories/IERC1967__factory.js +66 -0
- package/types/factories/IERC1967__factory.ts +68 -0
- package/types/factories/IERC20Metadata__factory.js +243 -0
- package/types/factories/IERC20Metadata__factory.ts +248 -0
- package/types/factories/IERC20Rebasing__factory.js +83 -0
- package/types/factories/IERC20Rebasing__factory.ts +88 -0
- package/types/factories/IERC20__factory.js +204 -0
- package/types/factories/IERC20__factory.ts +203 -0
- package/types/factories/ILandCore__factory.js +143 -0
- package/types/factories/ILandCore__factory.ts +145 -0
- package/types/factories/ILand__factory.js +255 -0
- package/types/factories/ILand__factory.ts +254 -0
- package/types/factories/IPriceFeed__factory.js +40 -0
- package/types/factories/IPriceFeed__factory.ts +42 -0
- package/types/factories/IPyth__factory.js +103 -0
- package/types/factories/IPyth__factory.ts +102 -0
- package/types/factories/IQuoter__factory.js +147 -0
- package/types/factories/IQuoter__factory.ts +149 -0
- package/types/factories/ITransparentUpgradeableProxy__factory.js +136 -0
- package/types/factories/ITransparentUpgradeableProxy__factory.ts +145 -0
- package/types/factories/IUniswapV3PoolActions__factory.js +241 -0
- package/types/factories/IUniswapV3PoolActions__factory.ts +250 -0
- package/types/factories/IUniswapV3PoolDerivedState__factory.js +79 -0
- package/types/factories/IUniswapV3PoolDerivedState__factory.ts +88 -0
- package/types/factories/IUniswapV3PoolEvents__factory.js +348 -0
- package/types/factories/IUniswapV3PoolEvents__factory.ts +357 -0
- package/types/factories/IUniswapV3PoolImmutables__factory.js +99 -0
- package/types/factories/IUniswapV3PoolImmutables__factory.ts +108 -0
- package/types/factories/IUniswapV3PoolOwnerActions__factory.js +73 -0
- package/types/factories/IUniswapV3PoolOwnerActions__factory.ts +82 -0
- package/types/factories/IUniswapV3PoolState__factory.js +267 -0
- package/types/factories/IUniswapV3PoolState__factory.ts +272 -0
- package/types/factories/IUniswapV3Pool__factory.js +114 -0
- package/types/factories/IUniswapV3Pool__factory.ts +119 -0
- package/types/factories/IWETH__factory.js +224 -0
- package/types/factories/IWETH__factory.ts +223 -0
- package/types/factories/Initializable__factory.js +34 -0
- package/types/factories/Initializable__factory.ts +36 -0
- package/types/factories/LandCore__factory.js +201 -0
- package/types/factories/LandCore__factory.ts +199 -0
- package/types/factories/LandMath__factory.js +76 -0
- package/types/factories/LandMath__factory.ts +66 -0
- package/types/factories/LandOwnableUpgradeable__factory.js +128 -0
- package/types/factories/LandOwnableUpgradeable__factory.ts +125 -0
- package/types/factories/LandOwnable__factory.js +126 -0
- package/types/factories/LandOwnable__factory.ts +118 -0
- package/types/factories/Land__factory.js +462 -0
- package/types/factories/Land__factory.ts +449 -0
- package/types/factories/MockDAI__factory.js +338 -0
- package/types/factories/MockDAI__factory.ts +328 -0
- package/types/factories/MockUSDC__factory.js +338 -0
- package/types/factories/MockUSDC__factory.ts +328 -0
- package/types/factories/MockUSDT__factory.js +338 -0
- package/types/factories/MockUSDT__factory.ts +328 -0
- package/types/factories/OracleLand__factory.js +537 -0
- package/types/factories/OracleLand__factory.ts +527 -0
- package/types/factories/Ownable__factory.js +73 -0
- package/types/factories/Ownable__factory.ts +75 -0
- package/types/factories/Pausable__factory.js +135 -0
- package/types/factories/Pausable__factory.ts +125 -0
- package/types/factories/ProxyAdmin__factory.js +212 -0
- package/types/factories/ProxyAdmin__factory.ts +202 -0
- package/types/factories/Proxy__factory.js +29 -0
- package/types/factories/Proxy__factory.ts +28 -0
- package/types/factories/PythPriceFeed__factory.js +378 -0
- package/types/factories/PythPriceFeed__factory.ts +400 -0
- package/types/factories/StandardToken__factory.js +305 -0
- package/types/factories/StandardToken__factory.ts +307 -0
- package/types/factories/TetherToken__factory.js +732 -0
- package/types/factories/TetherToken__factory.ts +749 -0
- package/types/factories/TransparentUpgradeableProxy__factory.js +137 -0
- package/types/factories/TransparentUpgradeableProxy__factory.ts +152 -0
- package/types/factories/UpgradedStandardToken__factory.js +375 -0
- package/types/factories/UpgradedStandardToken__factory.ts +384 -0
- package/types/hardhat.d.ts +573 -0
- package/types/index.js +112 -0
- 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
|
+
}
|