-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathtest1output.txt
More file actions
1003 lines (999 loc) · 81 KB
/
test1output.txt
File metadata and controls
1003 lines (999 loc) · 81 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
MODE = 'test'
GETHATTACHPOINT = 'ipc:./testchain/geth.ipc'
PASSWORD = 'testtest'
SOURCEDIR = '../contracts'
PRESALEWHITELISTSOL = 'DeveryPresaleWhitelist.sol'
PRESALEWHITELISTJS = 'DeveryPresaleWhitelist.js'
PICOPSCERTIFIERSOL = 'TestPICOPSCertifier.sol'
PICOPSCERTIFIERJS = 'TestPICOPSCertifier.js'
PRESALETOKENSOL = 'DeveryPresale.sol'
PRESALETOKENJS = 'DeveryPresale.js'
PRESALEDEPLOYMENTDATA = 'presaleDeploymentData.txt'
INCLUDEJS = ''
TEST1OUTPUT = 'test1output.txt'
TEST1RESULTS = 'test1results.txt'
CURRENTTIME = '1516241638' 'Thu 18 Jan 2018 02:13:58 UTC'
START_DATE = '1516241683' 'Thu 18 Jan 2018 02:14:43 UTC'
--- Differences ../contracts/DeveryPresaleWhitelist.sol DeveryPresaleWhitelist.sol ---
--- Differences ../contracts/TestPICOPSCertifier.sol TestPICOPSCertifier.sol ---
--- Differences ../contracts/DeveryPresale.sol DeveryPresale.sol ---
192c192
< uint public constant START_DATE = 1513303200;
---
> uint public constant START_DATE = 1516241683; // Thu 18 Jan 2018 02:14:43 UTC
solc, the solidity compiler commandline interface
Version: 0.4.18+commit.9cf6e910.Darwin.appleclang
Welcome to the Geth JavaScript console!
instance: Geth/v1.7.3-stable-4bb3c89d/darwin-amd64/go1.9.2
coinbase: 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e
at block: 0 (Thu, 01 Jan 1970 10:00:00 AEST)
datadir: /Users/bok/Projects/DeveryCrowdsale/test/testchain
modules: admin:1.0 debug:1.0 eth:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 txpool:1.0 web3:1.0
>
true
>
true
>
true
>
true
>
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
>
DATA: whitelistAbi=[{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"seal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"admins","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"whitelist","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sealed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"max","type":"uint256[]"}],"name":"multiAdd","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"max","type":"uint256"}],"name":"add","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"},{"indexed":false,"name":"max","type":"uint256"}],"name":"Whitelisted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"}]
undefined
>
DATA: whitelistBin="0x6060604052341561000f57600080fd5b60008054600160a060020a033316600160a060020a03199091161790556107558061003b6000396000f3006060604052600436106100b95763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416631785f53c81146100c65780633fb27b85146100e5578063429b62e5146100f8578063704802751461012b57806379ba50971461014a5780638da5cb5b1461015d5780639b19251a1461018c578063d4ee1d90146101bd578063e4b203ef146101d0578063e6979b90146101e3578063f2fde38b14610272578063f5d82b6b14610291575b34156100c457600080fd5b005b34156100d157600080fd5b6100c4600160a060020a03600435166102b3565b34156100f057600080fd5b6100c4610330565b341561010357600080fd5b610117600160a060020a036004351661036a565b604051901515815260200160405180910390f35b341561013657600080fd5b6100c4600160a060020a036004351661037f565b341561015557600080fd5b6100c46103ff565b341561016857600080fd5b61017061048d565b604051600160a060020a03909116815260200160405180910390f35b341561019757600080fd5b6101ab600160a060020a036004351661049c565b60405190815260200160405180910390f35b34156101c857600080fd5b6101706104ae565b34156101db57600080fd5b6101176104bd565b34156101ee57600080fd5b6100c46004602481358181019083013580602081810201604051908101604052809392919081815260200183836020028082843782019150505050505091908035906020019082018035906020019080806020026020016040519081016040528093929190818152602001838360200280828437509496506104c695505050505050565b341561027d57600080fd5b6100c4600160a060020a0360043516610626565b341561029c57600080fd5b6100c4600160a060020a0360043516602435610670565b60005433600160a060020a039081169116146102ce57600080fd5b600160a060020a03811660009081526002602052604090819020805460ff191690557fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f90829051600160a060020a03909116815260200160405180910390a150565b60005433600160a060020a0390811691161461034b57600080fd5b60035460ff161561035b57600080fd5b6003805460ff19166001179055565b60026020526000908152604090205460ff1681565b60005433600160a060020a0390811691161461039a57600080fd5b600160a060020a03811660009081526002602052604090819020805460ff191660011790557f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33990829051600160a060020a03909116815260200160405180910390a150565b60015433600160a060020a0390811691161461041a57600080fd5b600154600054600160a060020a0391821691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b600054600160a060020a031681565b60046020526000908152604090205481565b600154600160a060020a031681565b60035460ff1681565b600160a060020a03331660009081526002602052604081205460ff16806104fb575060005433600160a060020a039081169116145b151561050657600080fd5b60035460ff161561051657600080fd5b8251151561052357600080fd5b815183511461053157600080fd5b5060005b82518110156106215782818151811061054a57fe5b90602001906020020151600160a060020a0316151561056857600080fd5b81818151811061057457fe5b906020019060200201516004600085848151811061058e57fe5b90602001906020020151600160a060020a031681526020810191909152604001600020558281815181106105be57fe5b90602001906020020151600160a060020a03167f6ea640312e182de387819fbeb13be00db3171a445412852248559054871c41998383815181106105fe57fe5b9060200190602002015160405190815260200160405180910390a2600101610535565b505050565b60005433600160a060020a0390811691161461064157600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600160a060020a03331660009081526002602052604090205460ff16806106a5575060005433600160a060020a039081169116145b15156106b057600080fd5b60035460ff16156106c057600080fd5b600160a060020a03821615156106d557600080fd5b600160a060020a038216600081815260046020526040908190208390557f6ea640312e182de387819fbeb13be00db3171a445412852248559054871c41999083905190815260200160405180910390a250505600a165627a7a7230582027fe556fea4f54a2a54ac7121cfb5c7ad04537dfd5644b5ba1a7dd004c998a660029"
undefined
>
DATA: picopsCertifierAbi=[{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"certified","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"}]
undefined
>
DATA: picopsCertifierBin="0x6060604052341561000f57600080fd5b6101148061001e6000396000f300606060405260043610603e5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663cc1d4c0281146043575b600080fd5b3415604d57600080fd5b606c73ffffffffffffffffffffffffffffffffffffffff600435166080565b604051901515815260200160405180910390f35b600073a44a08d3f6933c69212114bb66e2df181365184473ffffffffffffffffffffffffffffffffffffffff8316148060e2575073a77a2b9d4b1c010a22a7c565dc418cef683dbcec73ffffffffffffffffffffffffffffffffffffffff8316145b929150505600a165627a7a72305820269b3a70c9063f10622eb1c754443700daf7ea935cc1bd20edceed30eb568a850029"
undefined
>
DATA: tokenAbi=[{"constant":false,"inputs":[{"name":"_ethMinContribution","type":"uint256"}],"name":"setEthMinContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TEST_CONTRIBUTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_usdCap","type":"uint256"}],"name":"setUsdCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"START_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ethMinContribution","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_picopsCertifier","type":"address"}],"name":"setPICOPSCertifier","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"picopsCertifier","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"usdCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"contributedUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ethCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_whitelist","type":"address"}],"name":"setWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transferable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"whitelist","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contributedEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"usdPerKEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_usdPerKEther","type":"uint256"}],"name":"setUsdPerKEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"addressCanContribute","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"closeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldWallet","type":"address"},{"indexed":true,"name":"newWallet","type":"address"}],"name":"WalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldEthMinContribution","type":"uint256"},{"indexed":false,"name":"newEthMinContribution","type":"uint256"}],"name":"EthMinContributionUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldUsdCap","type":"uint256"},{"indexed":false,"name":"newUsdCap","type":"uint256"}],"name":"UsdCapUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldUsdPerKEther","type":"uint256"},{"indexed":false,"name":"newUsdPerKEther","type":"uint256"}],"name":"UsdPerKEtherUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldWhitelist","type":"address"},{"indexed":true,"name":"newWhitelist","type":"address"}],"name":"WhitelistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"oldPICOPSCertifier","type":"address"},{"indexed":true,"name":"newPICOPSCertifier","type":"address"}],"name":"PICOPSCertifierUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"addr","type":"address"},{"indexed":false,"name":"ethAmount","type":"uint256"},{"indexed":false,"name":"ethRefund","type":"uint256"},{"indexed":false,"name":"usdAmount","type":"uint256"},{"indexed":false,"name":"contributedEth","type":"uint256"},{"indexed":false,"name":"contributedUsd","type":"uint256"}],"name":"Contributed","type":"event"},{"anonymous":false,"inputs":[],"name":"MintingDisabled","type":"event"},{"anonymous":false,"inputs":[],"name":"TransfersEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]
undefined
>
DATA: tokenBin="0x60606040526006805461ff0019166101001790556801158e460913d00000600a55621e8480600b55620b2390600c5534156200003a57600080fd5b604080519081016040908152600582527f50524556450000000000000000000000000000000000000000000000000000006020830152805190810160405260128082527f50726573616c652045564520546f6b656e730000000000000000000000000000602083015260008054600160a060020a03191633600160a060020a03161790556002838051620000d392916020019062000129565b506003828051620000e992916020019062000129565b506004805460ff90921660ff19909216919091179055505060005460098054600160a060020a031916600160a060020a03909216919091179055620001ce565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200016c57805160ff19168380011785556200019c565b828001600101855582156200019c579182015b828111156200019c5782518255916020019190600101906200017f565b50620001aa929150620001ae565b5090565b620001cb91905b80821115620001aa5760008155600101620001b5565b90565b61142c80620001de6000396000f3006060604052600436106101be5763ffffffff60e060020a60003504166304f5222c81146103ec57806306fdde0314610404578063095ea7b31461048e57806318160ddd146104c457806323b872dd146104e957806324425cbf146105115780632919496414610524578063313ce5671461053a578063372c6533146105635780633eaaf86b1461057657806341d2076714610589578063433003691461059c5780634bf365df146105bb578063521eb273146105ce578063597e1fb5146105fd5780635f111074146106105780636298c93a146106235780636e2e9c3b1461063657806370a082311461064957806379ba5097146106685780637a4681701461067b578063854cff2f1461068e5780638da5cb5b146106ad57806392ff0d31146106c057806393e59dc1146106d357806395d89b41146106e6578063a9059cbb146106f9578063af35c6c71461071b578063b4d3ef5f1461072e578063bb5b586b14610741578063d4ee1d9014610754578063d9e4fa6a14610767578063dc39d06d1461077d578063dd62ed3e1461079f578063deaa59df146107c4578063ec2bcd22146107e3578063ee55efee14610802578063f2fde38b14610815575b6000806000635a600313421015806101f5575060005433600160a060020a0390811691161480156101f55750662386f26fc1000034145b151561020057600080fd5b60095460a060020a900460ff161561021757600080fd5b61022033610834565b151561022b57600080fd5b600a543410158061025b575060005433600160a060020a03908116911614801561025b5750662386f26fc1000034145b151561026657600080fd5b3492506000915061027561092e565b600d54610288908563ffffffff61094b16565b11156102bd576102a8600d5461029c61092e565b9063ffffffff61095b16565b92506102ba348463ffffffff61095b16565b91505b600083116102ca57600080fd5b600c54683635c9adc5dea000009084020490506102f283600d5461094b90919063ffffffff16565b600d55600e54610308908263ffffffff61094b16565b600e556103153384610970565b600954600160a060020a031683156108fc0284604051600060405180830381858888f19350505050151561034857600080fd5b33600160a060020a03167f382ef94565f44bde0934ee70556f78be0181d7954f7ca2d7a3521e2577bb0a57848484600d54600e54604051808681526020018581526020018481526020018381526020018281526020019550505050505060405180910390a260008211156103e757600160a060020a03331682156108fc0283604051600060405180830381858888f1935050505015156103e757600080fd5b505050005b34156103f757600080fd5b610402600435610a21565b005b341561040f57600080fd5b610417610a7c565b60405160208082528190810183818151815260200191508051906020019080838360005b8381101561045357808201518382015260200161043b565b50505050905090810190601f1680156104805780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561049957600080fd5b6104b0600160a060020a0360043516602435610b1a565b604051901515815260200160405180910390f35b34156104cf57600080fd5b6104d7610b97565b60405190815260200160405180910390f35b34156104f457600080fd5b6104b0600160a060020a0360043581169060243516604435610bc9565b341561051c57600080fd5b6104d7610cf0565b341561052f57600080fd5b610402600435610cfb565b341561054557600080fd5b61054d610d57565b60405160ff909116815260200160405180910390f35b341561056e57600080fd5b6104d7610d60565b341561058157600080fd5b6104d7610d68565b341561059457600080fd5b6104d7610d6e565b34156105a757600080fd5b610402600160a060020a0360043516610d74565b34156105c657600080fd5b6104b0610dfa565b34156105d957600080fd5b6105e1610e08565b604051600160a060020a03909116815260200160405180910390f35b341561060857600080fd5b6104b0610e17565b341561061b57600080fd5b6105e1610e27565b341561062e57600080fd5b6104d7610e36565b341561064157600080fd5b6104d7610e3c565b341561065457600080fd5b6104d7600160a060020a0360043516610e42565b341561067357600080fd5b610402610e5d565b341561068657600080fd5b6104d761092e565b341561069957600080fd5b610402600160a060020a0360043516610eeb565b34156106b857600080fd5b6105e1610f71565b34156106cb57600080fd5b6104b0610f80565b34156106de57600080fd5b6105e1610f89565b34156106f157600080fd5b610417610f98565b341561070457600080fd5b6104b0600160a060020a0360043516602435611003565b341561072657600080fd5b6104026110d6565b341561073957600080fd5b6104d761113c565b341561074c57600080fd5b6104d7611142565b341561075f57600080fd5b6105e1611148565b341561077257600080fd5b610402600435611157565b341561078857600080fd5b6104b0600160a060020a03600435166024356111b3565b34156107aa57600080fd5b6104d7600160a060020a0360043581169060243516611256565b34156107cf57600080fd5b610402600160a060020a0360043516611281565b34156107ee57600080fd5b6104b0600160a060020a0360043516610834565b341561080d57600080fd5b610402611307565b341561082057600080fd5b610402600160a060020a0360043516611367565b600f546000908190600160a060020a0316639b19251a84836040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561089157600080fd5b6102c65a03f115156108a257600080fd5b5050506040518051905011806109285750601054600160a060020a031663cc1d4c028360006040516020015260405160e060020a63ffffffff8416028152600160a060020a039091166004820152602401602060405180830381600087803b151561090c57600080fd5b6102c65a03f1151561091d57600080fd5b505050604051805190505b92915050565b6000600c546015600a0a600b540281151561094557fe5b04905090565b8181018281101561092857600080fd5b60008282111561096a57600080fd5b50900390565b600654610100900460ff16151561098657600080fd5b600160a060020a0382166000908152600760205260409020546109af908263ffffffff61094b16565b600160a060020a0383166000908152600760205260409020556005546109db908263ffffffff61094b16565b600555600160a060020a03821660007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405190815260200160405180910390a35050565b60005433600160a060020a03908116911614610a3c57600080fd5b7e988a16235b4f86ea9fb9b08f6f3c67a967661d4268682a1acf6697e8104b2a600a548260405191825260208201526040908101905180910390a1600a55565b60038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b125780601f10610ae757610100808354040283529160200191610b12565b820191906000526020600020905b815481529060010190602001808311610af557829003601f168201915b505050505081565b60065460009060ff161515610b2e57600080fd5b600160a060020a03338116600081815260086020908152604080832094881680845294909152908190208590557f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b6000805260076020527f6d5257204ebe7d88fd91ae87941cb2dd9d8062b64ae5a2bd2d28ec40b9fbf6df546005540390565b60065460009060ff161515610bdd57600080fd5b600160a060020a038416600090815260076020526040902054610c06908363ffffffff61095b16565b600160a060020a0380861660009081526007602090815260408083209490945560088152838220339093168252919091522054610c49908363ffffffff61095b16565b600160a060020a0380861660009081526008602090815260408083203385168452825280832094909455918616815260079091522054610c8f908363ffffffff61094b16565b600160a060020a03808516600081815260076020526040908190209390935591908616907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b662386f26fc1000081565b60005433600160a060020a03908116911614610d1657600080fd5b7f844706a64b1a935ddb2ecf8cbd98352cf0fbeb0445d87557ffd51917473cb894600b548260405191825260208201526040908101905180910390a1600b55565b60045460ff1681565b635a60031381565b60055481565b600a5481565b60005433600160a060020a03908116911614610d8f57600080fd5b601054600160a060020a0380831691167f9efbc411732b6d763d78f7f043e2086132113e26ee199ade2d124491e34cd27060405160405180910390a36010805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600654610100900460ff1681565b600954600160a060020a031681565b60095460a060020a900460ff1681565b601054600160a060020a031681565b600b5481565b600e5481565b600160a060020a031660009081526007602052604090205490565b60015433600160a060020a03908116911614610e7857600080fd5b600154600054600160a060020a0391821691167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3600180546000805473ffffffffffffffffffffffffffffffffffffffff19908116600160a060020a03841617909155169055565b60005433600160a060020a03908116911614610f0657600080fd5b600f54600160a060020a0380831691167f0b00a1112524b562c52fd702a5b927f07a0b1bafa6243b83cf3b78a9316bb1a760405160405180910390a3600f805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a031681565b60065460ff1681565b600f54600160a060020a031681565b60028054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b125780601f10610ae757610100808354040283529160200191610b12565b60065460009060ff16151561101757600080fd5b600160a060020a033316600090815260076020526040902054611040908363ffffffff61095b16565b600160a060020a033381166000908152600760205260408082209390935590851681522054611075908363ffffffff61094b16565b600160a060020a0380851660008181526007602052604090819020939093559133909116907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a350600192915050565b60005433600160a060020a039081169116146110f157600080fd5b60065460ff161561110157600080fd5b6006805460ff191660011790557feadb24812ab3c9a55c774958184293ebdb6c7f6a2dbab11f397d80c86feb65d360405160405180910390a1565b600d5481565b600c5481565b600154600160a060020a031681565b60005433600160a060020a0390811691161461117257600080fd5b7fda24b08c8dd5211861cbd763d68ed6681bc82d8c0b57feecb2b12b6a08da7362600c548260405191825260208201526040908101905180910390a1600c55565b6000805433600160a060020a039081169116146111cf57600080fd5b60008054600160a060020a038086169263a9059cbb929091169085906040516020015260405160e060020a63ffffffff8516028152600160a060020a0390921660048301526024820152604401602060405180830381600087803b151561123557600080fd5b6102c65a03f1151561124657600080fd5b5050506040518051949350505050565b600160a060020a03918216600090815260086020908152604080832093909416825291909152205490565b60005433600160a060020a0390811691161461129c57600080fd5b600954600160a060020a0380831691167f0f37c6733428a3a65d46b7f1853a5ce4bfa3cf92d25322507a50bf23a0b5a0a860405160405180910390a36009805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60005433600160a060020a0390811691161461132257600080fd5b60095460a060020a900460ff161561133957600080fd5b6009805474ff0000000000000000000000000000000000000000191660a060020a1790556113656113b1565b565b60005433600160a060020a0390811691161461138257600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600654610100900460ff1615156113c757600080fd5b6006805461ff00191690557faf79b4370f6af9d950564bbe6b81f7f0834c003c455db9248f4e55e6bf865eb760405160405180910390a15600a165627a7a723058200a40af1d92373adcefa16fdc7935d9572b2a92de45cfd638b92d0023f778133c0029"
undefined
>
>
>
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.000000000000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 0.000000000000000000 0.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Deploy Devery Whitelist Contract
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
...
......
.........
............
............
............
............
............
............
............
.........
......
...
undefined
>
...
undefined
>
DATA: whitelistAddress=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 8.028709850000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.028709850000000000 0.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Deploy Devery Whitelist Contract
1
>
RESULT: whitelistAddress=0x90d8927407c79c4a28ee879b821c76fc9bcc2688 status=0x1 Success gas=6000000 gasUsed=574197 costETH=0.02870985 costUSD=37.631148789 @ ETH/USD=1310.74 gasPrice=50 gwei block=2 txIx=0 txId=0xd3ec32ef25cbab8e9e1f320c5594e9a0fef23df65c2c90148cc47675e5d7510f @ 1516241652 Thu, 18 Jan 2018 02:14:12 UTC
undefined
>
RESULT: whitelistContractAddress=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: whitelist.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: whitelist.newOwner=0x0000000000000000000000000000000000000000
RESULT: whitelist.sealed=false
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Whitelist Accounts
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 14.033405400000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.033405400000000000 0.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Whitelist Accounts - multiAdd([account3, account5, contractOwnerAccount], [1, 1, 1])
1
>
RESULT: whitelistAccounts_1Tx status=0x1 Success gas=100000 gasUsed=93911 costETH=0.00469555 costUSD=6.154645207 @ ETH/USD=1310.74 gasPrice=50 gwei block=4 txIx=0 txId=0x444eeb6b36c6a69001df347275262305f40ee8ce0917dca9a4a9bce3b25c19ef @ 1516241660 Thu, 18 Jan 2018 02:14:20 UTC
undefined
>
RESULT: whitelistContractAddress=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: whitelist.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: whitelist.newOwner=0x0000000000000000000000000000000000000000
RESULT: whitelist.sealed=false
RESULT: Whitelisted 0 #4 {"addr":"0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0","max":"1"}
RESULT: Whitelisted 1 #4 {"addr":"0xa55a151eb00fded1634d27d1127b4be4627079ea","max":"1"}
RESULT: Whitelisted 2 #4 {"addr":"0xa11aae29840fbb5c86e6fd4cf809eba183aef433","max":"1"}
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Deploy Test PICOPS Certifier Contract
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
...
......
.........
............
............
............
............
............
............
.........
......
...
undefined
>
...
undefined
>
DATA: picopsCertifierAddress=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 20.039729600000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.039729600000000000 0.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Deploy Test PICOPS Certifier Contract
1
>
RESULT: picopsCertifierAddress=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff status=0x1 Success gas=6000000 gasUsed=126484 costETH=0.0063242 costUSD=8.289381908 @ ETH/USD=1310.74 gasPrice=50 gwei block=6 txIx=0 txId=0x47a0f2f6f86b1c43e4e7f66184f668482e623195d6c9e6ad3446f98f656b318c @ 1516241662 Thu, 18 Jan 2018 02:14:22 UTC
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Deploy Token Contract
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
...
......
.........
............
............
............
............
............
............
............
.........
......
...
undefined
>
...
undefined
>
DATA: tokenAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 26.121545950000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.121545950000000000 0.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: 14 0xe6ada9beed6e24be4c0259383db61b52bfca85f3 0.000000000000000000 0.000000000000000000 Token 'PREVE' 'Presale EVE Tokens'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Deploy Token Contract
1
>
RESULT: tokenAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3 status=0x1 Success gas=6000000 gasUsed=1636327 costETH=0.08181635 costUSD=107.239962599 @ ETH/USD=1310.74 gasPrice=50 gwei block=8 txIx=0 txId=0xdff45d8a3e86ebc1f7bd19c8d4d79fee5b07403d76aeb2e2958c4b69f3eae041 @ 1516241669 Thu, 18 Jan 2018 02:14:29 UTC
undefined
>
RESULT: tokenContractAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=PREVE
RESULT: token.name=Presale EVE Tokens
RESULT: token.decimals=18
RESULT: token.totalSupply=0
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.wallet=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.START_DATE=1516241683 Thu, 18 Jan 2018 02:14:43 UTC
RESULT: token.closed=false
RESULT: token.ethMinContribution=20000000000000000000 20 ETH
RESULT: token.usdCap=2000000
RESULT: token.usdPerKEther=730000
RESULT: token.ethCap=2.739726027397260273972e+21 2739.726027397260273972 ETH
RESULT: token.contributedEth=0 0 ETH
RESULT: token.contributedUsd=0
RESULT: token.whitelist=0x0000000000000000000000000000000000000000
RESULT: token.picopsCertifier=0x0000000000000000000000000000000000000000
RESULT: token.addressCanContribute(0xa44a08d3f6933c69212114bb66e2df1813651844) (WL)=false
RESULT: token.addressCanContribute(0xa55a151eb00fded1634d27d1127b4be4627079ea) (PICOPS)=false
RESULT: token.addressCanContribute(0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9) (not registered)=false
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Set Token Contract Parameters
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 35.131867500000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.131867500000000000 0.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: 14 0xe6ada9beed6e24be4c0259383db61b52bfca85f3 0.000000000000000000 0.000000000000000000 Token 'PREVE' 'Presale EVE Tokens'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Set Token Contract Parameters - token.setWallet(wallet)
1
>
RESULT: PASS Set Token Contract Parameters - token.setEthMinContribution(10 ETH)
1
>
RESULT: PASS Set Token Contract Parameters - token.setUsdCap(2,200,000)
1
>
RESULT: PASS Set Token Contract Parameters - token.setUsdPerKEther(444,444)
1
>
RESULT: PASS Set Token Contract Parameters - token.setWhitelist(whitelistAddress)
1
>
RESULT: PASS Set Token Contract Parameters - token.setPICOPSCertifier(picopsCertifierAddress)
1
>
RESULT: setTokenParameters_1Tx status=0x1 Success gas=100000 gasUsed=30487 costETH=0.00152435 costUSD=1.998026519 @ ETH/USD=1310.74 gasPrice=50 gwei block=10 txIx=0 txId=0xece634d3899493ffcd18d22437a7685c6a4519902d1a2fbe01a5b79a08ce0861 @ 1516241672 Thu, 18 Jan 2018 02:14:32 UTC
undefined
>
RESULT: setTokenParameters_2Tx status=0x1 Success gas=100000 gasUsed=28444 costETH=0.0014222 costUSD=1.864134428 @ ETH/USD=1310.74 gasPrice=50 gwei block=10 txIx=1 txId=0x34e5271079e60348a053040a99d305d420c025ba04b578fb16456031802e5107 @ 1516241672 Thu, 18 Jan 2018 02:14:32 UTC
undefined
>
RESULT: setTokenParameters_3Tx status=0x1 Success gas=100000 gasUsed=28384 costETH=0.0014192 costUSD=1.860202208 @ ETH/USD=1310.74 gasPrice=50 gwei block=10 txIx=2 txId=0xaabca1f4fd43dd555e3afad8cdcccb1400f7de9871550ba526b28a491f7e5ac5 @ 1516241672 Thu, 18 Jan 2018 02:14:32 UTC
undefined
>
RESULT: setTokenParameters_4Tx status=0x1 Success gas=100000 gasUsed=28934 costETH=0.0014467 costUSD=1.896247558 @ ETH/USD=1310.74 gasPrice=50 gwei block=10 txIx=3 txId=0xeb072e4fab5b5910c4e79b668f336857eda6484dd2176ccc4ba1b5558ebcbdbc @ 1516241672 Thu, 18 Jan 2018 02:14:32 UTC
undefined
>
RESULT: setTokenParameters_5Tx status=0x1 Success gas=100000 gasUsed=45201 costETH=0.00226005 costUSD=2.962337937 @ ETH/USD=1310.74 gasPrice=50 gwei block=10 txIx=4 txId=0x1adaf8c136a8f0337af85600386e58cd6d5321f7443852c3b0448c36d8a256c6 @ 1516241672 Thu, 18 Jan 2018 02:14:32 UTC
undefined
>
RESULT: setTokenParameters_6Tx status=0x1 Success gas=100000 gasUsed=44981 costETH=0.00224905 costUSD=2.947919797 @ ETH/USD=1310.74 gasPrice=50 gwei block=11 txIx=0 txId=0xadc8f0062afd711278a909ae02bca9234a592501880e582e2f2512f2ee7f35c3 @ 1516241673 Thu, 18 Jan 2018 02:14:33 UTC
undefined
>
RESULT: tokenContractAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=PREVE
RESULT: token.name=Presale EVE Tokens
RESULT: token.decimals=18
RESULT: token.totalSupply=0
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.wallet=0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976
RESULT: token.START_DATE=1516241683 Thu, 18 Jan 2018 02:14:43 UTC
RESULT: token.closed=false
RESULT: token.ethMinContribution=10000000000000000000 10 ETH
RESULT: token.usdCap=2000000
RESULT: token.usdPerKEther=730111
RESULT: token.ethCap=2.739309502253766892979e+21 2739.309502253766892979 ETH
RESULT: token.contributedEth=0 0 ETH
RESULT: token.contributedUsd=0
RESULT: token.whitelist=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: token.picopsCertifier=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: token.addressCanContribute(0xa44a08d3f6933c69212114bb66e2df1813651844) (WL)=true
RESULT: token.addressCanContribute(0xa55a151eb00fded1634d27d1127b4be4627079ea) (PICOPS)=true
RESULT: token.addressCanContribute(0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9) (not registered)=false
RESULT: WalletUpdated 0 #10 {"newWallet":"0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976","oldWallet":"0xa11aae29840fbb5c86e6fd4cf809eba183aef433"}
RESULT: EthMinContributionUpdated 0 #10 {"newEthMinContribution":"10000000000000000000","oldEthMinContribution":"20000000000000000000"}
RESULT: UsdCapUpdated 0 #10 {"newUsdCap":"2000000","oldUsdCap":"2000000"}
RESULT: UsdPerKEtherUpdated 0 #10 {"newUsdPerKEther":"730111","oldUsdPerKEther":"730000"}
RESULT: WhitelistUpdated 0 #10 {"newWhitelist":"0x90d8927407c79c4a28ee879b821c76fc9bcc2688","oldWhitelist":"0x0000000000000000000000000000000000000000"}
RESULT: PICOPSCertifierUpdated 0 #11 {"newPICOPSCertifier":"0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff","oldPICOPSCertifier":"0x0000000000000000000000000000000000000000"}
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Send Test Contribution From Owner Account
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 44.137634650000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.147634650000000000 0.010000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.010000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: 14 0xe6ada9beed6e24be4c0259383db61b52bfca85f3 0.000000000000000000 0.000000000000000000 Token 'PREVE' 'Presale EVE Tokens'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.010000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Send Test Contribution From Owner Account - ac1 0.01 ETH
1
>
RESULT: sendContribution0_1Tx status=0x1 Success gas=400000 gasUsed=115343 costETH=0.00576715 costUSD=7.559234191 @ ETH/USD=1310.74 gasPrice=50 gwei block=14 txIx=0 txId=0x62b8ac9eaf3a8bcab3fb5cb2ad0a52c7dc1a0d1a13ef2c20940725d25d70d1fe @ 1516241681 Thu, 18 Jan 2018 02:14:41 UTC
undefined
>
RESULT: tokenContractAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=PREVE
RESULT: token.name=Presale EVE Tokens
RESULT: token.decimals=18
RESULT: token.totalSupply=0.01
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.wallet=0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976
RESULT: token.START_DATE=1516241683 Thu, 18 Jan 2018 02:14:43 UTC
RESULT: token.closed=false
RESULT: token.ethMinContribution=10000000000000000000 10 ETH
RESULT: token.usdCap=2000000
RESULT: token.usdPerKEther=730111
RESULT: token.ethCap=2.739309502253766892979e+21 2739.309502253766892979 ETH
RESULT: token.contributedEth=10000000000000000 0.01 ETH
RESULT: token.contributedUsd=7
RESULT: token.whitelist=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: token.picopsCertifier=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: token.addressCanContribute(0xa44a08d3f6933c69212114bb66e2df1813651844) (WL)=true
RESULT: token.addressCanContribute(0xa55a151eb00fded1634d27d1127b4be4627079ea) (PICOPS)=true
RESULT: token.addressCanContribute(0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9) (not registered)=false
RESULT: Contributed 0 #14 addr=0xa11aae29840fbb5c86e6fd4cf809eba183aef433 ethAmount=10000000000000000 0.01 ETH ethRefund=0 0 ETH usdAmount=7 USD contributedEth=10000000000000000 0.01 ETH contributedUsd=7 USD
undefined
>
RESULT:
undefined
>
>
>
RESULT: Waiting until 'START_DATE' at 1516241683+0s =Thu, 18 Jan 2018 13:14:44 AEDT now=Thu, 18 Jan 2018 13:14:43 AEDT
RESULT: Waited until 'START_DATE' at at 1516241683+0s =Thu, 18 Jan 2018 13:14:44 AEDT now=Thu, 18 Jan 2018 13:14:44 AEDT
RESULT:
undefined
>
>
undefined
>
undefined
>
undefined
>
RESULT: Send Contribution #1
undefined
>
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 50.142277450000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.147634650000000000 0.010000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 1000.010000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 -1000.003503550000000000 1000.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 -0.001139250000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: 14 0xe6ada9beed6e24be4c0259383db61b52bfca85f3 0.000000000000000000 0.000000000000000000 Token 'PREVE' 'Presale EVE Tokens'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 1000.010000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Send Contribution #1 - ac3 1,000 ETH
1
>
RESULT: PASS Send Contribution #1 - ac6 800 ETH - Expecting failure as not whitelisted
1
>
RESULT: sendContribution1_1Tx status=0x1 Success gas=400000 gasUsed=70071 costETH=0.00350355 costUSD=4.592243127 @ ETH/USD=1310.74 gasPrice=50 gwei block=16 txIx=0 txId=0xf9b5a430981f003a76d4fdecbcd5ea76a1b05b925536e220621262b9f19e3428 @ 1516241684 Thu, 18 Jan 2018 02:14:44 UTC
undefined
>
RESULT: sendContribution1_2Tx status=0x0 Failure gas=400000 gasUsed=22785 costETH=0.00113925 costUSD=1.493260545 @ ETH/USD=1310.74 gasPrice=50 gwei block=16 txIx=1 txId=0x3203b010cbb98c91039e04947e3c266adaabb48c01a166d4797a30862562e3a0 @ 1516241684 Thu, 18 Jan 2018 02:14:44 UTC
undefined
>
RESULT: tokenContractAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=PREVE
RESULT: token.name=Presale EVE Tokens
RESULT: token.decimals=18
RESULT: token.totalSupply=1000.01
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.wallet=0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976
RESULT: token.START_DATE=1516241683 Thu, 18 Jan 2018 02:14:43 UTC
RESULT: token.closed=false
RESULT: token.ethMinContribution=10000000000000000000 10 ETH
RESULT: token.usdCap=2000000
RESULT: token.usdPerKEther=730111
RESULT: token.ethCap=2.739309502253766892979e+21 2739.309502253766892979 ETH
RESULT: token.contributedEth=1.00001e+21 1000.01 ETH
RESULT: token.contributedUsd=730118
RESULT: token.whitelist=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: token.picopsCertifier=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: token.addressCanContribute(0xa44a08d3f6933c69212114bb66e2df1813651844) (WL)=true
RESULT: token.addressCanContribute(0xa55a151eb00fded1634d27d1127b4be4627079ea) (PICOPS)=true
RESULT: token.addressCanContribute(0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9) (not registered)=false
RESULT: Contributed 0 #16 addr=0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 ethAmount=1e+21 1000 ETH ethRefund=0 0 ETH usdAmount=730111 USD contributedEth=1.00001e+21 1000.01 ETH contributedUsd=730118 USD
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Increase Cap
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 59.143693450000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.149050650000000000 0.010000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 1000.010000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 -1000.003503550000000000 1000.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 -0.001139250000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: 14 0xe6ada9beed6e24be4c0259383db61b52bfca85f3 0.000000000000000000 0.000000000000000000 Token 'PREVE' 'Presale EVE Tokens'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 1000.010000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Increase Cap
1
>
RESULT: increaseCapTx status=0x1 Success gas=100000 gasUsed=28320 costETH=0.001416 costUSD=1.85600784 @ ETH/USD=1310.74 gasPrice=50 gwei block=19 txIx=0 txId=0x06bd7901cd8c0bb1408f9f41e20bd43de50c3cd994f096dc3b6cc29d2f25de07 @ 1516241688 Thu, 18 Jan 2018 02:14:48 UTC
undefined
>
RESULT: tokenContractAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=PREVE
RESULT: token.name=Presale EVE Tokens
RESULT: token.decimals=18
RESULT: token.totalSupply=1000.01
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.wallet=0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976
RESULT: token.START_DATE=1516241683 Thu, 18 Jan 2018 02:14:43 UTC
RESULT: token.closed=false
RESULT: token.ethMinContribution=10000000000000000000 10 ETH
RESULT: token.usdCap=8000000
RESULT: token.usdPerKEther=730111
RESULT: token.ethCap=1.0957238009015067571917e+22 10957.238009015067571917 ETH
RESULT: token.contributedEth=1.00001e+21 1000.01 ETH
RESULT: token.contributedUsd=730118
RESULT: token.whitelist=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: token.picopsCertifier=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: token.addressCanContribute(0xa44a08d3f6933c69212114bb66e2df1813651844) (WL)=true
RESULT: token.addressCanContribute(0xa55a151eb00fded1634d27d1127b4be4627079ea) (PICOPS)=true
RESULT: token.addressCanContribute(0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9) (not registered)=false
RESULT: UsdCapUpdated 0 #19 {"newUsdCap":"8000000","oldUsdCap":"2000000"}
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Send Contribution #2
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 65.147227800000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.149050650000000000 0.010000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 3000.010000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 -1000.003503550000000000 1000.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 -2000.003534350000000000 2000.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 -0.001139250000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: 14 0xe6ada9beed6e24be4c0259383db61b52bfca85f3 0.000000000000000000 0.000000000000000000 Token 'PREVE' 'Presale EVE Tokens'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 3000.010000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Send Contribution #2 - ac4 2,000 ETH
1
>
RESULT: sendContribution2_1Tx status=0x1 Success gas=400000 gasUsed=70687 costETH=0.00353435 costUSD=4.632613919 @ ETH/USD=1310.74 gasPrice=50 gwei block=21 txIx=0 txId=0x7f46e1b80e0e57418cb6101ff39d458c8c2608861d4f6329f79adfe429a6dae2 @ 1516241692 Thu, 18 Jan 2018 02:14:52 UTC
undefined
>
RESULT: tokenContractAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=PREVE
RESULT: token.name=Presale EVE Tokens
RESULT: token.decimals=18
RESULT: token.totalSupply=3000.01
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.wallet=0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976
RESULT: token.START_DATE=1516241683 Thu, 18 Jan 2018 02:14:43 UTC
RESULT: token.closed=false
RESULT: token.ethMinContribution=10000000000000000000 10 ETH
RESULT: token.usdCap=8000000
RESULT: token.usdPerKEther=730111
RESULT: token.ethCap=1.0957238009015067571917e+22 10957.238009015067571917 ETH
RESULT: token.contributedEth=3.00001e+21 3000.01 ETH
RESULT: token.contributedUsd=2190340
RESULT: token.whitelist=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: token.picopsCertifier=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: token.addressCanContribute(0xa44a08d3f6933c69212114bb66e2df1813651844) (WL)=true
RESULT: token.addressCanContribute(0xa55a151eb00fded1634d27d1127b4be4627079ea) (PICOPS)=true
RESULT: token.addressCanContribute(0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9) (not registered)=false
RESULT: Contributed 0 #21 addr=0xa44a08d3f6933c69212114bb66e2df1813651844 ethAmount=2e+21 2000 ETH ethRefund=0 0 ETH usdAmount=1460222 USD contributedEth=3.00001e+21 3000.01 ETH contributedUsd=2190340 USD
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
...
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
>
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
RESULT: Send Contribution #4
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 71.150731350000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.149050650000000000 0.010000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 4561.764705882353000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 -1000.003503550000000000 1000.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 -2000.003534350000000000 2000.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea -1561.758209432353000000 1561.754705882353000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 -0.001139250000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: 14 0xe6ada9beed6e24be4c0259383db61b52bfca85f3 0.000000000000000000 0.000000000000000000 Token 'PREVE' 'Presale EVE Tokens'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 4561.764705882353000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Send Contribution #4 - ac5 1,561.754705882353 ETH
1
>
RESULT: sendContribution4_1Tx status=0x1 Success gas=400000 gasUsed=70071 costETH=0.00350355 costUSD=4.592243127 @ ETH/USD=1310.74 gasPrice=50 gwei block=23 txIx=0 txId=0x5b67f29ca062637a1120fb685e8d81f1d8aca08235e12792c14541aa2b89a42d @ 1516241700 Thu, 18 Jan 2018 02:15:00 UTC
undefined
>
RESULT: tokenContractAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=PREVE
RESULT: token.name=Presale EVE Tokens
RESULT: token.decimals=18
RESULT: token.totalSupply=4561.764705882353
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.wallet=0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976
RESULT: token.START_DATE=1516241683 Thu, 18 Jan 2018 02:14:43 UTC
RESULT: token.closed=false
RESULT: token.ethMinContribution=10000000000000000000 10 ETH
RESULT: token.usdCap=8000000
RESULT: token.usdPerKEther=730111
RESULT: token.ethCap=1.0957238009015067571917e+22 10957.238009015067571917 ETH
RESULT: token.contributedEth=4.561764705882353e+21 4561.764705882353 ETH
RESULT: token.contributedUsd=3330594
RESULT: token.whitelist=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: token.picopsCertifier=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: token.addressCanContribute(0xa44a08d3f6933c69212114bb66e2df1813651844) (WL)=true
RESULT: token.addressCanContribute(0xa55a151eb00fded1634d27d1127b4be4627079ea) (PICOPS)=true
RESULT: token.addressCanContribute(0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9) (not registered)=false
RESULT: Contributed 0 #23 addr=0xa55a151eb00fded1634d27d1127b4be4627079ea ethAmount=1.561754705882353e+21 1561.754705882353 ETH ethRefund=0 0 ETH usdAmount=1140254 USD contributedEth=4.561764705882353e+21 4561.764705882353 ETH contributedUsd=3330594 USD
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: Close Sale
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 77.151656200000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.149975500000000000 0.010000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 4561.764705882353000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 -1000.003503550000000000 1000.000000000000000000 Account #3 - Devery Whitelisted
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 -2000.003534350000000000 2000.000000000000000000 Account #4 - PICOPS Certified
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea -1561.758209432353000000 1561.754705882353000000 Account #5 - Devery Whitelisted
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 -0.001139250000000000 0.000000000000000000 Account #6 - Not whitelisted or certified
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7 - PICOPS Certified
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Account #8
RESULT: 9 0xa99a0ae3354c06b1459fd441a32a3f71005d7da0 0.000000000000000000 0.000000000000000000 Account #9
RESULT: 10 0xaaaa9de1e6c564446ebca0fd102d8bd92093c756 0.000000000000000000 0.000000000000000000 Account #10
RESULT: 11 0xabba43e7594e3b76afb157989e93c6621497fd4b 0.000000000000000000 0.000000000000000000 Account #11
RESULT: 12 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Devery Whitelist
RESULT: 13 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 Test PICOPS Certifier
RESULT: 14 0xe6ada9beed6e24be4c0259383db61b52bfca85f3 0.000000000000000000 0.000000000000000000 Token 'PREVE' 'Presale EVE Tokens'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 4561.764705882353000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Close Sale
1
>
RESULT: closeTx status=0x1 Success gas=100000 gasUsed=18497 costETH=0.00092485 costUSD=1.212237889 @ ETH/USD=1310.74 gasPrice=50 gwei block=25 txIx=0 txId=0x4703abafca956fb2ffa5c4bd5611e688934644f7d03743939c34a1f84eb1e32a @ 1516241707 Thu, 18 Jan 2018 02:15:07 UTC
undefined
>
RESULT: tokenContractAddress=0xe6ada9beed6e24be4c0259383db61b52bfca85f3
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=PREVE
RESULT: token.name=Presale EVE Tokens
RESULT: token.decimals=18
RESULT: token.totalSupply=4561.764705882353
RESULT: token.transferable=false
RESULT: token.mintable=false
RESULT: token.wallet=0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976
RESULT: token.START_DATE=1516241683 Thu, 18 Jan 2018 02:14:43 UTC
RESULT: token.closed=true
RESULT: token.ethMinContribution=10000000000000000000 10 ETH
RESULT: token.usdCap=8000000
RESULT: token.usdPerKEther=730111
RESULT: token.ethCap=1.0957238009015067571917e+22 10957.238009015067571917 ETH
RESULT: token.contributedEth=4.561764705882353e+21 4561.764705882353 ETH
RESULT: token.contributedUsd=3330594
RESULT: token.whitelist=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: token.picopsCertifier=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: token.addressCanContribute(0xa44a08d3f6933c69212114bb66e2df1813651844) (WL)=true
RESULT: token.addressCanContribute(0xa55a151eb00fded1634d27d1127b4be4627079ea) (PICOPS)=true
RESULT: token.addressCanContribute(0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9) (not registered)=false
RESULT: MintingDisabled 0 #25 {}
undefined
>
RESULT:
undefined