@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,183 @@
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.BasicToken__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ constant: true,
11
+ inputs: [],
12
+ name: "totalSupply",
13
+ outputs: [
14
+ {
15
+ name: "",
16
+ type: "uint256",
17
+ },
18
+ ],
19
+ payable: false,
20
+ stateMutability: "view",
21
+ type: "function",
22
+ },
23
+ {
24
+ constant: true,
25
+ inputs: [
26
+ {
27
+ name: "",
28
+ type: "address",
29
+ },
30
+ ],
31
+ name: "balances",
32
+ outputs: [
33
+ {
34
+ name: "",
35
+ type: "uint256",
36
+ },
37
+ ],
38
+ payable: false,
39
+ stateMutability: "view",
40
+ type: "function",
41
+ },
42
+ {
43
+ constant: true,
44
+ inputs: [],
45
+ name: "maximumFee",
46
+ outputs: [
47
+ {
48
+ name: "",
49
+ type: "uint256",
50
+ },
51
+ ],
52
+ payable: false,
53
+ stateMutability: "view",
54
+ type: "function",
55
+ },
56
+ {
57
+ constant: true,
58
+ inputs: [],
59
+ name: "_totalSupply",
60
+ outputs: [
61
+ {
62
+ name: "",
63
+ type: "uint256",
64
+ },
65
+ ],
66
+ payable: false,
67
+ stateMutability: "view",
68
+ type: "function",
69
+ },
70
+ {
71
+ constant: true,
72
+ inputs: [
73
+ {
74
+ name: "_owner",
75
+ type: "address",
76
+ },
77
+ ],
78
+ name: "balanceOf",
79
+ outputs: [
80
+ {
81
+ name: "balance",
82
+ type: "uint256",
83
+ },
84
+ ],
85
+ payable: false,
86
+ stateMutability: "view",
87
+ type: "function",
88
+ },
89
+ {
90
+ constant: true,
91
+ inputs: [],
92
+ name: "owner",
93
+ outputs: [
94
+ {
95
+ name: "",
96
+ type: "address",
97
+ },
98
+ ],
99
+ payable: false,
100
+ stateMutability: "view",
101
+ type: "function",
102
+ },
103
+ {
104
+ constant: false,
105
+ inputs: [
106
+ {
107
+ name: "_to",
108
+ type: "address",
109
+ },
110
+ {
111
+ name: "_value",
112
+ type: "uint256",
113
+ },
114
+ ],
115
+ name: "transfer",
116
+ outputs: [],
117
+ payable: false,
118
+ stateMutability: "nonpayable",
119
+ type: "function",
120
+ },
121
+ {
122
+ constant: true,
123
+ inputs: [],
124
+ name: "basisPointsRate",
125
+ outputs: [
126
+ {
127
+ name: "",
128
+ type: "uint256",
129
+ },
130
+ ],
131
+ payable: false,
132
+ stateMutability: "view",
133
+ type: "function",
134
+ },
135
+ {
136
+ constant: false,
137
+ inputs: [
138
+ {
139
+ name: "newOwner",
140
+ type: "address",
141
+ },
142
+ ],
143
+ name: "transferOwnership",
144
+ outputs: [],
145
+ payable: false,
146
+ stateMutability: "nonpayable",
147
+ type: "function",
148
+ },
149
+ {
150
+ anonymous: false,
151
+ inputs: [
152
+ {
153
+ indexed: true,
154
+ name: "from",
155
+ type: "address",
156
+ },
157
+ {
158
+ indexed: true,
159
+ name: "to",
160
+ type: "address",
161
+ },
162
+ {
163
+ indexed: false,
164
+ name: "value",
165
+ type: "uint256",
166
+ },
167
+ ],
168
+ name: "Transfer",
169
+ type: "event",
170
+ },
171
+ ];
172
+ var BasicToken__factory = exports.BasicToken__factory = /** @class */ (function () {
173
+ function BasicToken__factory() {
174
+ }
175
+ BasicToken__factory.createInterface = function () {
176
+ return new ethers_1.utils.Interface(_abi);
177
+ };
178
+ BasicToken__factory.connect = function (address, signerOrProvider) {
179
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
180
+ };
181
+ BasicToken__factory.abi = _abi;
182
+ return BasicToken__factory;
183
+ }());
@@ -0,0 +1,185 @@
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 { BasicToken, BasicTokenInterface } from "../BasicToken";
8
+
9
+ const _abi = [
10
+ {
11
+ constant: true,
12
+ inputs: [],
13
+ name: "totalSupply",
14
+ outputs: [
15
+ {
16
+ name: "",
17
+ type: "uint256",
18
+ },
19
+ ],
20
+ payable: false,
21
+ stateMutability: "view",
22
+ type: "function",
23
+ },
24
+ {
25
+ constant: true,
26
+ inputs: [
27
+ {
28
+ name: "",
29
+ type: "address",
30
+ },
31
+ ],
32
+ name: "balances",
33
+ outputs: [
34
+ {
35
+ name: "",
36
+ type: "uint256",
37
+ },
38
+ ],
39
+ payable: false,
40
+ stateMutability: "view",
41
+ type: "function",
42
+ },
43
+ {
44
+ constant: true,
45
+ inputs: [],
46
+ name: "maximumFee",
47
+ outputs: [
48
+ {
49
+ name: "",
50
+ type: "uint256",
51
+ },
52
+ ],
53
+ payable: false,
54
+ stateMutability: "view",
55
+ type: "function",
56
+ },
57
+ {
58
+ constant: true,
59
+ inputs: [],
60
+ name: "_totalSupply",
61
+ outputs: [
62
+ {
63
+ name: "",
64
+ type: "uint256",
65
+ },
66
+ ],
67
+ payable: false,
68
+ stateMutability: "view",
69
+ type: "function",
70
+ },
71
+ {
72
+ constant: true,
73
+ inputs: [
74
+ {
75
+ name: "_owner",
76
+ type: "address",
77
+ },
78
+ ],
79
+ name: "balanceOf",
80
+ outputs: [
81
+ {
82
+ name: "balance",
83
+ type: "uint256",
84
+ },
85
+ ],
86
+ payable: false,
87
+ stateMutability: "view",
88
+ type: "function",
89
+ },
90
+ {
91
+ constant: true,
92
+ inputs: [],
93
+ name: "owner",
94
+ outputs: [
95
+ {
96
+ name: "",
97
+ type: "address",
98
+ },
99
+ ],
100
+ payable: false,
101
+ stateMutability: "view",
102
+ type: "function",
103
+ },
104
+ {
105
+ constant: false,
106
+ inputs: [
107
+ {
108
+ name: "_to",
109
+ type: "address",
110
+ },
111
+ {
112
+ name: "_value",
113
+ type: "uint256",
114
+ },
115
+ ],
116
+ name: "transfer",
117
+ outputs: [],
118
+ payable: false,
119
+ stateMutability: "nonpayable",
120
+ type: "function",
121
+ },
122
+ {
123
+ constant: true,
124
+ inputs: [],
125
+ name: "basisPointsRate",
126
+ outputs: [
127
+ {
128
+ name: "",
129
+ type: "uint256",
130
+ },
131
+ ],
132
+ payable: false,
133
+ stateMutability: "view",
134
+ type: "function",
135
+ },
136
+ {
137
+ constant: false,
138
+ inputs: [
139
+ {
140
+ name: "newOwner",
141
+ type: "address",
142
+ },
143
+ ],
144
+ name: "transferOwnership",
145
+ outputs: [],
146
+ payable: false,
147
+ stateMutability: "nonpayable",
148
+ type: "function",
149
+ },
150
+ {
151
+ anonymous: false,
152
+ inputs: [
153
+ {
154
+ indexed: true,
155
+ name: "from",
156
+ type: "address",
157
+ },
158
+ {
159
+ indexed: true,
160
+ name: "to",
161
+ type: "address",
162
+ },
163
+ {
164
+ indexed: false,
165
+ name: "value",
166
+ type: "uint256",
167
+ },
168
+ ],
169
+ name: "Transfer",
170
+ type: "event",
171
+ },
172
+ ];
173
+
174
+ export class BasicToken__factory {
175
+ static readonly abi = _abi;
176
+ static createInterface(): BasicTokenInterface {
177
+ return new utils.Interface(_abi) as BasicTokenInterface;
178
+ }
179
+ static connect(
180
+ address: string,
181
+ signerOrProvider: Signer | Provider
182
+ ): BasicToken {
183
+ return new Contract(address, _abi, signerOrProvider) as BasicToken;
184
+ }
185
+ }
@@ -0,0 +1,318 @@
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.BlackList__factory = void 0;
7
+ var ethers_1 = require("ethers");
8
+ var _abi = [
9
+ {
10
+ constant: false,
11
+ inputs: [
12
+ {
13
+ name: "_evilUser",
14
+ type: "address",
15
+ },
16
+ ],
17
+ name: "addBlackList",
18
+ outputs: [],
19
+ payable: false,
20
+ stateMutability: "nonpayable",
21
+ type: "function",
22
+ },
23
+ {
24
+ constant: true,
25
+ inputs: [],
26
+ name: "totalSupply",
27
+ outputs: [
28
+ {
29
+ name: "",
30
+ type: "uint256",
31
+ },
32
+ ],
33
+ payable: false,
34
+ stateMutability: "view",
35
+ type: "function",
36
+ },
37
+ {
38
+ constant: true,
39
+ inputs: [
40
+ {
41
+ name: "",
42
+ type: "address",
43
+ },
44
+ ],
45
+ name: "balances",
46
+ outputs: [
47
+ {
48
+ name: "",
49
+ type: "uint256",
50
+ },
51
+ ],
52
+ payable: false,
53
+ stateMutability: "view",
54
+ type: "function",
55
+ },
56
+ {
57
+ constant: true,
58
+ inputs: [],
59
+ name: "maximumFee",
60
+ outputs: [
61
+ {
62
+ name: "",
63
+ type: "uint256",
64
+ },
65
+ ],
66
+ payable: false,
67
+ stateMutability: "view",
68
+ type: "function",
69
+ },
70
+ {
71
+ constant: true,
72
+ inputs: [],
73
+ name: "_totalSupply",
74
+ outputs: [
75
+ {
76
+ name: "",
77
+ type: "uint256",
78
+ },
79
+ ],
80
+ payable: false,
81
+ stateMutability: "view",
82
+ type: "function",
83
+ },
84
+ {
85
+ constant: true,
86
+ inputs: [
87
+ {
88
+ name: "_maker",
89
+ type: "address",
90
+ },
91
+ ],
92
+ name: "getBlackListStatus",
93
+ outputs: [
94
+ {
95
+ name: "",
96
+ type: "bool",
97
+ },
98
+ ],
99
+ payable: false,
100
+ stateMutability: "view",
101
+ type: "function",
102
+ },
103
+ {
104
+ constant: true,
105
+ inputs: [
106
+ {
107
+ name: "_owner",
108
+ type: "address",
109
+ },
110
+ ],
111
+ name: "balanceOf",
112
+ outputs: [
113
+ {
114
+ name: "balance",
115
+ type: "uint256",
116
+ },
117
+ ],
118
+ payable: false,
119
+ stateMutability: "view",
120
+ type: "function",
121
+ },
122
+ {
123
+ constant: true,
124
+ inputs: [],
125
+ name: "getOwner",
126
+ outputs: [
127
+ {
128
+ name: "",
129
+ type: "address",
130
+ },
131
+ ],
132
+ payable: false,
133
+ stateMutability: "view",
134
+ type: "function",
135
+ },
136
+ {
137
+ constant: true,
138
+ inputs: [],
139
+ name: "owner",
140
+ outputs: [
141
+ {
142
+ name: "",
143
+ type: "address",
144
+ },
145
+ ],
146
+ payable: false,
147
+ stateMutability: "view",
148
+ type: "function",
149
+ },
150
+ {
151
+ constant: false,
152
+ inputs: [
153
+ {
154
+ name: "_to",
155
+ type: "address",
156
+ },
157
+ {
158
+ name: "_value",
159
+ type: "uint256",
160
+ },
161
+ ],
162
+ name: "transfer",
163
+ outputs: [],
164
+ payable: false,
165
+ stateMutability: "nonpayable",
166
+ type: "function",
167
+ },
168
+ {
169
+ constant: true,
170
+ inputs: [],
171
+ name: "basisPointsRate",
172
+ outputs: [
173
+ {
174
+ name: "",
175
+ type: "uint256",
176
+ },
177
+ ],
178
+ payable: false,
179
+ stateMutability: "view",
180
+ type: "function",
181
+ },
182
+ {
183
+ constant: true,
184
+ inputs: [
185
+ {
186
+ name: "",
187
+ type: "address",
188
+ },
189
+ ],
190
+ name: "isBlackListed",
191
+ outputs: [
192
+ {
193
+ name: "",
194
+ type: "bool",
195
+ },
196
+ ],
197
+ payable: false,
198
+ stateMutability: "view",
199
+ type: "function",
200
+ },
201
+ {
202
+ constant: false,
203
+ inputs: [
204
+ {
205
+ name: "_clearedUser",
206
+ type: "address",
207
+ },
208
+ ],
209
+ name: "removeBlackList",
210
+ outputs: [],
211
+ payable: false,
212
+ stateMutability: "nonpayable",
213
+ type: "function",
214
+ },
215
+ {
216
+ constant: false,
217
+ inputs: [
218
+ {
219
+ name: "newOwner",
220
+ type: "address",
221
+ },
222
+ ],
223
+ name: "transferOwnership",
224
+ outputs: [],
225
+ payable: false,
226
+ stateMutability: "nonpayable",
227
+ type: "function",
228
+ },
229
+ {
230
+ constant: false,
231
+ inputs: [
232
+ {
233
+ name: "_blackListedUser",
234
+ type: "address",
235
+ },
236
+ ],
237
+ name: "destroyBlackFunds",
238
+ outputs: [],
239
+ payable: false,
240
+ stateMutability: "nonpayable",
241
+ type: "function",
242
+ },
243
+ {
244
+ anonymous: false,
245
+ inputs: [
246
+ {
247
+ indexed: false,
248
+ name: "_blackListedUser",
249
+ type: "address",
250
+ },
251
+ {
252
+ indexed: false,
253
+ name: "_balance",
254
+ type: "uint256",
255
+ },
256
+ ],
257
+ name: "DestroyedBlackFunds",
258
+ type: "event",
259
+ },
260
+ {
261
+ anonymous: false,
262
+ inputs: [
263
+ {
264
+ indexed: false,
265
+ name: "_user",
266
+ type: "address",
267
+ },
268
+ ],
269
+ name: "AddedBlackList",
270
+ type: "event",
271
+ },
272
+ {
273
+ anonymous: false,
274
+ inputs: [
275
+ {
276
+ indexed: false,
277
+ name: "_user",
278
+ type: "address",
279
+ },
280
+ ],
281
+ name: "RemovedBlackList",
282
+ type: "event",
283
+ },
284
+ {
285
+ anonymous: false,
286
+ inputs: [
287
+ {
288
+ indexed: true,
289
+ name: "from",
290
+ type: "address",
291
+ },
292
+ {
293
+ indexed: true,
294
+ name: "to",
295
+ type: "address",
296
+ },
297
+ {
298
+ indexed: false,
299
+ name: "value",
300
+ type: "uint256",
301
+ },
302
+ ],
303
+ name: "Transfer",
304
+ type: "event",
305
+ },
306
+ ];
307
+ var BlackList__factory = exports.BlackList__factory = /** @class */ (function () {
308
+ function BlackList__factory() {
309
+ }
310
+ BlackList__factory.createInterface = function () {
311
+ return new ethers_1.utils.Interface(_abi);
312
+ };
313
+ BlackList__factory.connect = function (address, signerOrProvider) {
314
+ return new ethers_1.Contract(address, _abi, signerOrProvider);
315
+ };
316
+ BlackList__factory.abi = _abi;
317
+ return BlackList__factory;
318
+ }());