@pru.pinya/contracts 1.0.3 → 1.0.4

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 (39) hide show
  1. package/artifacts/contracts/access/AccessController.sol/AccessController.json +304 -0
  2. package/artifacts/contracts/access/AccessControllerKAP.sol/AccessControllerKAP.json +352 -0
  3. package/artifacts/contracts/access/AccessControllerKAP.sol/IKYCBitkubChain.json +33 -0
  4. package/artifacts/contracts/access/AccessControllerKAP.sol/KYCHandler.json +116 -0
  5. package/artifacts/contracts/access/Authorization.sol/Authorization.json +78 -0
  6. package/artifacts/contracts/access/AuthorizationKAP.sol/AuthorizationKAP.json +155 -0
  7. package/artifacts/contracts/access/Committee.sol/Committee.json +65 -0
  8. package/artifacts/contracts/access/Ownable.sol/Ownable.json +66 -0
  9. package/artifacts/contracts/interfaces/IAdminProjectRouter.sol/IAdminProjectRouter.json +62 -0
  10. package/artifacts/contracts/interfaces/IKYCBitkubChain.sol/IKYCBitkubChain.json +51 -0
  11. package/artifacts/contracts/kyc/KYCHandler.sol/KYCHandler.json +53 -0
  12. package/artifacts/contracts/libs/Address.sol/Address.json +13 -0
  13. package/artifacts/contracts/libs/EnumerableSetAddress.sol/EnumerableSetAddress.json +13 -0
  14. package/artifacts/contracts/libs/EnumerableSetUint.sol/EnumerableSetUint.json +13 -0
  15. package/artifacts/contracts/libs/EnumerateMap.sol/EnumerableMap.json +13 -0
  16. package/artifacts/contracts/libs/String.sol/Strings.json +13 -0
  17. package/artifacts/contracts/token/KAP-1155/KAP1155.sol/KAP1155.json +810 -0
  18. package/artifacts/contracts/token/KAP-1155/interfaces/IKAP1155.sol/IKAP1155.json +403 -0
  19. package/artifacts/contracts/token/KAP-1155/interfaces/IKAP1155Enumerable.sol/IKAP1155Enumerable.json +27 -0
  20. package/artifacts/contracts/token/KAP-1155/interfaces/IKAP1155Metadata.sol/IKAP1155Metadata.json +78 -0
  21. package/artifacts/contracts/token/KAP-1155/interfaces/IKAP1155Receiver.sol/IKAP1155Receiver.json +92 -0
  22. package/artifacts/contracts/token/KAP-20/KAP20.sol/KAP20.json +729 -0
  23. package/artifacts/contracts/token/KAP-20/interfaces/IKAP20.sol/IKAP20.json +294 -0
  24. package/artifacts/contracts/token/KAP-20/interfaces/IKToken.sol/IKToken.json +72 -0
  25. package/artifacts/contracts/token/KAP-22/KAP22.sol/KAP22.json +1022 -0
  26. package/artifacts/contracts/token/KAP-22/interfaces/IKAP22.sol/IKAP22.json +176 -0
  27. package/artifacts/contracts/token/KAP-22/utils/TransferRouter.sol/TransferRouter.json +52 -0
  28. package/artifacts/contracts/token/KAP-22/utils/WhitelistAddress.sol/WhitelistAddress.json +115 -0
  29. package/artifacts/contracts/token/KAP-721/KAP721.sol/KAP721.json +912 -0
  30. package/artifacts/contracts/token/KAP-721/interfaces/IKAP721.sol/IKAP721.json +380 -0
  31. package/artifacts/contracts/token/KAP-721/interfaces/IKAP721Enumerable.sol/IKAP721Enumerable.json +70 -0
  32. package/artifacts/contracts/token/KAP-721/interfaces/IKAP721Metadata.sol/IKAP721Metadata.json +59 -0
  33. package/artifacts/contracts/token/KAP-721/interfaces/IKAP721Receiver.sol/IKAP721Receiver.json +48 -0
  34. package/artifacts/contracts/token/KAP-721/interfaces/IKAP721V2.sol/IKAP721V2.json +103 -0
  35. package/artifacts/contracts/utils/Context.sol/Context.json +13 -0
  36. package/artifacts/contracts/utils/Pausable.sol/Pausable.json +53 -0
  37. package/artifacts/contracts/utils/introspections/IKAP165.sol/IKAP165.json +33 -0
  38. package/artifacts/contracts/utils/introspections/KAP165.sol/KAP165.json +33 -0
  39. package/package.json +2 -1
