@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,732 @@
1
+ "use strict";
2
+ /* Autogenerated file. Do not edit manually. */
3
+ /* tslint:disable */
4
+ /* eslint-disable */
5
+ var __extends = (this && this.__extends) || (function () {
6
+ var extendStatics = function (d, b) {
7
+ extendStatics = Object.setPrototypeOf ||
8
+ ({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
9
+ function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
10
+ return extendStatics(d, b);
11
+ };
12
+ return function (d, b) {
13
+ if (typeof b !== "function" && b !== null)
14
+ throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
15
+ extendStatics(d, b);
16
+ function __() { this.constructor = d; }
17
+ d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
18
+ };
19
+ })();
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ exports.TetherToken__factory = void 0;
22
+ var ethers_1 = require("ethers");
23
+ var _abi = [
24
+ {
25
+ constant: true,
26
+ inputs: [],
27
+ name: "name",
28
+ outputs: [
29
+ {
30
+ name: "",
31
+ type: "string",
32
+ },
33
+ ],
34
+ payable: false,
35
+ stateMutability: "view",
36
+ type: "function",
37
+ },
38
+ {
39
+ constant: false,
40
+ inputs: [
41
+ {
42
+ name: "_upgradedAddress",
43
+ type: "address",
44
+ },
45
+ ],
46
+ name: "deprecate",
47
+ outputs: [],
48
+ payable: false,
49
+ stateMutability: "nonpayable",
50
+ type: "function",
51
+ },
52
+ {
53
+ constant: false,
54
+ inputs: [
55
+ {
56
+ name: "_spender",
57
+ type: "address",
58
+ },
59
+ {
60
+ name: "_value",
61
+ type: "uint256",
62
+ },
63
+ ],
64
+ name: "approve",
65
+ outputs: [],
66
+ payable: false,
67
+ stateMutability: "nonpayable",
68
+ type: "function",
69
+ },
70
+ {
71
+ constant: true,
72
+ inputs: [],
73
+ name: "deprecated",
74
+ outputs: [
75
+ {
76
+ name: "",
77
+ type: "bool",
78
+ },
79
+ ],
80
+ payable: false,
81
+ stateMutability: "view",
82
+ type: "function",
83
+ },
84
+ {
85
+ constant: false,
86
+ inputs: [
87
+ {
88
+ name: "_evilUser",
89
+ type: "address",
90
+ },
91
+ ],
92
+ name: "addBlackList",
93
+ outputs: [],
94
+ payable: false,
95
+ stateMutability: "nonpayable",
96
+ type: "function",
97
+ },
98
+ {
99
+ constant: true,
100
+ inputs: [],
101
+ name: "totalSupply",
102
+ outputs: [
103
+ {
104
+ name: "",
105
+ type: "uint256",
106
+ },
107
+ ],
108
+ payable: false,
109
+ stateMutability: "view",
110
+ type: "function",
111
+ },
112
+ {
113
+ constant: false,
114
+ inputs: [
115
+ {
116
+ name: "_from",
117
+ type: "address",
118
+ },
119
+ {
120
+ name: "_to",
121
+ type: "address",
122
+ },
123
+ {
124
+ name: "_value",
125
+ type: "uint256",
126
+ },
127
+ ],
128
+ name: "transferFrom",
129
+ outputs: [],
130
+ payable: false,
131
+ stateMutability: "nonpayable",
132
+ type: "function",
133
+ },
134
+ {
135
+ constant: true,
136
+ inputs: [],
137
+ name: "upgradedAddress",
138
+ outputs: [
139
+ {
140
+ name: "",
141
+ type: "address",
142
+ },
143
+ ],
144
+ payable: false,
145
+ stateMutability: "view",
146
+ type: "function",
147
+ },
148
+ {
149
+ constant: true,
150
+ inputs: [
151
+ {
152
+ name: "",
153
+ type: "address",
154
+ },
155
+ ],
156
+ name: "balances",
157
+ outputs: [
158
+ {
159
+ name: "",
160
+ type: "uint256",
161
+ },
162
+ ],
163
+ payable: false,
164
+ stateMutability: "view",
165
+ type: "function",
166
+ },
167
+ {
168
+ constant: true,
169
+ inputs: [],
170
+ name: "decimals",
171
+ outputs: [
172
+ {
173
+ name: "",
174
+ type: "uint256",
175
+ },
176
+ ],
177
+ payable: false,
178
+ stateMutability: "view",
179
+ type: "function",
180
+ },
181
+ {
182
+ constant: true,
183
+ inputs: [],
184
+ name: "maximumFee",
185
+ outputs: [
186
+ {
187
+ name: "",
188
+ type: "uint256",
189
+ },
190
+ ],
191
+ payable: false,
192
+ stateMutability: "view",
193
+ type: "function",
194
+ },
195
+ {
196
+ constant: true,
197
+ inputs: [],
198
+ name: "_totalSupply",
199
+ outputs: [
200
+ {
201
+ name: "",
202
+ type: "uint256",
203
+ },
204
+ ],
205
+ payable: false,
206
+ stateMutability: "view",
207
+ type: "function",
208
+ },
209
+ {
210
+ constant: false,
211
+ inputs: [],
212
+ name: "unpause",
213
+ outputs: [],
214
+ payable: false,
215
+ stateMutability: "nonpayable",
216
+ type: "function",
217
+ },
218
+ {
219
+ constant: true,
220
+ inputs: [
221
+ {
222
+ name: "_maker",
223
+ type: "address",
224
+ },
225
+ ],
226
+ name: "getBlackListStatus",
227
+ outputs: [
228
+ {
229
+ name: "",
230
+ type: "bool",
231
+ },
232
+ ],
233
+ payable: false,
234
+ stateMutability: "view",
235
+ type: "function",
236
+ },
237
+ {
238
+ constant: true,
239
+ inputs: [
240
+ {
241
+ name: "",
242
+ type: "address",
243
+ },
244
+ {
245
+ name: "",
246
+ type: "address",
247
+ },
248
+ ],
249
+ name: "allowed",
250
+ outputs: [
251
+ {
252
+ name: "",
253
+ type: "uint256",
254
+ },
255
+ ],
256
+ payable: false,
257
+ stateMutability: "view",
258
+ type: "function",
259
+ },
260
+ {
261
+ constant: true,
262
+ inputs: [],
263
+ name: "paused",
264
+ outputs: [
265
+ {
266
+ name: "",
267
+ type: "bool",
268
+ },
269
+ ],
270
+ payable: false,
271
+ stateMutability: "view",
272
+ type: "function",
273
+ },
274
+ {
275
+ constant: true,
276
+ inputs: [
277
+ {
278
+ name: "who",
279
+ type: "address",
280
+ },
281
+ ],
282
+ name: "balanceOf",
283
+ outputs: [
284
+ {
285
+ name: "",
286
+ type: "uint256",
287
+ },
288
+ ],
289
+ payable: false,
290
+ stateMutability: "view",
291
+ type: "function",
292
+ },
293
+ {
294
+ constant: false,
295
+ inputs: [],
296
+ name: "pause",
297
+ outputs: [],
298
+ payable: false,
299
+ stateMutability: "nonpayable",
300
+ type: "function",
301
+ },
302
+ {
303
+ constant: true,
304
+ inputs: [],
305
+ name: "getOwner",
306
+ outputs: [
307
+ {
308
+ name: "",
309
+ type: "address",
310
+ },
311
+ ],
312
+ payable: false,
313
+ stateMutability: "view",
314
+ type: "function",
315
+ },
316
+ {
317
+ constant: true,
318
+ inputs: [],
319
+ name: "owner",
320
+ outputs: [
321
+ {
322
+ name: "",
323
+ type: "address",
324
+ },
325
+ ],
326
+ payable: false,
327
+ stateMutability: "view",
328
+ type: "function",
329
+ },
330
+ {
331
+ constant: true,
332
+ inputs: [],
333
+ name: "symbol",
334
+ outputs: [
335
+ {
336
+ name: "",
337
+ type: "string",
338
+ },
339
+ ],
340
+ payable: false,
341
+ stateMutability: "view",
342
+ type: "function",
343
+ },
344
+ {
345
+ constant: false,
346
+ inputs: [
347
+ {
348
+ name: "_to",
349
+ type: "address",
350
+ },
351
+ {
352
+ name: "_value",
353
+ type: "uint256",
354
+ },
355
+ ],
356
+ name: "transfer",
357
+ outputs: [],
358
+ payable: false,
359
+ stateMutability: "nonpayable",
360
+ type: "function",
361
+ },
362
+ {
363
+ constant: false,
364
+ inputs: [
365
+ {
366
+ name: "newBasisPoints",
367
+ type: "uint256",
368
+ },
369
+ {
370
+ name: "newMaxFee",
371
+ type: "uint256",
372
+ },
373
+ ],
374
+ name: "setParams",
375
+ outputs: [],
376
+ payable: false,
377
+ stateMutability: "nonpayable",
378
+ type: "function",
379
+ },
380
+ {
381
+ constant: false,
382
+ inputs: [
383
+ {
384
+ name: "amount",
385
+ type: "uint256",
386
+ },
387
+ ],
388
+ name: "issue",
389
+ outputs: [],
390
+ payable: false,
391
+ stateMutability: "nonpayable",
392
+ type: "function",
393
+ },
394
+ {
395
+ constant: false,
396
+ inputs: [
397
+ {
398
+ name: "amount",
399
+ type: "uint256",
400
+ },
401
+ ],
402
+ name: "redeem",
403
+ outputs: [],
404
+ payable: false,
405
+ stateMutability: "nonpayable",
406
+ type: "function",
407
+ },
408
+ {
409
+ constant: true,
410
+ inputs: [
411
+ {
412
+ name: "_owner",
413
+ type: "address",
414
+ },
415
+ {
416
+ name: "_spender",
417
+ type: "address",
418
+ },
419
+ ],
420
+ name: "allowance",
421
+ outputs: [
422
+ {
423
+ name: "remaining",
424
+ type: "uint256",
425
+ },
426
+ ],
427
+ payable: false,
428
+ stateMutability: "view",
429
+ type: "function",
430
+ },
431
+ {
432
+ constant: true,
433
+ inputs: [],
434
+ name: "basisPointsRate",
435
+ outputs: [
436
+ {
437
+ name: "",
438
+ type: "uint256",
439
+ },
440
+ ],
441
+ payable: false,
442
+ stateMutability: "view",
443
+ type: "function",
444
+ },
445
+ {
446
+ constant: true,
447
+ inputs: [
448
+ {
449
+ name: "",
450
+ type: "address",
451
+ },
452
+ ],
453
+ name: "isBlackListed",
454
+ outputs: [
455
+ {
456
+ name: "",
457
+ type: "bool",
458
+ },
459
+ ],
460
+ payable: false,
461
+ stateMutability: "view",
462
+ type: "function",
463
+ },
464
+ {
465
+ constant: false,
466
+ inputs: [
467
+ {
468
+ name: "_clearedUser",
469
+ type: "address",
470
+ },
471
+ ],
472
+ name: "removeBlackList",
473
+ outputs: [],
474
+ payable: false,
475
+ stateMutability: "nonpayable",
476
+ type: "function",
477
+ },
478
+ {
479
+ constant: true,
480
+ inputs: [],
481
+ name: "MAX_UINT",
482
+ outputs: [
483
+ {
484
+ name: "",
485
+ type: "uint256",
486
+ },
487
+ ],
488
+ payable: false,
489
+ stateMutability: "view",
490
+ type: "function",
491
+ },
492
+ {
493
+ constant: false,
494
+ inputs: [
495
+ {
496
+ name: "newOwner",
497
+ type: "address",
498
+ },
499
+ ],
500
+ name: "transferOwnership",
501
+ outputs: [],
502
+ payable: false,
503
+ stateMutability: "nonpayable",
504
+ type: "function",
505
+ },
506
+ {
507
+ constant: false,
508
+ inputs: [
509
+ {
510
+ name: "_blackListedUser",
511
+ type: "address",
512
+ },
513
+ ],
514
+ name: "destroyBlackFunds",
515
+ outputs: [],
516
+ payable: false,
517
+ stateMutability: "nonpayable",
518
+ type: "function",
519
+ },
520
+ {
521
+ inputs: [
522
+ {
523
+ name: "_initialSupply",
524
+ type: "uint256",
525
+ },
526
+ {
527
+ name: "_name",
528
+ type: "string",
529
+ },
530
+ {
531
+ name: "_symbol",
532
+ type: "string",
533
+ },
534
+ {
535
+ name: "_decimals",
536
+ type: "uint256",
537
+ },
538
+ ],
539
+ payable: false,
540
+ stateMutability: "nonpayable",
541
+ type: "constructor",
542
+ },
543
+ {
544
+ anonymous: false,
545
+ inputs: [
546
+ {
547
+ indexed: false,
548
+ name: "amount",
549
+ type: "uint256",
550
+ },
551
+ ],
552
+ name: "Issue",
553
+ type: "event",
554
+ },
555
+ {
556
+ anonymous: false,
557
+ inputs: [
558
+ {
559
+ indexed: false,
560
+ name: "amount",
561
+ type: "uint256",
562
+ },
563
+ ],
564
+ name: "Redeem",
565
+ type: "event",
566
+ },
567
+ {
568
+ anonymous: false,
569
+ inputs: [
570
+ {
571
+ indexed: false,
572
+ name: "newAddress",
573
+ type: "address",
574
+ },
575
+ ],
576
+ name: "Deprecate",
577
+ type: "event",
578
+ },
579
+ {
580
+ anonymous: false,
581
+ inputs: [
582
+ {
583
+ indexed: false,
584
+ name: "feeBasisPoints",
585
+ type: "uint256",
586
+ },
587
+ {
588
+ indexed: false,
589
+ name: "maxFee",
590
+ type: "uint256",
591
+ },
592
+ ],
593
+ name: "Params",
594
+ type: "event",
595
+ },
596
+ {
597
+ anonymous: false,
598
+ inputs: [
599
+ {
600
+ indexed: false,
601
+ name: "_blackListedUser",
602
+ type: "address",
603
+ },
604
+ {
605
+ indexed: false,
606
+ name: "_balance",
607
+ type: "uint256",
608
+ },
609
+ ],
610
+ name: "DestroyedBlackFunds",
611
+ type: "event",
612
+ },
613
+ {
614
+ anonymous: false,
615
+ inputs: [
616
+ {
617
+ indexed: false,
618
+ name: "_user",
619
+ type: "address",
620
+ },
621
+ ],
622
+ name: "AddedBlackList",
623
+ type: "event",
624
+ },
625
+ {
626
+ anonymous: false,
627
+ inputs: [
628
+ {
629
+ indexed: false,
630
+ name: "_user",
631
+ type: "address",
632
+ },
633
+ ],
634
+ name: "RemovedBlackList",
635
+ type: "event",
636
+ },
637
+ {
638
+ anonymous: false,
639
+ inputs: [
640
+ {
641
+ indexed: true,
642
+ name: "owner",
643
+ type: "address",
644
+ },
645
+ {
646
+ indexed: true,
647
+ name: "spender",
648
+ type: "address",
649
+ },
650
+ {
651
+ indexed: false,
652
+ name: "value",
653
+ type: "uint256",
654
+ },
655
+ ],
656
+ name: "Approval",
657
+ type: "event",
658
+ },
659
+ {
660
+ anonymous: false,
661
+ inputs: [
662
+ {
663
+ indexed: true,
664
+ name: "from",
665
+ type: "address",
666
+ },
667
+ {
668
+ indexed: true,
669
+ name: "to",
670
+ type: "address",
671
+ },
672
+ {
673
+ indexed: false,
674
+ name: "value",
675
+ type: "uint256",
676
+ },
677
+ ],
678
+ name: "Transfer",
679
+ type: "event",
680
+ },
681
+ {
682
+ anonymous: false,
683
+ inputs: [],
684
+ name: "Pause",
685
+ type: "event",
686
+ },
687
+ {
688
+ anonymous: false,
689
+ inputs: [],
690
+ name: "Unpause",
691
+ type: "event",
692
+ },
693
+ ];
694
+ var _bytecode = "0x60806040526000805460a060020a60ff021916815560038190556004553480156200002957600080fd5b5060405162001c8f38038062001c8f833981016040908152815160208084015192840151606085015160008054600160a060020a03191633600160a060020a0316179055600184905593850180519395909491019290916200009191600791860190620000dc565b508151620000a7906008906020850190620000dc565b50600955505060008054600160a060020a0316815260026020526040902055600a805460a060020a60ff021916905562000181565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011f57805160ff19168380011785556200014f565b828001600101855582156200014f579182015b828111156200014f57825182559160200191906001019062000132565b506200015d92915062000161565b5090565b6200017e91905b808211156200015d576000815560010162000168565b90565b611afe80620001916000396000f3006080604052600436106101955763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde03811461019a5780630753c30c14610224578063095ea7b3146102475780630e136b191461026b5780630ecb93c01461029457806318160ddd146102b557806323b872dd146102dc57806326976e3f1461030657806327e235e314610337578063313ce56714610358578063353907141461036d5780633eaaf86b146103825780633f4ba83a1461039757806359bf1abe146103ac5780635c658165146103cd5780635c975abb146103f457806370a08231146104095780638456cb591461042a578063893d20e81461043f5780638da5cb5b1461045457806395d89b4114610469578063a9059cbb1461047e578063c0324c77146104a2578063cc872b66146104bd578063db006a75146104d5578063dd62ed3e146104ed578063dd644f7214610514578063e47d606014610529578063e4997dc51461054a578063e5b5019a1461056b578063f2fde38b14610580578063f3bdc228146105a1575b600080fd5b3480156101a657600080fd5b506101af6105c2565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101e95781810151838201526020016101d1565b50505050905090810190601f1680156102165780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561023057600080fd5b50610245600160a060020a0360043516610650565b005b34801561025357600080fd5b50610245600160a060020a03600435166024356106ec565b34801561027757600080fd5b506102806107ce565b604080519115158252519081900360200190f35b3480156102a057600080fd5b50610245600160a060020a03600435166107de565b3480156102c157600080fd5b506102ca610854565b60408051918252519081900360200190f35b3480156102e857600080fd5b50610245600160a060020a0360043581169060243516604435610910565b34801561031257600080fd5b5061031b610a0a565b60408051600160a060020a039092168252519081900360200190f35b34801561034357600080fd5b506102ca600160a060020a0360043516610a19565b34801561036457600080fd5b506102ca610a2b565b34801561037957600080fd5b506102ca610a31565b34801561038e57600080fd5b506102ca610a37565b3480156103a357600080fd5b50610245610a3d565b3480156103b857600080fd5b50610280600160a060020a0360043516610ab7565b3480156103d957600080fd5b506102ca600160a060020a0360043581169060243516610ad9565b34801561040057600080fd5b50610280610af6565b34801561041557600080fd5b506102ca600160a060020a0360043516610b06565b34801561043657600080fd5b50610245610bc6565b34801561044b57600080fd5b5061031b610c45565b34801561046057600080fd5b5061031b610c54565b34801561047557600080fd5b506101af610c63565b34801561048a57600080fd5b50610245600160a060020a0360043516602435610cbe565b3480156104ae57600080fd5b50610245600435602435610dae565b3480156104c957600080fd5b50610245600435610e47565b3480156104e157600080fd5b50610245600435610ef6565b3480156104f957600080fd5b506102ca600160a060020a0360043581169060243516610fa5565b34801561052057600080fd5b506102ca611070565b34801561053557600080fd5b50610280600160a060020a0360043516611076565b34801561055657600080fd5b50610245600160a060020a036004351661108b565b34801561057757600080fd5b506102ca6110fe565b34801561058c57600080fd5b50610245600160a060020a0360043516611104565b3480156105ad57600080fd5b50610245600160a060020a036004351661115a565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106485780601f1061061d57610100808354040283529160200191610648565b820191906000526020600020905b81548152906001019060200180831161062b57829003601f168201915b505050505081565b60005433600160a060020a0390811691161461066b57600080fd5b600a805460a060020a74ff0000000000000000000000000000000000000000199091161773ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03831690811790915560408051918252517fcc358699805e9a8b7f77b522628c7cb9abd07d9efb86b6fb616af1609036a99e916020908290030190a150565b60406106fb604436101561120a565b6004810136101561070b57600080fd5b600a5460a060020a900460ff16156107b057600a54604080517faee92d33000000000000000000000000000000000000000000000000000000008152600160a060020a0333811660048301528681166024830152604482018690529151919092169163aee92d3391606480830192600092919082900301818387803b15801561079357600080fd5b505af11580156107a7573d6000803e3d6000fd5b505050506107ba565b6107ba8383611268565b6107c96004820136101561120a565b505050565b600a5460a060020a900460ff1681565b60005433600160a060020a039081169116146107f957600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b600a5460009060a060020a900460ff161561090857600a60009054906101000a9004600160a060020a0316600160a060020a03166318160ddd6040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1580156108d557600080fd5b505af11580156108e9573d6000803e3d6000fd5b505050506040513d60208110156108ff57600080fd5b5051905061090d565b506001545b90565b60005460a060020a900460ff161561092757600080fd5b600160a060020a03831660009081526006602052604090205460ff161561094d57600080fd5b600a5460a060020a900460ff16156109fa57600a54604080517f8b477adb000000000000000000000000000000000000000000000000000000008152600160a060020a033381166004830152868116602483015285811660448301526064820185905291519190921691638b477adb91608480830192600092919082900301818387803b1580156109dd57600080fd5b505af11580156109f1573d6000803e3d6000fd5b505050506107c9565b610a05838383611330565b6107c9565b600a54600160a060020a031681565b60026020526000908152604090205481565b60095481565b60045481565b60015481565b60005433600160a060020a03908116911614610a5857600080fd5b60005460a060020a900460ff161515610a7057600080fd5b6000805474ff0000000000000000000000000000000000000000191681556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b339190a1565b600160a060020a03811660009081526006602052604090205460ff165b919050565b600560209081526000928352604080842090915290825290205481565b60005460a060020a900460ff1681565b600a5460009060a060020a900460ff1615610bb657600a54604080517f70a08231000000000000000000000000000000000000000000000000000000008152600160a060020a038581166004830152915191909216916370a082319160248083019260209291908290030181600087803b158015610b8357600080fd5b505af1158015610b97573d6000803e3d6000fd5b505050506040513d6020811015610bad57600080fd5b50519050610ad4565b610bbf8261168f565b9050610ad4565b60005433600160a060020a03908116911614610be157600080fd5b60005460a060020a900460ff1615610bf857600080fd5b6000805474ff0000000000000000000000000000000000000000191660a060020a1781556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff6259190a1565b600054600160a060020a031690565b600054600160a060020a031681565b6008805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106485780601f1061061d57610100808354040283529160200191610648565b60005460a060020a900460ff1615610cd557600080fd5b600160a060020a03331660009081526006602052604090205460ff1615610cfb57600080fd5b600a5460a060020a900460ff1615610da057600a54604080517f6e18980a000000000000000000000000000000000000000000000000000000008152600160a060020a03338116600483015285811660248301526044820185905291519190921691636e18980a91606480830192600092919082900301818387803b158015610d8357600080fd5b505af1158015610d97573d6000803e3d6000fd5b50505050610daa565b610daa82826116aa565b5050565b60005433600160a060020a03908116911614610dc957600080fd5b60148210610dd657600080fd5b60328110610de357600080fd5b6003829055600954610dff908290600a0a63ffffffff61187316565b600481905560035460408051918252602082019290925281517fb044a1e409eac5c48e5af22d4af52670dd1a99059537a78b31b48c6500a6354e929181900390910190a15050565b60005433600160a060020a03908116911614610e6257600080fd5b60015481810111610e7257600080fd5b60008054600160a060020a031681526002602052604090205481810111610e9857600080fd5b60008054600160a060020a03168152600260209081526040918290208054840190556001805484019055815183815291517fcb8241adb0c3fdb35b70c24ce35c5eb0c17af7431c99f827d44a445ca624176a9281900390910190a150565b60005433600160a060020a03908116911614610f1157600080fd5b600154811115610f2057600080fd5b60008054600160a060020a0316815260026020526040902054811115610f4557600080fd5b60018054829003905560008054600160a060020a031681526002602090815260409182902080548490039055815183815291517f702d5967f45f6513a38ffc42d6ba9bf230bd40e8f53b16363c7eb4fd2deb9a449281900390910190a150565b600a5460009060a060020a900460ff161561105d57600a54604080517fdd62ed3e000000000000000000000000000000000000000000000000000000008152600160a060020a03868116600483015285811660248301529151919092169163dd62ed3e9160448083019260209291908290030181600087803b15801561102a57600080fd5b505af115801561103e573d6000803e3d6000fd5b505050506040513d602081101561105457600080fd5b5051905061106a565b61106783836118a9565b90505b92915050565b60035481565b60066020526000908152604090205460ff1681565b60005433600160a060020a039081169116146110a657600080fd5b600160a060020a038116600081815260066020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b60001981565b60005433600160a060020a0390811691161461111f57600080fd5b600160a060020a03811615611157576000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0383161790555b50565b6000805433600160a060020a0390811691161461117657600080fd5b600160a060020a03821660009081526006602052604090205460ff16151561119d57600080fd5b6111a682610b06565b600160a060020a0383166000818152600260209081526040808320929092556001805485900390558151928352820183905280519293507f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c692918290030190a15050565b60408051821515602480830191909152825180830390910181526044909101909152602081018051600160e060020a03167f32458eed00000000000000000000000000000000000000000000000000000000179052611157906118d4565b6040611277604436101561120a565b6004810136101561128757600080fd5b81158015906112ba5750600160a060020a0333811660009081526005602090815260408083209387168352929052205415155b156112c457600080fd5b600160a060020a03338116600081815260056020908152604080832094881680845294825291829020869055815186815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a36107c96004820136101561120a565b600080806060611343606436101561120a565b6004810136101561135357600080fd5b600160a060020a03808816600090815260056020908152604080832033909416835292905220546003549094506113a5906127109061139990889063ffffffff61187316565b9063ffffffff6118eb16565b92506004548311156113b75760045492505b6000198410156113f9576113d1848663ffffffff61190216565b600160a060020a03808916600090815260056020908152604080832033909416835292905220555b60408051808201825260058082527f3131313131000000000000000000000000000000000000000000000000000000602080840191909152600160a060020a03808c1660009081529282528483203390911683529052919091205461145e9190611914565b61146e858463ffffffff61190216565b600160a060020a038816600090815260026020526040902054909250611493906119db565b61149c856119db565b600160a060020a0387166000908152600260205260409020546114c5908663ffffffff61190216565b600160a060020a0380891660009081526002602052604080822093909355908816815220546114fa908363ffffffff611a3516565b6002600088600160a060020a0316600160a060020a03168152602001908152602001600020819055506115626040805190810160405280600481526020017f323232320000000000000000000000000000000000000000000000000000000081525084611914565b61156c8787611a44565b6115ab6040805190810160405280600581526020017f333333333300000000000000000000000000000000000000000000000000000081525083611914565b60008311156116385760008054600160a060020a03168152600260205260409020546115dd908463ffffffff611a3516565b60008054600160a060020a0390811682526002602090815260408084209490945591548351878152935190821693918b16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a35b6116776040805190810160405280600581526020017f343434343400000000000000000000000000000000000000000000000000000081525083611914565b6116866004820136101561120a565b50505050505050565b600160a060020a031660009081526002602052604090205490565b60008060406116bc604436101561120a565b600481013610156116cc57600080fd5b6116e76127106113996003548761187390919063ffffffff16565b92506004548311156116f95760045492505b611709848463ffffffff61190216565b600160a060020a033316600090815260026020526040902054909250611735908563ffffffff61190216565b600160a060020a03338116600090815260026020526040808220939093559087168152205461176a908363ffffffff611a3516565b600160a060020a0386166000908152600260205260408120919091558311156118125760008054600160a060020a03168152600260205260409020546117b6908463ffffffff611a3516565b60008054600160a060020a039081168252600260209081526040808420949094559154835187815293519082169333909216927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef928290030190a35b84600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a361186c6004820136101561120a565b5050505050565b60008083151561188657600091506118a2565b5082820282848281151561189657fe5b041461189e57fe5b8091505b5092915050565b600160a060020a03918216600090815260056020908152604080832093909416825291909152205490565b611157816118e3611ab161090d565b63ffffffff16565b60008082848115156118f957fe5b04949350505050565b60008282111561190e57fe5b50900390565b610daa82826040516024018080602001838152602001828103825284818151815260200191508051906020019080838360005b8381101561195f578181015183820152602001611947565b50505050905090810190601f16801561198c5780820380516001836020036101000a031916815260200191505b5060408051601f19818403018152919052602081018051600160e060020a03167fb60e72cc0000000000000000000000000000000000000000000000000000000017905293506118d492505050565b604080516024808201849052825180830390910181526044909101909152602081018051600160e060020a03167ff82c50f100000000000000000000000000000000000000000000000000000000179052611157906118d4565b60008282018381101561189e57fe5b60408051600160a060020a0380851660248301528316604480830191909152825180830390910181526064909101909152602081018051600160e060020a03167fdaf0d4aa00000000000000000000000000000000000000000000000000000000179052610daa906118d4565b60006a636f6e736f6c652e6c6f679050600080835160208501845afa5050505600a165627a7a723058208d60831c557791400de6339328fe091ca97065f5ec29b946068e33458574ab9f0029";
695
+ var TetherToken__factory = exports.TetherToken__factory = /** @class */ (function (_super) {
696
+ __extends(TetherToken__factory, _super);
697
+ function TetherToken__factory() {
698
+ var args = [];
699
+ for (var _i = 0; _i < arguments.length; _i++) {
700
+ args[_i] = arguments[_i];
701
+ }
702
+ var _this = this;
703
+ if (args.length === 1) {
704
+ _this = _super.call(this, _abi, _bytecode, args[0]) || this;
705
+ }
706
+ else {
707
+ _this = _super.apply(this, args) || this;
708
+ }
709
+ return _this;
710
+ }
711
+ TetherToken__factory.prototype.deploy = function (_initialSupply, _name, _symbol, _decimals, overrides) {
712
+ return _super.prototype.deploy.call(this, _initialSupply, _name, _symbol, _decimals, overrides || {});
713
+ };
714
+ TetherToken__factory.prototype.getDeployTransaction = function (_initialSupply, _name, _symbol, _decimals, overrides) {
715
+ return _super.prototype.getDeployTransaction.call(this, _initialSupply, _name, _symbol, _decimals, overrides || {});
716
+ };
717
+ TetherToken__factory.prototype.attach = function (address) {
718
+ return _super.prototype.attach.call(this, address);
719
+ };
720
+ TetherToken__factory.prototype.connect = function (signer) {
721
+ return _super.prototype.connect.call(this, signer);
722
+ };
723
+ TetherToken__factory.createInterface = function () {
724
+ return new ethers_1.utils.Interface(_abi);
725
+ };
726
+ TetherToken__factory.connect = function (address, signerOrProvider) {
727
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
728
+ };
729
+ TetherToken__factory.bytecode = _bytecode;
730
+ TetherToken__factory.abi = _abi;
731
+ return TetherToken__factory;
732
+ }(ethers_1.ContractFactory));