@argonprotocol/testing 1.4.3-dev.9d075770 → 1.4.3-dev.afd10c33
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/lib/ethereum-contracts/ArgonToken.json +419 -0
- package/lib/ethereum-contracts/ArgonotToken.json +419 -0
- package/lib/ethereum-contracts/MintingGateway.json +538 -0
- package/lib/ethereum-contracts/ProxyAdmin.json +135 -0
- package/lib/ethereum-contracts/TransparentUpgradeableProxy.json +131 -0
- package/lib/index.cjs +520 -17
- package/lib/index.cjs.map +1 -1
- package/lib/index.d.cts +96 -3
- package/lib/index.d.ts +96 -3
- package/lib/index.js +519 -17
- package/lib/index.js.map +1 -1
- package/package.json +5 -6
|
@@ -0,0 +1,419 @@
|
|
|
1
|
+
{
|
|
2
|
+
"_format": "hh3-artifact-1",
|
|
3
|
+
"contractName": "ArgonToken",
|
|
4
|
+
"sourceName": "contracts/ArgonToken.sol",
|
|
5
|
+
"abi": [
|
|
6
|
+
{
|
|
7
|
+
"inputs": [
|
|
8
|
+
{
|
|
9
|
+
"internalType": "address",
|
|
10
|
+
"name": "gateway",
|
|
11
|
+
"type": "address"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"stateMutability": "nonpayable",
|
|
15
|
+
"type": "constructor"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"inputs": [
|
|
19
|
+
{
|
|
20
|
+
"internalType": "address",
|
|
21
|
+
"name": "spender",
|
|
22
|
+
"type": "address"
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
"internalType": "uint256",
|
|
26
|
+
"name": "allowance",
|
|
27
|
+
"type": "uint256"
|
|
28
|
+
},
|
|
29
|
+
{
|
|
30
|
+
"internalType": "uint256",
|
|
31
|
+
"name": "needed",
|
|
32
|
+
"type": "uint256"
|
|
33
|
+
}
|
|
34
|
+
],
|
|
35
|
+
"name": "ERC20InsufficientAllowance",
|
|
36
|
+
"type": "error"
|
|
37
|
+
},
|
|
38
|
+
{
|
|
39
|
+
"inputs": [
|
|
40
|
+
{
|
|
41
|
+
"internalType": "address",
|
|
42
|
+
"name": "sender",
|
|
43
|
+
"type": "address"
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"internalType": "uint256",
|
|
47
|
+
"name": "balance",
|
|
48
|
+
"type": "uint256"
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"internalType": "uint256",
|
|
52
|
+
"name": "needed",
|
|
53
|
+
"type": "uint256"
|
|
54
|
+
}
|
|
55
|
+
],
|
|
56
|
+
"name": "ERC20InsufficientBalance",
|
|
57
|
+
"type": "error"
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"inputs": [
|
|
61
|
+
{
|
|
62
|
+
"internalType": "address",
|
|
63
|
+
"name": "approver",
|
|
64
|
+
"type": "address"
|
|
65
|
+
}
|
|
66
|
+
],
|
|
67
|
+
"name": "ERC20InvalidApprover",
|
|
68
|
+
"type": "error"
|
|
69
|
+
},
|
|
70
|
+
{
|
|
71
|
+
"inputs": [
|
|
72
|
+
{
|
|
73
|
+
"internalType": "address",
|
|
74
|
+
"name": "receiver",
|
|
75
|
+
"type": "address"
|
|
76
|
+
}
|
|
77
|
+
],
|
|
78
|
+
"name": "ERC20InvalidReceiver",
|
|
79
|
+
"type": "error"
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"inputs": [
|
|
83
|
+
{
|
|
84
|
+
"internalType": "address",
|
|
85
|
+
"name": "sender",
|
|
86
|
+
"type": "address"
|
|
87
|
+
}
|
|
88
|
+
],
|
|
89
|
+
"name": "ERC20InvalidSender",
|
|
90
|
+
"type": "error"
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"inputs": [
|
|
94
|
+
{
|
|
95
|
+
"internalType": "address",
|
|
96
|
+
"name": "spender",
|
|
97
|
+
"type": "address"
|
|
98
|
+
}
|
|
99
|
+
],
|
|
100
|
+
"name": "ERC20InvalidSpender",
|
|
101
|
+
"type": "error"
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
"inputs": [
|
|
105
|
+
{
|
|
106
|
+
"internalType": "address",
|
|
107
|
+
"name": "gateway",
|
|
108
|
+
"type": "address"
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"name": "InvalidGateway",
|
|
112
|
+
"type": "error"
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
"inputs": [
|
|
116
|
+
{
|
|
117
|
+
"internalType": "address",
|
|
118
|
+
"name": "caller",
|
|
119
|
+
"type": "address"
|
|
120
|
+
}
|
|
121
|
+
],
|
|
122
|
+
"name": "OnlyGateway",
|
|
123
|
+
"type": "error"
|
|
124
|
+
},
|
|
125
|
+
{
|
|
126
|
+
"anonymous": false,
|
|
127
|
+
"inputs": [
|
|
128
|
+
{
|
|
129
|
+
"indexed": true,
|
|
130
|
+
"internalType": "address",
|
|
131
|
+
"name": "owner",
|
|
132
|
+
"type": "address"
|
|
133
|
+
},
|
|
134
|
+
{
|
|
135
|
+
"indexed": true,
|
|
136
|
+
"internalType": "address",
|
|
137
|
+
"name": "spender",
|
|
138
|
+
"type": "address"
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"indexed": false,
|
|
142
|
+
"internalType": "uint256",
|
|
143
|
+
"name": "value",
|
|
144
|
+
"type": "uint256"
|
|
145
|
+
}
|
|
146
|
+
],
|
|
147
|
+
"name": "Approval",
|
|
148
|
+
"type": "event"
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
"anonymous": false,
|
|
152
|
+
"inputs": [
|
|
153
|
+
{
|
|
154
|
+
"indexed": true,
|
|
155
|
+
"internalType": "address",
|
|
156
|
+
"name": "from",
|
|
157
|
+
"type": "address"
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
"indexed": true,
|
|
161
|
+
"internalType": "address",
|
|
162
|
+
"name": "to",
|
|
163
|
+
"type": "address"
|
|
164
|
+
},
|
|
165
|
+
{
|
|
166
|
+
"indexed": false,
|
|
167
|
+
"internalType": "uint256",
|
|
168
|
+
"name": "value",
|
|
169
|
+
"type": "uint256"
|
|
170
|
+
}
|
|
171
|
+
],
|
|
172
|
+
"name": "Transfer",
|
|
173
|
+
"type": "event"
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
"inputs": [
|
|
177
|
+
{
|
|
178
|
+
"internalType": "address",
|
|
179
|
+
"name": "owner",
|
|
180
|
+
"type": "address"
|
|
181
|
+
},
|
|
182
|
+
{
|
|
183
|
+
"internalType": "address",
|
|
184
|
+
"name": "spender",
|
|
185
|
+
"type": "address"
|
|
186
|
+
}
|
|
187
|
+
],
|
|
188
|
+
"name": "allowance",
|
|
189
|
+
"outputs": [
|
|
190
|
+
{
|
|
191
|
+
"internalType": "uint256",
|
|
192
|
+
"name": "",
|
|
193
|
+
"type": "uint256"
|
|
194
|
+
}
|
|
195
|
+
],
|
|
196
|
+
"stateMutability": "view",
|
|
197
|
+
"type": "function"
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
"inputs": [
|
|
201
|
+
{
|
|
202
|
+
"internalType": "address",
|
|
203
|
+
"name": "spender",
|
|
204
|
+
"type": "address"
|
|
205
|
+
},
|
|
206
|
+
{
|
|
207
|
+
"internalType": "uint256",
|
|
208
|
+
"name": "value",
|
|
209
|
+
"type": "uint256"
|
|
210
|
+
}
|
|
211
|
+
],
|
|
212
|
+
"name": "approve",
|
|
213
|
+
"outputs": [
|
|
214
|
+
{
|
|
215
|
+
"internalType": "bool",
|
|
216
|
+
"name": "",
|
|
217
|
+
"type": "bool"
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
"stateMutability": "nonpayable",
|
|
221
|
+
"type": "function"
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
"inputs": [
|
|
225
|
+
{
|
|
226
|
+
"internalType": "address",
|
|
227
|
+
"name": "account",
|
|
228
|
+
"type": "address"
|
|
229
|
+
}
|
|
230
|
+
],
|
|
231
|
+
"name": "balanceOf",
|
|
232
|
+
"outputs": [
|
|
233
|
+
{
|
|
234
|
+
"internalType": "uint256",
|
|
235
|
+
"name": "",
|
|
236
|
+
"type": "uint256"
|
|
237
|
+
}
|
|
238
|
+
],
|
|
239
|
+
"stateMutability": "view",
|
|
240
|
+
"type": "function"
|
|
241
|
+
},
|
|
242
|
+
{
|
|
243
|
+
"inputs": [
|
|
244
|
+
{
|
|
245
|
+
"internalType": "address",
|
|
246
|
+
"name": "account",
|
|
247
|
+
"type": "address"
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
"internalType": "uint256",
|
|
251
|
+
"name": "amount",
|
|
252
|
+
"type": "uint256"
|
|
253
|
+
}
|
|
254
|
+
],
|
|
255
|
+
"name": "burnFrom",
|
|
256
|
+
"outputs": [],
|
|
257
|
+
"stateMutability": "nonpayable",
|
|
258
|
+
"type": "function"
|
|
259
|
+
},
|
|
260
|
+
{
|
|
261
|
+
"inputs": [],
|
|
262
|
+
"name": "decimals",
|
|
263
|
+
"outputs": [
|
|
264
|
+
{
|
|
265
|
+
"internalType": "uint8",
|
|
266
|
+
"name": "",
|
|
267
|
+
"type": "uint8"
|
|
268
|
+
}
|
|
269
|
+
],
|
|
270
|
+
"stateMutability": "view",
|
|
271
|
+
"type": "function"
|
|
272
|
+
},
|
|
273
|
+
{
|
|
274
|
+
"inputs": [],
|
|
275
|
+
"name": "gateway",
|
|
276
|
+
"outputs": [
|
|
277
|
+
{
|
|
278
|
+
"internalType": "address",
|
|
279
|
+
"name": "",
|
|
280
|
+
"type": "address"
|
|
281
|
+
}
|
|
282
|
+
],
|
|
283
|
+
"stateMutability": "view",
|
|
284
|
+
"type": "function"
|
|
285
|
+
},
|
|
286
|
+
{
|
|
287
|
+
"inputs": [
|
|
288
|
+
{
|
|
289
|
+
"internalType": "address",
|
|
290
|
+
"name": "to",
|
|
291
|
+
"type": "address"
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"internalType": "uint256",
|
|
295
|
+
"name": "amount",
|
|
296
|
+
"type": "uint256"
|
|
297
|
+
}
|
|
298
|
+
],
|
|
299
|
+
"name": "mint",
|
|
300
|
+
"outputs": [],
|
|
301
|
+
"stateMutability": "nonpayable",
|
|
302
|
+
"type": "function"
|
|
303
|
+
},
|
|
304
|
+
{
|
|
305
|
+
"inputs": [],
|
|
306
|
+
"name": "name",
|
|
307
|
+
"outputs": [
|
|
308
|
+
{
|
|
309
|
+
"internalType": "string",
|
|
310
|
+
"name": "",
|
|
311
|
+
"type": "string"
|
|
312
|
+
}
|
|
313
|
+
],
|
|
314
|
+
"stateMutability": "view",
|
|
315
|
+
"type": "function"
|
|
316
|
+
},
|
|
317
|
+
{
|
|
318
|
+
"inputs": [],
|
|
319
|
+
"name": "symbol",
|
|
320
|
+
"outputs": [
|
|
321
|
+
{
|
|
322
|
+
"internalType": "string",
|
|
323
|
+
"name": "",
|
|
324
|
+
"type": "string"
|
|
325
|
+
}
|
|
326
|
+
],
|
|
327
|
+
"stateMutability": "view",
|
|
328
|
+
"type": "function"
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
"inputs": [],
|
|
332
|
+
"name": "totalSupply",
|
|
333
|
+
"outputs": [
|
|
334
|
+
{
|
|
335
|
+
"internalType": "uint256",
|
|
336
|
+
"name": "",
|
|
337
|
+
"type": "uint256"
|
|
338
|
+
}
|
|
339
|
+
],
|
|
340
|
+
"stateMutability": "view",
|
|
341
|
+
"type": "function"
|
|
342
|
+
},
|
|
343
|
+
{
|
|
344
|
+
"inputs": [
|
|
345
|
+
{
|
|
346
|
+
"internalType": "address",
|
|
347
|
+
"name": "to",
|
|
348
|
+
"type": "address"
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"internalType": "uint256",
|
|
352
|
+
"name": "value",
|
|
353
|
+
"type": "uint256"
|
|
354
|
+
}
|
|
355
|
+
],
|
|
356
|
+
"name": "transfer",
|
|
357
|
+
"outputs": [
|
|
358
|
+
{
|
|
359
|
+
"internalType": "bool",
|
|
360
|
+
"name": "",
|
|
361
|
+
"type": "bool"
|
|
362
|
+
}
|
|
363
|
+
],
|
|
364
|
+
"stateMutability": "nonpayable",
|
|
365
|
+
"type": "function"
|
|
366
|
+
},
|
|
367
|
+
{
|
|
368
|
+
"inputs": [
|
|
369
|
+
{
|
|
370
|
+
"internalType": "address",
|
|
371
|
+
"name": "from",
|
|
372
|
+
"type": "address"
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"internalType": "address",
|
|
376
|
+
"name": "to",
|
|
377
|
+
"type": "address"
|
|
378
|
+
},
|
|
379
|
+
{
|
|
380
|
+
"internalType": "uint256",
|
|
381
|
+
"name": "value",
|
|
382
|
+
"type": "uint256"
|
|
383
|
+
}
|
|
384
|
+
],
|
|
385
|
+
"name": "transferFrom",
|
|
386
|
+
"outputs": [
|
|
387
|
+
{
|
|
388
|
+
"internalType": "bool",
|
|
389
|
+
"name": "",
|
|
390
|
+
"type": "bool"
|
|
391
|
+
}
|
|
392
|
+
],
|
|
393
|
+
"stateMutability": "nonpayable",
|
|
394
|
+
"type": "function"
|
|
395
|
+
}
|
|
396
|
+
],
|
|
397
|
+
"bytecode": "0x60a06040523480156200001157600080fd5b5060405162000b9438038062000b948339810160408190526200003491620000f7565b6040518060400160405280600581526020016420b933b7b760d91b8152506040518060400160405280600481526020016320a923a760e11b8152508282828160039081620000839190620001d0565b506004620000928282620001d0565b5050506001600160a01b0381161580620000b457506001600160a01b0381163b155b15620000e157604051628ecbc360e51b81526001600160a01b038216600482015260240160405180910390fd5b6001600160a01b0316608052506200029c915050565b6000602082840312156200010a57600080fd5b81516001600160a01b03811681146200012257600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200015457607f821691505b6020821081036200017557634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001cb576000816000526020600020601f850160051c81016020861015620001a65750805b601f850160051c820191505b81811015620001c757828155600101620001b2565b5050505b505050565b81516001600160401b03811115620001ec57620001ec62000129565b6200020481620001fd84546200013f565b846200017b565b602080601f8311600181146200023c5760008415620002235750858301515b600019600386901b1c1916600185901b178555620001c7565b600085815260208120601f198616915b828110156200026d578886015182559484019460019091019084016200024c565b50858210156200028c5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6080516108cf620002c56000396000818160ff015281816102ed015261034b01526108cf6000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806340c10f191161007157806340c10f191461016d57806370a082311461018257806379cc6790146101ab57806395d89b41146101be578063a9059cbb146101c6578063dd62ed3e146101d957600080fd5b806306fdde03146100b9578063095ea7b3146100d7578063116191b6146100fa57806318160ddd1461013957806323b872dd1461014b578063313ce5671461015e575b600080fd5b6100c1610212565b6040516100ce9190610718565b60405180910390f35b6100ea6100e5366004610783565b6102a4565b60405190151581526020016100ce565b6101217f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100ce565b6002545b6040519081526020016100ce565b6100ea6101593660046107ad565b6102be565b604051601281526020016100ce565b61018061017b366004610783565b6102e2565b005b61013d6101903660046107e9565b6001600160a01b031660009081526020819052604090205490565b6101806101b9366004610783565b610340565b6100c16103a0565b6100ea6101d4366004610783565b6103af565b61013d6101e736600461080b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102219061083e565b80601f016020809104026020016040519081016040528092919081815260200182805461024d9061083e565b801561029a5780601f1061026f5761010080835404028352916020019161029a565b820191906000526020600020905b81548152906001019060200180831161027d57829003601f168201915b5050505050905090565b6000336102b28185856103bd565b60019150505b92915050565b6000336102cc8582856103cf565b6102d785858561044e565b506001949350505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461033257604051634ca65edb60e11b81523360048201526024015b60405180910390fd5b61033c82826104ad565b5050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461038b57604051634ca65edb60e11b8152336004820152602401610329565b6103968233836103cf565b61033c82826104e3565b6060600480546102219061083e565b6000336102b281858561044e565b6103ca8383836001610519565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610448578181101561043957604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610329565b61044884848484036000610519565b50505050565b6001600160a01b03831661047857604051634b637e8f60e11b815260006004820152602401610329565b6001600160a01b0382166104a25760405163ec442f0560e01b815260006004820152602401610329565b6103ca8383836105ee565b6001600160a01b0382166104d75760405163ec442f0560e01b815260006004820152602401610329565b61033c600083836105ee565b6001600160a01b03821661050d57604051634b637e8f60e11b815260006004820152602401610329565b61033c826000836105ee565b6001600160a01b0384166105435760405163e602df0560e01b815260006004820152602401610329565b6001600160a01b03831661056d57604051634a1406b160e11b815260006004820152602401610329565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561044857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105e091815260200190565b60405180910390a350505050565b6001600160a01b03831661061957806002600082825461060e9190610878565b9091555061068b9050565b6001600160a01b0383166000908152602081905260409020548181101561066c5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610329565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166106a7576002805482900390556106c6565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161070b91815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b818110156107465785810183015185820160400152820161072a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461077e57600080fd5b919050565b6000806040838503121561079657600080fd5b61079f83610767565b946020939093013593505050565b6000806000606084860312156107c257600080fd5b6107cb84610767565b92506107d960208501610767565b9150604084013590509250925092565b6000602082840312156107fb57600080fd5b61080482610767565b9392505050565b6000806040838503121561081e57600080fd5b61082783610767565b915061083560208401610767565b90509250929050565b600181811c9082168061085257607f821691505b60208210810361087257634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102b857634e487b7160e01b600052601160045260246000fdfea26469706673582212209b4d3d5e4e8ed5933d7a6358201f3b9ff7a64d5eae08ec4dbddaf0f45c2f0ce364736f6c63430008180033",
|
|
398
|
+
"deployedBytecode": "0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806340c10f191161007157806340c10f191461016d57806370a082311461018257806379cc6790146101ab57806395d89b41146101be578063a9059cbb146101c6578063dd62ed3e146101d957600080fd5b806306fdde03146100b9578063095ea7b3146100d7578063116191b6146100fa57806318160ddd1461013957806323b872dd1461014b578063313ce5671461015e575b600080fd5b6100c1610212565b6040516100ce9190610718565b60405180910390f35b6100ea6100e5366004610783565b6102a4565b60405190151581526020016100ce565b6101217f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016100ce565b6002545b6040519081526020016100ce565b6100ea6101593660046107ad565b6102be565b604051601281526020016100ce565b61018061017b366004610783565b6102e2565b005b61013d6101903660046107e9565b6001600160a01b031660009081526020819052604090205490565b6101806101b9366004610783565b610340565b6100c16103a0565b6100ea6101d4366004610783565b6103af565b61013d6101e736600461080b565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6060600380546102219061083e565b80601f016020809104026020016040519081016040528092919081815260200182805461024d9061083e565b801561029a5780601f1061026f5761010080835404028352916020019161029a565b820191906000526020600020905b81548152906001019060200180831161027d57829003601f168201915b5050505050905090565b6000336102b28185856103bd565b60019150505b92915050565b6000336102cc8582856103cf565b6102d785858561044e565b506001949350505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461033257604051634ca65edb60e11b81523360048201526024015b60405180910390fd5b61033c82826104ad565b5050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461038b57604051634ca65edb60e11b8152336004820152602401610329565b6103968233836103cf565b61033c82826104e3565b6060600480546102219061083e565b6000336102b281858561044e565b6103ca8383836001610519565b505050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811015610448578181101561043957604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610329565b61044884848484036000610519565b50505050565b6001600160a01b03831661047857604051634b637e8f60e11b815260006004820152602401610329565b6001600160a01b0382166104a25760405163ec442f0560e01b815260006004820152602401610329565b6103ca8383836105ee565b6001600160a01b0382166104d75760405163ec442f0560e01b815260006004820152602401610329565b61033c600083836105ee565b6001600160a01b03821661050d57604051634b637e8f60e11b815260006004820152602401610329565b61033c826000836105ee565b6001600160a01b0384166105435760405163e602df0560e01b815260006004820152602401610329565b6001600160a01b03831661056d57604051634a1406b160e11b815260006004820152602401610329565b6001600160a01b038085166000908152600160209081526040808320938716835292905220829055801561044857826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516105e091815260200190565b60405180910390a350505050565b6001600160a01b03831661061957806002600082825461060e9190610878565b9091555061068b9050565b6001600160a01b0383166000908152602081905260409020548181101561066c5760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610329565b6001600160a01b03841660009081526020819052604090209082900390555b6001600160a01b0382166106a7576002805482900390556106c6565b6001600160a01b03821660009081526020819052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161070b91815260200190565b60405180910390a3505050565b60006020808352835180602085015260005b818110156107465785810183015185820160400152820161072a565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461077e57600080fd5b919050565b6000806040838503121561079657600080fd5b61079f83610767565b946020939093013593505050565b6000806000606084860312156107c257600080fd5b6107cb84610767565b92506107d960208501610767565b9150604084013590509250925092565b6000602082840312156107fb57600080fd5b61080482610767565b9392505050565b6000806040838503121561081e57600080fd5b61082783610767565b915061083560208401610767565b90509250929050565b600181811c9082168061085257607f821691505b60208210810361087257634e487b7160e01b600052602260045260246000fd5b50919050565b808201808211156102b857634e487b7160e01b600052601160045260246000fdfea26469706673582212209b4d3d5e4e8ed5933d7a6358201f3b9ff7a64d5eae08ec4dbddaf0f45c2f0ce364736f6c63430008180033",
|
|
399
|
+
"linkReferences": {},
|
|
400
|
+
"deployedLinkReferences": {},
|
|
401
|
+
"immutableReferences": {
|
|
402
|
+
"2961": [
|
|
403
|
+
{
|
|
404
|
+
"length": 32,
|
|
405
|
+
"start": 255
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"length": 32,
|
|
409
|
+
"start": 749
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"length": 32,
|
|
413
|
+
"start": 843
|
|
414
|
+
}
|
|
415
|
+
]
|
|
416
|
+
},
|
|
417
|
+
"inputSourceName": "project/contracts/ArgonToken.sol",
|
|
418
|
+
"buildInfoId": "solc-0_8_24-c1abbf3880b0cf6b80fd72b19706058829075e56"
|
|
419
|
+
}
|