qvtx-developer-kit 1.0.0 → 1.2.0

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 (49) hide show
  1. package/.env.example +108 -0
  2. package/README.md +0 -0
  3. package/abis/QVTXBridge.json +273 -0
  4. package/abis/QVTXDirectPurchase.json +621 -0
  5. package/abis/QVTXGovernance.json +267 -0
  6. package/abis/QVTXNFT.json +370 -0
  7. package/abis/QVTXRewards.json +155 -0
  8. package/abis/QVTXToken.json +311 -0
  9. package/abis/QVTXVesting.json +216 -0
  10. package/abis/index.js +16 -0
  11. package/bin/qvtx-developer-cli.js +99 -0
  12. package/config/index.js +108 -0
  13. package/config/networks.js +247 -0
  14. package/examples/basic-usage.js +39 -0
  15. package/examples/bridge-example.js +123 -0
  16. package/examples/direct-purchase.js +300 -0
  17. package/examples/governance-example.js +140 -0
  18. package/examples/nft-example.js +141 -0
  19. package/examples/staking-example.js +96 -0
  20. package/index.js +145 -0
  21. package/languages/blockchain_ai_sdk.js +0 -0
  22. package/languages/node_sdk.js +0 -0
  23. package/languages/solana_sdk.js +383 -0
  24. package/package.json +30 -3
  25. package/purchase/index.js +567 -0
  26. package/rewards/index.js +71 -0
  27. package/smart-contracts/QVTXBridge.sol +305 -0
  28. package/smart-contracts/QVTXDirectPurchase.sol +543 -0
  29. package/smart-contracts/QVTXGovernance.sol +325 -0
  30. package/smart-contracts/QVTXNFT.sol +338 -0
  31. package/smart-contracts/QVTXRewards.sol +102 -0
  32. package/smart-contracts/QVTXToken.sol +227 -0
  33. package/smart-contracts/QVTXVesting.sol +411 -0
  34. package/smart-contracts/interfaces/IERC20.sol +14 -0
  35. package/smart-contracts/interfaces/IERC20Metadata.sol +8 -0
  36. package/smart-contracts/interfaces/IERC721.sol +18 -0
  37. package/smart-contracts/interfaces/IERC721Metadata.sol +8 -0
  38. package/smart-contracts/interfaces/IERC721Receiver.sol +11 -0
  39. package/storage/index.js +112 -0
  40. package/templates/contract/ERC20Token.sol +116 -0
  41. package/templates/dapp/index.html +93 -0
  42. package/test/index.js +182 -0
  43. package/tools/build-tool.js +63 -0
  44. package/tools/create-template.js +116 -0
  45. package/tools/deploy-tool.js +55 -0
  46. package/tools/generate-docs.js +149 -0
  47. package/tools/init-project.js +138 -0
  48. package/tools/run-tests.js +64 -0
  49. package/types/index.d.ts +386 -0