@@ -0,0 +1,1022 @@
1
+ {
2
+ "_format": "hh3-artifact-1",
3
+ "contractName": "KAP22",
4
+ "sourceName": "contracts/token/KAP-22/KAP22.sol",
5
+ "abi": [
6
+ {
7
+ "anonymous": false,
8
+ "inputs": [
9
+ {
10
+ "indexed": true,
11
+ "internalType": "uint256",
12
+ "name": "oldAcceptedKYCLevelSet",
13
+ "type": "uint256"
14
+ },
15
+ {
16
+ "indexed": true,
17
+ "internalType": "uint256",
18
+ "name": "newAcceptedKYCLevelSet",
19
+ "type": "uint256"
20
+ },
21
+ {
22
+ "indexed": true,
23
+ "internalType": "address",
24
+ "name": "caller",
25
+ "type": "address"
26
+ }
27
+ ],
28
+ "name": "AcceptedKYCLevelSet",
29
+ "type": "event"
30
+ },
31
+ {
32
+ "anonymous": false,
33
+ "inputs": [
34
+ {
35
+ "indexed": true,
36
+ "internalType": "address",
37
+ "name": "owner",
38
+ "type": "address"
39
+ },
40
+ {
41
+ "indexed": true,
42
+ "internalType": "address",
43
+ "name": "spender",
44
+ "type": "address"
45
+ },
46
+ {
47
+ "indexed": false,
48
+ "internalType": "uint256",
49
+ "name": "value",
50
+ "type": "uint256"
51
+ }
52
+ ],
53
+ "name": "Approval",
54
+ "type": "event"
55
+ },
56
+ {
57
+ "anonymous": false,
58
+ "inputs": [
59
+ {
60
+ "indexed": true,
61
+ "internalType": "address",
62
+ "name": "owner",
63
+ "type": "address"
64
+ },
65
+ {
66
+ "indexed": false,
67
+ "internalType": "uint256",
68
+ "name": "amount",
69
+ "type": "uint256"
70
+ }
71
+ ],
72
+ "name": "Burn",
73
+ "type": "event"
74
+ },
75
+ {
76
+ "anonymous": false,
77
+ "inputs": [
78
+ {
79
+ "indexed": true,
80
+ "internalType": "address",
81
+ "name": "oldKYC",
82
+ "type": "address"
83
+ },
84
+ {
85
+ "indexed": true,
86
+ "internalType": "address",
87
+ "name": "newKYC",
88
+ "type": "address"
89
+ },
90
+ {
91
+ "indexed": true,
92
+ "internalType": "address",
93
+ "name": "caller",
94
+ "type": "address"
95
+ }
96
+ ],
97
+ "name": "KYCSet",
98
+ "type": "event"
99
+ },
100
+ {
101
+ "anonymous": false,
102
+ "inputs": [
103
+ {
104
+ "indexed": true,
105
+ "internalType": "uint256",
106
+ "name": "period",
107
+ "type": "uint256"
108
+ },
109
+ {
110
+ "indexed": true,
111
+ "internalType": "address",
112
+ "name": "receiver",
113
+ "type": "address"
114
+ },
115
+ {
116
+ "indexed": false,
117
+ "internalType": "uint256",
118
+ "name": "amount",
119
+ "type": "uint256"
120
+ }
121
+ ],
122
+ "name": "Mint",
123
+ "type": "event"
124
+ },
125
+ {
126
+ "anonymous": false,
127
+ "inputs": [
128
+ {
129
+ "indexed": true,
130
+ "internalType": "address",
131
+ "name": "caller",
132
+ "type": "address"
133
+ }
134
+ ],
135
+ "name": "OnlyKYCAddressActivated",
136
+ "type": "event"
137
+ },
138
+ {
139
+ "anonymous": false,
140
+ "inputs": [
141
+ {
142
+ "indexed": true,
143
+ "internalType": "address",
144
+ "name": "oldOwner",
145
+ "type": "address"
146
+ },
147
+ {
148
+ "indexed": true,
149
+ "internalType": "address",
150
+ "name": "newOwner",
151
+ "type": "address"
152
+ },
153
+ {
154
+ "indexed": true,
155
+ "internalType": "address",
156
+ "name": "caller",
157
+ "type": "address"
158
+ }
159
+ ],
160
+ "name": "OwnerSet",
161
+ "type": "event"
162
+ },
163
+ {
164
+ "anonymous": false,
165
+ "inputs": [
166
+ {
167
+ "indexed": true,
168
+ "internalType": "address",
169
+ "name": "from",
170
+ "type": "address"
171
+ },
172
+ {
173
+ "indexed": true,
174
+ "internalType": "address",
175
+ "name": "to",
176
+ "type": "address"
177
+ },
178
+ {
179
+ "indexed": false,
180
+ "internalType": "uint256",
181
+ "name": "value",
182
+ "type": "uint256"
183
+ }
184
+ ],
185
+ "name": "Transfer",
186
+ "type": "event"
187
+ },
188
+ {
189
+ "anonymous": false,
190
+ "inputs": [
191
+ {
192
+ "indexed": true,
193
+ "internalType": "address",
194
+ "name": "oldTransferRouter",
195
+ "type": "address"
196
+ },
197
+ {
198
+ "indexed": true,
199
+ "internalType": "address",
200
+ "name": "newTransferRouter",
201
+ "type": "address"
202
+ },
203
+ {
204
+ "indexed": true,
205
+ "internalType": "address",
206
+ "name": "caller",
207
+ "type": "address"
208
+ }
209
+ ],
210
+ "name": "TransferRouterSet",
211
+ "type": "event"
212
+ },
213
+ {
214
+ "inputs": [],
215
+ "name": "acceptedKycLevel",
216
+ "outputs": [
217
+ {
218
+ "internalType": "uint256",
219
+ "name": "",
220
+ "type": "uint256"
221
+ }
222
+ ],
223
+ "stateMutability": "view",
224
+ "type": "function"
225
+ },
226
+ {
227
+ "inputs": [],
228
+ "name": "activateOnlyKycAddress",
229
+ "outputs": [],
230
+ "stateMutability": "nonpayable",
231
+ "type": "function"
232
+ },
233
+ {
234
+ "inputs": [
235
+ {
236
+ "internalType": "address",
237
+ "name": "_addr",
238
+ "type": "address"
239
+ }
240
+ ],
241
+ "name": "addWhitelistAddress",
242
+ "outputs": [],
243
+ "stateMutability": "nonpayable",
244
+ "type": "function"
245
+ },
246
+ {
247
+ "inputs": [
248
+ {
249
+ "internalType": "address",
250
+ "name": "_owner",
251
+ "type": "address"
252
+ },
253
+ {
254
+ "internalType": "address",
255
+ "name": "_spender",
256
+ "type": "address"
257
+ },
258
+ {
259
+ "internalType": "uint256",
260
+ "name": "_amount",
261
+ "type": "uint256"
262
+ }
263
+ ],
264
+ "name": "adminApprove",
265
+ "outputs": [
266
+ {
267
+ "internalType": "bool",
268
+ "name": "",
269
+ "type": "bool"
270
+ }
271
+ ],
272
+ "stateMutability": "nonpayable",
273
+ "type": "function"
274
+ },
275
+ {
276
+ "inputs": [
277
+ {
278
+ "internalType": "address",
279
+ "name": "_sender",
280
+ "type": "address"
281
+ },
282
+ {
283
+ "internalType": "address",
284
+ "name": "_recipient",
285
+ "type": "address"
286
+ },
287
+ {
288
+ "internalType": "uint256",
289
+ "name": "_amount",
290
+ "type": "uint256"
291
+ }
292
+ ],
293
+ "name": "adminTransfer",
294
+ "outputs": [
295
+ {
296
+ "internalType": "bool",
297
+ "name": "",
298
+ "type": "bool"
299
+ }
300
+ ],
301
+ "stateMutability": "nonpayable",
302
+ "type": "function"
303
+ },
304
+ {
305
+ "inputs": [
306
+ {
307
+ "internalType": "address",
308
+ "name": "_sender",
309
+ "type": "address"
310
+ },
311
+ {
312
+ "internalType": "address",
313
+ "name": "_recipient",
314
+ "type": "address"
315
+ },
316
+ {
317
+ "internalType": "uint256",
318
+ "name": "_amount",
319
+ "type": "uint256"
320
+ },
321
+ {
322
+ "internalType": "uint256",
323
+ "name": "_period",
324
+ "type": "uint256"
325
+ }
326
+ ],
327
+ "name": "adminTransferPreviousPeriod",
328
+ "outputs": [
329
+ {
330
+ "internalType": "bool",
331
+ "name": "",
332
+ "type": "bool"
333
+ }
334
+ ],
335
+ "stateMutability": "nonpayable",
336
+ "type": "function"
337
+ },
338
+ {
339
+ "inputs": [
340
+ {
341
+ "internalType": "address",
342
+ "name": "_owner",
343
+ "type": "address"
344
+ },
345
+ {
346
+ "internalType": "address",
347
+ "name": "_spender",
348
+ "type": "address"
349
+ }
350
+ ],
351
+ "name": "allowance",
352
+ "outputs": [
353
+ {
354
+ "internalType": "uint256",
355
+ "name": "remaining",
356
+ "type": "uint256"
357
+ }
358
+ ],
359
+ "stateMutability": "view",
360
+ "type": "function"
361
+ },
362
+ {
363
+ "inputs": [
364
+ {
365
+ "internalType": "address",
366
+ "name": "_spender",
367
+ "type": "address"
368
+ },
369
+ {
370
+ "internalType": "uint256",
371
+ "name": "_amount",
372
+ "type": "uint256"
373
+ }
374
+ ],
375
+ "name": "approve",
376
+ "outputs": [
377
+ {
378
+ "internalType": "bool",
379
+ "name": "",
380
+ "type": "bool"
381
+ }
382
+ ],
383
+ "stateMutability": "nonpayable",
384
+ "type": "function"
385
+ },
386
+ {
387
+ "inputs": [
388
+ {
389
+ "internalType": "address",
390
+ "name": "_owner",
391
+ "type": "address"
392
+ }
393
+ ],
394
+ "name": "balanceOf",
395
+ "outputs": [
396
+ {
397
+ "internalType": "uint256",
398
+ "name": "balance",
399
+ "type": "uint256"
400
+ }
401
+ ],
402
+ "stateMutability": "view",
403
+ "type": "function"
404
+ },
405
+ {
406
+ "inputs": [
407
+ {
408
+ "internalType": "address",
409
+ "name": "_owner",
410
+ "type": "address"
411
+ },
412
+ {
413
+ "internalType": "uint256",
414
+ "name": "_period",
415
+ "type": "uint256"
416
+ }
417
+ ],
418
+ "name": "balanceOfByPeriod",
419
+ "outputs": [
420
+ {
421
+ "internalType": "uint256",
422
+ "name": "balance",
423
+ "type": "uint256"
424
+ }
425
+ ],
426
+ "stateMutability": "view",
427
+ "type": "function"
428
+ },
429
+ {
430
+ "inputs": [
431
+ {
432
+ "internalType": "address",
433
+ "name": "_owner",
434
+ "type": "address"
435
+ }
436
+ ],
437
+ "name": "balanceOfCurrentPeriod",
438
+ "outputs": [
439
+ {
440
+ "internalType": "uint256",
441
+ "name": "balance",
442
+ "type": "uint256"
443
+ }
444
+ ],
445
+ "stateMutability": "view",
446
+ "type": "function"
447
+ },
448
+ {
449
+ "inputs": [
450
+ {
451
+ "internalType": "address",
452
+ "name": "_owner",
453
+ "type": "address"
454
+ }
455
+ ],
456
+ "name": "balanceOfNextPeriod",
457
+ "outputs": [
458
+ {
459
+ "internalType": "uint256",
460
+ "name": "balance",
461
+ "type": "uint256"
462
+ }
463
+ ],
464
+ "stateMutability": "view",
465
+ "type": "function"
466
+ },
467
+ {
468
+ "inputs": [
469
+ {
470
+ "internalType": "uint256",
471
+ "name": "period",
472
+ "type": "uint256"
473
+ },
474
+ {
475
+ "internalType": "uint256",
476
+ "name": "amount",
477
+ "type": "uint256"
478
+ },
479
+ {
480
+ "internalType": "address",
481
+ "name": "_owner",
482
+ "type": "address"
483
+ }
484
+ ],
485
+ "name": "burn",
486
+ "outputs": [
487
+ {
488
+ "internalType": "bool",
489
+ "name": "",
490
+ "type": "bool"
491
+ }
492
+ ],
493
+ "stateMutability": "nonpayable",
494
+ "type": "function"
495
+ },
496
+ {
497
+ "inputs": [],
498
+ "name": "cap",
499
+ "outputs": [
500
+ {
501
+ "internalType": "uint256",
502
+ "name": "",
503
+ "type": "uint256"
504
+ }
505
+ ],
506
+ "stateMutability": "view",
507
+ "type": "function"
508
+ },
509
+ {
510
+ "inputs": [],
511
+ "name": "currentIndex",
512
+ "outputs": [
513
+ {
514
+ "internalType": "uint256",
515
+ "name": "",
516
+ "type": "uint256"
517
+ }
518
+ ],
519
+ "stateMutability": "view",
520
+ "type": "function"
521
+ },
522
+ {
523
+ "inputs": [],
524
+ "name": "currentPeriod",
525
+ "outputs": [
526
+ {
527
+ "internalType": "uint256",
528
+ "name": "",
529
+ "type": "uint256"
530
+ }
531
+ ],
532
+ "stateMutability": "view",
533
+ "type": "function"
534
+ },
535
+ {
536
+ "inputs": [],
537
+ "name": "decimals",
538
+ "outputs": [
539
+ {
540
+ "internalType": "uint8",
541
+ "name": "",
542
+ "type": "uint8"
543
+ }
544
+ ],
545
+ "stateMutability": "view",
546
+ "type": "function"
547
+ },
548
+ {
549
+ "inputs": [
550
+ {
551
+ "internalType": "address",
552
+ "name": "_spender",
553
+ "type": "address"
554
+ },
555
+ {
556
+ "internalType": "uint256",
557
+ "name": "_subtractedValue",
558
+ "type": "uint256"
559
+ }
560
+ ],
561
+ "name": "decreaseAllowance",
562
+ "outputs": [
563
+ {
564
+ "internalType": "bool",
565
+ "name": "",
566
+ "type": "bool"
567
+ }
568
+ ],
569
+ "stateMutability": "nonpayable",
570
+ "type": "function"
571
+ },
572
+ {
573
+ "inputs": [
574
+ {
575
+ "internalType": "address",
576
+ "name": "_sender",
577
+ "type": "address"
578
+ },
579
+ {
580
+ "internalType": "address",
581
+ "name": "_recipient",
582
+ "type": "address"
583
+ },
584
+ {
585
+ "internalType": "uint256",
586
+ "name": "_amount",
587
+ "type": "uint256"
588
+ }
589
+ ],
590
+ "name": "externalTransfer",
591
+ "outputs": [
592
+ {
593
+ "internalType": "bool",
594
+ "name": "",
595
+ "type": "bool"
596
+ }
597
+ ],
598
+ "stateMutability": "nonpayable",
599
+ "type": "function"
600
+ },
601
+ {
602
+ "inputs": [
603
+ {
604
+ "internalType": "address",
605
+ "name": "_spender",
606
+ "type": "address"
607
+ },
608
+ {
609
+ "internalType": "uint256",
610
+ "name": "_addedValue",
611
+ "type": "uint256"
612
+ }
613
+ ],
614
+ "name": "increaseAllowance",
615
+ "outputs": [
616
+ {
617
+ "internalType": "bool",
618
+ "name": "",
619
+ "type": "bool"
620
+ }
621
+ ],
622
+ "stateMutability": "nonpayable",
623
+ "type": "function"
624
+ },
625
+ {
626
+ "inputs": [
627
+ {
628
+ "internalType": "address",
629
+ "name": "_sender",
630
+ "type": "address"
631
+ },
632
+ {
633
+ "internalType": "address",
634
+ "name": "_recipient",
635
+ "type": "address"
636
+ },
637
+ {
638
+ "internalType": "uint256",
639
+ "name": "_amount",
640
+ "type": "uint256"
641
+ }
642
+ ],
643
+ "name": "internalTransfer",
644
+ "outputs": [
645
+ {
646
+ "internalType": "bool",
647
+ "name": "",
648
+ "type": "bool"
649
+ }
650
+ ],
651
+ "stateMutability": "nonpayable",
652
+ "type": "function"
653
+ },
654
+ {
655
+ "inputs": [],
656
+ "name": "isActivatedOnlyKycAddress",
657
+ "outputs": [
658
+ {
659
+ "internalType": "bool",
660
+ "name": "",
661
+ "type": "bool"
662
+ }
663
+ ],
664
+ "stateMutability": "view",
665
+ "type": "function"
666
+ },
667
+ {
668
+ "inputs": [
669
+ {
670
+ "internalType": "address",
671
+ "name": "_addr",
672
+ "type": "address"
673
+ }
674
+ ],
675
+ "name": "isWhitelistAddr",
676
+ "outputs": [
677
+ {
678
+ "internalType": "bool",
679
+ "name": "",
680
+ "type": "bool"
681
+ }
682
+ ],
683
+ "stateMutability": "view",
684
+ "type": "function"
685
+ },
686
+ {
687
+ "inputs": [],
688
+ "name": "kyc",
689
+ "outputs": [
690
+ {
691
+ "internalType": "contract IKYCBitkubChain",
692
+ "name": "",
693
+ "type": "address"
694
+ }
695
+ ],
696
+ "stateMutability": "view",
697
+ "type": "function"
698
+ },
699
+ {
700
+ "inputs": [
701
+ {
702
+ "internalType": "uint256",
703
+ "name": "amount",
704
+ "type": "uint256"
705
+ },
706
+ {
707
+ "internalType": "address",
708
+ "name": "receiver",
709
+ "type": "address"
710
+ }
711
+ ],
712
+ "name": "mint",
713
+ "outputs": [
714
+ {
715
+ "internalType": "bool",
716
+ "name": "",
717
+ "type": "bool"
718
+ }
719
+ ],
720
+ "stateMutability": "nonpayable",
721
+ "type": "function"
722
+ },
723
+ {
724
+ "inputs": [],
725
+ "name": "name",
726
+ "outputs": [
727
+ {
728
+ "internalType": "string",
729
+ "name": "",
730
+ "type": "string"
731
+ }
732
+ ],
733
+ "stateMutability": "view",
734
+ "type": "function"
735
+ },
736
+ {
737
+ "inputs": [],
738
+ "name": "owner",
739
+ "outputs": [
740
+ {
741
+ "internalType": "address",
742
+ "name": "",
743
+ "type": "address"
744
+ }
745
+ ],
746
+ "stateMutability": "view",
747
+ "type": "function"
748
+ },
749
+ {
750
+ "inputs": [],
751
+ "name": "periodLength",
752
+ "outputs": [
753
+ {
754
+ "internalType": "uint256",
755
+ "name": "",
756
+ "type": "uint256"
757
+ }
758
+ ],
759
+ "stateMutability": "view",
760
+ "type": "function"
761
+ },
762
+ {
763
+ "inputs": [
764
+ {
765
+ "internalType": "address",
766
+ "name": "_addr",
767
+ "type": "address"
768
+ }
769
+ ],
770
+ "name": "revokeWhitelistAddress",
771
+ "outputs": [],
772
+ "stateMutability": "nonpayable",
773
+ "type": "function"
774
+ },
775
+ {
776
+ "inputs": [
777
+ {
778
+ "internalType": "uint256",
779
+ "name": "_kycLevel",
780
+ "type": "uint256"
781
+ }
782
+ ],
783
+ "name": "setAcceptedKycLevel",
784
+ "outputs": [],
785
+ "stateMutability": "nonpayable",
786
+ "type": "function"
787
+ },
788
+ {
789
+ "inputs": [
790
+ {
791
+ "internalType": "uint256",
792
+ "name": "amount",
793
+ "type": "uint256"
794
+ }
795
+ ],
796
+ "name": "setCap",
797
+ "outputs": [
798
+ {
799
+ "internalType": "bool",
800
+ "name": "",
801
+ "type": "bool"
802
+ }
803
+ ],
804
+ "stateMutability": "nonpayable",
805
+ "type": "function"
806
+ },
807
+ {
808
+ "inputs": [
809
+ {
810
+ "internalType": "contract IKYCBitkubChain",
811
+ "name": "_kyc",
812
+ "type": "address"
813
+ }
814
+ ],
815
+ "name": "setKyc",
816
+ "outputs": [],
817
+ "stateMutability": "nonpayable",
818
+ "type": "function"
819
+ },
820
+ {
821
+ "inputs": [
822
+ {
823
+ "internalType": "address",
824
+ "name": "_owner",
825
+ "type": "address"
826
+ }
827
+ ],
828
+ "name": "setOwner",
829
+ "outputs": [],
830
+ "stateMutability": "nonpayable",
831
+ "type": "function"
832
+ },
833
+ {
834
+ "inputs": [
835
+ {
836
+ "internalType": "address",
837
+ "name": "_transferRouter",
838
+ "type": "address"
839
+ }
840
+ ],
841
+ "name": "setTransferRouter",
842
+ "outputs": [],
843
+ "stateMutability": "nonpayable",
844
+ "type": "function"
845
+ },
846
+ {
847
+ "inputs": [],
848
+ "name": "startTime",
849
+ "outputs": [
850
+ {
851
+ "internalType": "uint256",
852
+ "name": "",
853
+ "type": "uint256"
854
+ }
855
+ ],
856
+ "stateMutability": "view",
857
+ "type": "function"
858
+ },
859
+ {
860
+ "inputs": [],
861
+ "name": "symbol",
862
+ "outputs": [
863
+ {
864
+ "internalType": "string",
865
+ "name": "",
866
+ "type": "string"
867
+ }
868
+ ],
869
+ "stateMutability": "view",
870
+ "type": "function"
871
+ },
872
+ {
873
+ "inputs": [],
874
+ "name": "totalSupply",
875
+ "outputs": [
876
+ {
877
+ "internalType": "uint256",
878
+ "name": "",
879
+ "type": "uint256"
880
+ }
881
+ ],
882
+ "stateMutability": "view",
883
+ "type": "function"
884
+ },
885
+ {
886
+ "inputs": [
887
+ {
888
+ "internalType": "address",
889
+ "name": "_recipient",
890
+ "type": "address"
891
+ },
892
+ {
893
+ "internalType": "uint256",
894
+ "name": "_amount",
895
+ "type": "uint256"
896
+ }
897
+ ],
898
+ "name": "transfer",
899
+ "outputs": [
900
+ {
901
+ "internalType": "bool",
902
+ "name": "",
903
+ "type": "bool"
904
+ }
905
+ ],
906
+ "stateMutability": "nonpayable",
907
+ "type": "function"
908
+ },
909
+ {
910
+ "inputs": [
911
+ {
912
+ "internalType": "address",
913
+ "name": "_sender",
914
+ "type": "address"
915
+ },
916
+ {
917
+ "internalType": "address",
918
+ "name": "_recipient",
919
+ "type": "address"
920
+ },
921
+ {
922
+ "internalType": "uint256",
923
+ "name": "_amount",
924
+ "type": "uint256"
925
+ }
926
+ ],
927
+ "name": "transferFrom",
928
+ "outputs": [
929
+ {
930
+ "internalType": "bool",
931
+ "name": "",
932
+ "type": "bool"
933
+ }
934
+ ],
935
+ "stateMutability": "nonpayable",
936
+ "type": "function"
937
+ },
938
+ {
939
+ "inputs": [],
940
+ "name": "transferRouter",
941
+ "outputs": [
942
+ {
943
+ "internalType": "address",
944
+ "name": "",
945
+ "type": "address"
946
+ }
947
+ ],
948
+ "stateMutability": "view",
949
+ "type": "function"
950
+ },
951
+ {
952
+ "inputs": [],
953
+ "name": "updatePeriodNow",
954
+ "outputs": [],
955
+ "stateMutability": "nonpayable",
956
+ "type": "function"
957
+ },
958
+ {
959
+ "inputs": [
960
+ {
961
+ "internalType": "uint256",
962
+ "name": "_index",
963
+ "type": "uint256"
964
+ }
965
+ ],
966
+ "name": "whitelistAddrByIndex",
967
+ "outputs": [
968
+ {
969
+ "internalType": "address",
970
+ "name": "",
971
+ "type": "address"
972
+ }
973
+ ],
974
+ "stateMutability": "view",
975
+ "type": "function"
976
+ },
977
+ {
978
+ "inputs": [
979
+ {
980
+ "internalType": "uint256",
981
+ "name": "_page",
982
+ "type": "uint256"
983
+ },
984
+ {
985
+ "internalType": "uint256",
986
+ "name": "_limit",
987
+ "type": "uint256"
988
+ }
989
+ ],
990
+ "name": "whitelistAddrByPage",
991
+ "outputs": [
992
+ {
993
+ "internalType": "address[]",
994
+ "name": "",
995
+ "type": "address[]"
996
+ }
997
+ ],
998
+ "stateMutability": "view",
999
+ "type": "function"
1000
+ },
1001
+ {
1002
+ "inputs": [],
1003
+ "name": "whitelistAddrLength",
1004
+ "outputs": [
1005
+ {
1006
+ "internalType": "uint256",
1007
+ "name": "",
1008
+ "type": "uint256"
1009
+ }
1010
+ ],
1011
+ "stateMutability": "view",
1012
+ "type": "function"
1013
+ }
1014
+ ],
1015
+ "bytecode": "0x",
1016
+ "deployedBytecode": "0x",
1017
+ "linkReferences": {},
1018
+ "deployedLinkReferences": {},
1019
+ "immutableReferences": {},
1020
+ "inputSourceName": "project/contracts/token/KAP-22/KAP22.sol",
1021
+ "buildInfoId": "solc-0_8_0-e831237f77f57735677888cd40a003fe1edbbe4d"
1022
+ }