@@ -0,0 +1,621 @@
1
+ {
2
+ "contractName": "QVTXDirectPurchase",
3
+ "abi": [
4
+ {
5
+ "inputs": [
6
+ { "internalType": "address", "name": "_qvtxToken", "type": "address" },
7
+ { "internalType": "address", "name": "_treasury", "type": "address" },
8
+ { "internalType": "uint256", "name": "_priceInNative", "type": "uint256" },
9
+ { "internalType": "uint256", "name": "_totalSaleCap", "type": "uint256" }
10
+ ],
11
+ "stateMutability": "nonpayable",
12
+ "type": "constructor"
13
+ },
14
+ {
15
+ "anonymous": false,
16
+ "inputs": [
17
+ { "indexed": false, "internalType": "address", "name": "token", "type": "address" },
18
+ { "indexed": false, "internalType": "uint256", "name": "amount", "type": "uint256" }
19
+ ],
20
+ "name": "FundsWithdrawn",
21
+ "type": "event"
22
+ },
23
+ {
24
+ "anonymous": false,
25
+ "inputs": [
26
+ { "indexed": true, "internalType": "address", "name": "previousOwner", "type": "address" },
27
+ { "indexed": true, "internalType": "address", "name": "newOwner", "type": "address" }
28
+ ],
29
+ "name": "OwnershipTransferred",
30
+ "type": "event"
31
+ },
32
+ {
33
+ "anonymous": false,
34
+ "inputs": [
35
+ { "indexed": false, "internalType": "address", "name": "account", "type": "address" }
36
+ ],
37
+ "name": "Paused",
38
+ "type": "event"
39
+ },
40
+ {
41
+ "anonymous": false,
42
+ "inputs": [
43
+ { "indexed": false, "internalType": "address", "name": "token", "type": "address" },
44
+ { "indexed": false, "internalType": "uint256", "name": "price", "type": "uint256" }
45
+ ],
46
+ "name": "PaymentTokenAdded",
47
+ "type": "event"
48
+ },
49
+ {
50
+ "anonymous": false,
51
+ "inputs": [
52
+ { "indexed": false, "internalType": "address", "name": "token", "type": "address" }
53
+ ],
54
+ "name": "PaymentTokenRemoved",
55
+ "type": "event"
56
+ },
57
+ {
58
+ "anonymous": false,
59
+ "inputs": [
60
+ { "indexed": false, "internalType": "address", "name": "token", "type": "address" },
61
+ { "indexed": false, "internalType": "uint256", "name": "newPrice", "type": "uint256" }
62
+ ],
63
+ "name": "PriceUpdated",
64
+ "type": "event"
65
+ },
66
+ {
67
+ "anonymous": false,
68
+ "inputs": [
69
+ { "indexed": true, "internalType": "address", "name": "referrer", "type": "address" },
70
+ { "indexed": true, "internalType": "address", "name": "buyer", "type": "address" },
71
+ { "indexed": false, "internalType": "uint256", "name": "reward", "type": "uint256" }
72
+ ],
73
+ "name": "ReferralReward",
74
+ "type": "event"
75
+ },
76
+ {
77
+ "anonymous": false,
78
+ "inputs": [
79
+ { "indexed": true, "internalType": "address", "name": "buyer", "type": "address" },
80
+ { "indexed": false, "internalType": "uint256", "name": "qvtxAmount", "type": "uint256" },
81
+ { "indexed": false, "internalType": "uint256", "name": "pricePaid", "type": "uint256" },
82
+ { "indexed": false, "internalType": "address", "name": "paymentToken", "type": "address" },
83
+ { "indexed": true, "internalType": "address", "name": "referrer", "type": "address" }
84
+ ],
85
+ "name": "TokensPurchased",
86
+ "type": "event"
87
+ },
88
+ {
89
+ "anonymous": false,
90
+ "inputs": [
91
+ { "indexed": false, "internalType": "address", "name": "newTreasury", "type": "address" }
92
+ ],
93
+ "name": "TreasuryUpdated",
94
+ "type": "event"
95
+ },
96
+ {
97
+ "anonymous": false,
98
+ "inputs": [
99
+ { "indexed": false, "internalType": "address", "name": "account", "type": "address" }
100
+ ],
101
+ "name": "Unpaused",
102
+ "type": "event"
103
+ },
104
+ {
105
+ "anonymous": false,
106
+ "inputs": [
107
+ { "indexed": true, "internalType": "address", "name": "beneficiary", "type": "address" },
108
+ { "indexed": false, "internalType": "uint256", "name": "amount", "type": "uint256" },
109
+ { "indexed": false, "internalType": "uint256", "name": "duration", "type": "uint256" }
110
+ ],
111
+ "name": "VestingCreated",
112
+ "type": "event"
113
+ },
114
+ {
115
+ "anonymous": false,
116
+ "inputs": [
117
+ { "indexed": true, "internalType": "address", "name": "beneficiary", "type": "address" },
118
+ { "indexed": false, "internalType": "uint256", "name": "amount", "type": "uint256" }
119
+ ],
120
+ "name": "VestingReleased",
121
+ "type": "event"
122
+ },
123
+ {
124
+ "anonymous": false,
125
+ "inputs": [
126
+ { "indexed": true, "internalType": "address", "name": "account", "type": "address" },
127
+ { "indexed": false, "internalType": "bool", "name": "status", "type": "bool" }
128
+ ],
129
+ "name": "WhitelistUpdated",
130
+ "type": "event"
131
+ },
132
+ {
133
+ "inputs": [
134
+ { "internalType": "address", "name": "token", "type": "address" },
135
+ { "internalType": "uint256", "name": "price", "type": "uint256" }
136
+ ],
137
+ "name": "addPaymentToken",
138
+ "outputs": [],
139
+ "stateMutability": "nonpayable",
140
+ "type": "function"
141
+ },
142
+ {
143
+ "inputs": [
144
+ { "internalType": "uint256", "name": "qvtxAmount", "type": "uint256" },
145
+ { "internalType": "address", "name": "referrer", "type": "address" }
146
+ ],
147
+ "name": "calculateNativeCost",
148
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
149
+ "stateMutability": "view",
150
+ "type": "function"
151
+ },
152
+ {
153
+ "inputs": [
154
+ { "internalType": "address", "name": "paymentToken", "type": "address" },
155
+ { "internalType": "uint256", "name": "qvtxAmount", "type": "uint256" },
156
+ { "internalType": "address", "name": "referrer", "type": "address" }
157
+ ],
158
+ "name": "calculateTokenCost",
159
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
160
+ "stateMutability": "view",
161
+ "type": "function"
162
+ },
163
+ {
164
+ "inputs": [
165
+ { "internalType": "address", "name": "buyer", "type": "address" },
166
+ { "internalType": "uint256", "name": "amount", "type": "uint256" }
167
+ ],
168
+ "name": "canPurchase",
169
+ "outputs": [
170
+ { "internalType": "bool", "name": "", "type": "bool" },
171
+ { "internalType": "string", "name": "", "type": "string" }
172
+ ],
173
+ "stateMutability": "view",
174
+ "type": "function"
175
+ },
176
+ {
177
+ "inputs": [{ "internalType": "address", "name": "token", "type": "address" }],
178
+ "name": "emergencyWithdraw",
179
+ "outputs": [],
180
+ "stateMutability": "nonpayable",
181
+ "type": "function"
182
+ },
183
+ {
184
+ "inputs": [{ "internalType": "address", "name": "wallet", "type": "address" }],
185
+ "name": "getPurchaseHistory",
186
+ "outputs": [
187
+ {
188
+ "components": [
189
+ { "internalType": "uint256", "name": "amount", "type": "uint256" },
190
+ { "internalType": "uint256", "name": "pricePaid", "type": "uint256" },
191
+ { "internalType": "address", "name": "paymentToken", "type": "address" },
192
+ { "internalType": "uint256", "name": "timestamp", "type": "uint256" },
193
+ { "internalType": "address", "name": "referrer", "type": "address" }
194
+ ],
195
+ "internalType": "struct QVTXDirectPurchase.PurchaseRecord[]",
196
+ "name": "",
197
+ "type": "tuple[]"
198
+ }
199
+ ],
200
+ "stateMutability": "view",
201
+ "type": "function"
202
+ },
203
+ {
204
+ "inputs": [{ "internalType": "uint256", "name": "nativeAmount", "type": "uint256" }],
205
+ "name": "getQVTXForNative",
206
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
207
+ "stateMutability": "view",
208
+ "type": "function"
209
+ },
210
+ {
211
+ "inputs": [
212
+ { "internalType": "address", "name": "paymentToken", "type": "address" },
213
+ { "internalType": "uint256", "name": "tokenAmount", "type": "uint256" }
214
+ ],
215
+ "name": "getQVTXForToken",
216
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
217
+ "stateMutability": "view",
218
+ "type": "function"
219
+ },
220
+ {
221
+ "inputs": [
222
+ { "internalType": "address", "name": "user", "type": "address" },
223
+ { "internalType": "uint256", "name": "scheduleIndex", "type": "uint256" }
224
+ ],
225
+ "name": "getReleasableAmount",
226
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
227
+ "stateMutability": "view",
228
+ "type": "function"
229
+ },
230
+ {
231
+ "inputs": [{ "internalType": "address", "name": "wallet", "type": "address" }],
232
+ "name": "getRemainingAllocation",
233
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
234
+ "stateMutability": "view",
235
+ "type": "function"
236
+ },
237
+ {
238
+ "inputs": [],
239
+ "name": "getRemainingSupply",
240
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
241
+ "stateMutability": "view",
242
+ "type": "function"
243
+ },
244
+ {
245
+ "inputs": [],
246
+ "name": "getSupportedTokens",
247
+ "outputs": [{ "internalType": "address[]", "name": "", "type": "address[]" }],
248
+ "stateMutability": "view",
249
+ "type": "function"
250
+ },
251
+ {
252
+ "inputs": [{ "internalType": "address", "name": "user", "type": "address" }],
253
+ "name": "getVestingSchedules",
254
+ "outputs": [
255
+ {
256
+ "components": [
257
+ { "internalType": "uint256", "name": "totalAmount", "type": "uint256" },
258
+ { "internalType": "uint256", "name": "released", "type": "uint256" },
259
+ { "internalType": "uint256", "name": "startTime", "type": "uint256" },
260
+ { "internalType": "uint256", "name": "duration", "type": "uint256" }
261
+ ],
262
+ "internalType": "struct QVTXDirectPurchase.VestingSchedule[]",
263
+ "name": "",
264
+ "type": "tuple[]"
265
+ }
266
+ ],
267
+ "stateMutability": "view",
268
+ "type": "function"
269
+ },
270
+ {
271
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
272
+ "name": "isTokenSupported",
273
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
274
+ "stateMutability": "view",
275
+ "type": "function"
276
+ },
277
+ {
278
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
279
+ "name": "isWhitelisted",
280
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
281
+ "stateMutability": "view",
282
+ "type": "function"
283
+ },
284
+ {
285
+ "inputs": [],
286
+ "name": "maxPurchaseAmount",
287
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
288
+ "stateMutability": "view",
289
+ "type": "function"
290
+ },
291
+ {
292
+ "inputs": [],
293
+ "name": "maxWalletPurchase",
294
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
295
+ "stateMutability": "view",
296
+ "type": "function"
297
+ },
298
+ {
299
+ "inputs": [],
300
+ "name": "minPurchaseAmount",
301
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
302
+ "stateMutability": "view",
303
+ "type": "function"
304
+ },
305
+ {
306
+ "inputs": [],
307
+ "name": "owner",
308
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
309
+ "stateMutability": "view",
310
+ "type": "function"
311
+ },
312
+ {
313
+ "inputs": [],
314
+ "name": "pause",
315
+ "outputs": [],
316
+ "stateMutability": "nonpayable",
317
+ "type": "function"
318
+ },
319
+ {
320
+ "inputs": [],
321
+ "name": "paused",
322
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
323
+ "stateMutability": "view",
324
+ "type": "function"
325
+ },
326
+ {
327
+ "inputs": [],
328
+ "name": "priceInNative",
329
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
330
+ "stateMutability": "view",
331
+ "type": "function"
332
+ },
333
+ {
334
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
335
+ "name": "priceInToken",
336
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
337
+ "stateMutability": "view",
338
+ "type": "function"
339
+ },
340
+ {
341
+ "inputs": [
342
+ { "internalType": "address", "name": "", "type": "address" },
343
+ { "internalType": "uint256", "name": "", "type": "uint256" }
344
+ ],
345
+ "name": "purchaseHistory",
346
+ "outputs": [
347
+ { "internalType": "uint256", "name": "amount", "type": "uint256" },
348
+ { "internalType": "uint256", "name": "pricePaid", "type": "uint256" },
349
+ { "internalType": "address", "name": "paymentToken", "type": "address" },
350
+ { "internalType": "uint256", "name": "timestamp", "type": "uint256" },
351
+ { "internalType": "address", "name": "referrer", "type": "address" }
352
+ ],
353
+ "stateMutability": "view",
354
+ "type": "function"
355
+ },
356
+ {
357
+ "inputs": [
358
+ { "internalType": "uint256", "name": "qvtxAmount", "type": "uint256" },
359
+ { "internalType": "address", "name": "referrer", "type": "address" }
360
+ ],
361
+ "name": "purchaseWithNative",
362
+ "outputs": [],
363
+ "stateMutability": "payable",
364
+ "type": "function"
365
+ },
366
+ {
367
+ "inputs": [
368
+ { "internalType": "address", "name": "paymentToken", "type": "address" },
369
+ { "internalType": "uint256", "name": "qvtxAmount", "type": "uint256" },
370
+ { "internalType": "address", "name": "referrer", "type": "address" }
371
+ ],
372
+ "name": "purchaseWithToken",
373
+ "outputs": [],
374
+ "stateMutability": "nonpayable",
375
+ "type": "function"
376
+ },
377
+ {
378
+ "inputs": [],
379
+ "name": "qvtxToken",
380
+ "outputs": [{ "internalType": "contract IERC20", "name": "", "type": "address" }],
381
+ "stateMutability": "view",
382
+ "type": "function"
383
+ },
384
+ {
385
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
386
+ "name": "referralCount",
387
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
388
+ "stateMutability": "view",
389
+ "type": "function"
390
+ },
391
+ {
392
+ "inputs": [],
393
+ "name": "referralDiscountPercent",
394
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
395
+ "stateMutability": "view",
396
+ "type": "function"
397
+ },
398
+ {
399
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
400
+ "name": "referralEarnings",
401
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
402
+ "stateMutability": "view",
403
+ "type": "function"
404
+ },
405
+ {
406
+ "inputs": [],
407
+ "name": "referralRewardPercent",
408
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
409
+ "stateMutability": "view",
410
+ "type": "function"
411
+ },
412
+ {
413
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
414
+ "name": "referredBy",
415
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
416
+ "stateMutability": "view",
417
+ "type": "function"
418
+ },
419
+ {
420
+ "inputs": [{ "internalType": "uint256", "name": "scheduleIndex", "type": "uint256" }],
421
+ "name": "releaseVested",
422
+ "outputs": [],
423
+ "stateMutability": "nonpayable",
424
+ "type": "function"
425
+ },
426
+ {
427
+ "inputs": [{ "internalType": "address", "name": "token", "type": "address" }],
428
+ "name": "removePaymentToken",
429
+ "outputs": [],
430
+ "stateMutability": "nonpayable",
431
+ "type": "function"
432
+ },
433
+ {
434
+ "inputs": [],
435
+ "name": "renounceOwnership",
436
+ "outputs": [],
437
+ "stateMutability": "nonpayable",
438
+ "type": "function"
439
+ },
440
+ {
441
+ "inputs": [{ "internalType": "uint256", "name": "newPrice", "type": "uint256" }],
442
+ "name": "setNativePrice",
443
+ "outputs": [],
444
+ "stateMutability": "nonpayable",
445
+ "type": "function"
446
+ },
447
+ {
448
+ "inputs": [
449
+ { "internalType": "uint256", "name": "_min", "type": "uint256" },
450
+ { "internalType": "uint256", "name": "_max", "type": "uint256" },
451
+ { "internalType": "uint256", "name": "_maxWallet", "type": "uint256" },
452
+ { "internalType": "uint256", "name": "_totalCap", "type": "uint256" }
453
+ ],
454
+ "name": "setPurchaseLimits",
455
+ "outputs": [],
456
+ "stateMutability": "nonpayable",
457
+ "type": "function"
458
+ },
459
+ {
460
+ "inputs": [
461
+ { "internalType": "uint256", "name": "reward", "type": "uint256" },
462
+ { "internalType": "uint256", "name": "discount", "type": "uint256" }
463
+ ],
464
+ "name": "setReferralSettings",
465
+ "outputs": [],
466
+ "stateMutability": "nonpayable",
467
+ "type": "function"
468
+ },
469
+ {
470
+ "inputs": [{ "internalType": "address", "name": "newTreasury", "type": "address" }],
471
+ "name": "setTreasury",
472
+ "outputs": [],
473
+ "stateMutability": "nonpayable",
474
+ "type": "function"
475
+ },
476
+ {
477
+ "inputs": [
478
+ { "internalType": "uint256", "name": "threshold", "type": "uint256" },
479
+ { "internalType": "uint256", "name": "duration", "type": "uint256" }
480
+ ],
481
+ "name": "setVestingSettings",
482
+ "outputs": [],
483
+ "stateMutability": "nonpayable",
484
+ "type": "function"
485
+ },
486
+ {
487
+ "inputs": [{ "internalType": "bool", "name": "enabled", "type": "bool" }],
488
+ "name": "setWhitelistEnabled",
489
+ "outputs": [],
490
+ "stateMutability": "nonpayable",
491
+ "type": "function"
492
+ },
493
+ {
494
+ "inputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
495
+ "name": "supportedTokens",
496
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
497
+ "stateMutability": "view",
498
+ "type": "function"
499
+ },
500
+ {
501
+ "inputs": [],
502
+ "name": "totalSaleCap",
503
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
504
+ "stateMutability": "view",
505
+ "type": "function"
506
+ },
507
+ {
508
+ "inputs": [],
509
+ "name": "totalSold",
510
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
511
+ "stateMutability": "view",
512
+ "type": "function"
513
+ },
514
+ {
515
+ "inputs": [{ "internalType": "address", "name": "newOwner", "type": "address" }],
516
+ "name": "transferOwnership",
517
+ "outputs": [],
518
+ "stateMutability": "nonpayable",
519
+ "type": "function"
520
+ },
521
+ {
522
+ "inputs": [],
523
+ "name": "treasury",
524
+ "outputs": [{ "internalType": "address", "name": "", "type": "address" }],
525
+ "stateMutability": "view",
526
+ "type": "function"
527
+ },
528
+ {
529
+ "inputs": [],
530
+ "name": "unpause",
531
+ "outputs": [],
532
+ "stateMutability": "nonpayable",
533
+ "type": "function"
534
+ },
535
+ {
536
+ "inputs": [
537
+ { "internalType": "address", "name": "token", "type": "address" },
538
+ { "internalType": "uint256", "name": "newPrice", "type": "uint256" }
539
+ ],
540
+ "name": "updateTokenPrice",
541
+ "outputs": [],
542
+ "stateMutability": "nonpayable",
543
+ "type": "function"
544
+ },
545
+ {
546
+ "inputs": [
547
+ { "internalType": "address[]", "name": "accounts", "type": "address[]" },
548
+ { "internalType": "bool", "name": "status", "type": "bool" }
549
+ ],
550
+ "name": "updateWhitelist",
551
+ "outputs": [],
552
+ "stateMutability": "nonpayable",
553
+ "type": "function"
554
+ },
555
+ {
556
+ "inputs": [],
557
+ "name": "vestingDuration",
558
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
559
+ "stateMutability": "view",
560
+ "type": "function"
561
+ },
562
+ {
563
+ "inputs": [
564
+ { "internalType": "address", "name": "", "type": "address" },
565
+ { "internalType": "uint256", "name": "", "type": "uint256" }
566
+ ],
567
+ "name": "vestingSchedules",
568
+ "outputs": [
569
+ { "internalType": "uint256", "name": "totalAmount", "type": "uint256" },
570
+ { "internalType": "uint256", "name": "released", "type": "uint256" },
571
+ { "internalType": "uint256", "name": "startTime", "type": "uint256" },
572
+ { "internalType": "uint256", "name": "duration", "type": "uint256" }
573
+ ],
574
+ "stateMutability": "view",
575
+ "type": "function"
576
+ },
577
+ {
578
+ "inputs": [],
579
+ "name": "vestingThreshold",
580
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
581
+ "stateMutability": "view",
582
+ "type": "function"
583
+ },
584
+ {
585
+ "inputs": [{ "internalType": "address", "name": "", "type": "address" }],
586
+ "name": "walletPurchased",
587
+ "outputs": [{ "internalType": "uint256", "name": "", "type": "uint256" }],
588
+ "stateMutability": "view",
589
+ "type": "function"
590
+ },
591
+ {
592
+ "inputs": [],
593
+ "name": "whitelistEnabled",
594
+ "outputs": [{ "internalType": "bool", "name": "", "type": "bool" }],
595
+ "stateMutability": "view",
596
+ "type": "function"
597
+ },
598
+ {
599
+ "inputs": [],
600
+ "name": "withdrawNative",
601
+ "outputs": [],
602
+ "stateMutability": "nonpayable",
603
+ "type": "function"
604
+ },
605
+ {
606
+ "inputs": [{ "internalType": "address", "name": "token", "type": "address" }],
607
+ "name": "withdrawToken",
608
+ "outputs": [],
609
+ "stateMutability": "nonpayable",
610
+ "type": "function"
611
+ },
612
+ {
613
+ "inputs": [],
614
+ "name": "withdrawUnsoldQVTX",
615
+ "outputs": [],
616
+ "stateMutability": "nonpayable",
617
+ "type": "function"
618
+ },
619
+ { "stateMutability": "payable", "type": "receive" }
620
+ ]
621
+ }