-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathtest1output.txt
2137 lines (2134 loc) · 86.8 KB
/
test1output.txt
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 = ''
SOURCEDIR = '../contracts'
TOKENFACTORYSOL = 'BTTSTokenFactory.sol'
TOKENFACTORYJS = 'BTTSTokenFactory.js'
TESTSOL = 'TestApproveAndCallFallback.sol'
TESTJS = 'TestApproveAndCallFallback.js'
DEPLOYMENTDATA = 'deploymentData.txt'
INCLUDEJS = './include.js'
TEST1OUTPUT = 'test1output.txt'
TEST1RESULTS = 'test1results.txt'
CURRENTTIME = '1531576779' 'Sat 14 Jul 2018 13:59:39 UTC'
STARTTIME = '1531576869' 'Sat 14 Jul 2018 14:01:09 UTC'
ENDTIME = '1531576959' 'Sat 14 Jul 2018 14:02:39 UTC'
--- Differences ../contracts/BTTSTokenFactory.sol BTTSTokenFactory.sol ---
solc, the solidity compiler commandline interface
Version: 0.4.18+commit.9cf6e910.Darwin.appleclang
Welcome to the Geth JavaScript console!
instance: Geth/v1.8.11-stable-dea1ce05/darwin-amd64/go1.10.3
coinbase: 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e
at block: 10 (Sat, 14 Jul 2018 23:59:40 AEST)
datadir: /Users/bok/Projects/BokkyPooBahsTokenTeleportationServiceSmartContract/test/testchain
modules: admin:1.0 clique:1.0 debug:1.0 eth:1.0 miner:1.0 net:1.0 personal:1.0 rpc:1.0 shh:1.0 txpool:1.0 web3:1.0
>
true
>
true
>
true
>
true
>
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
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
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Fee Account
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: --- Deploy Test ApproveAndCallFallBack Contract ---
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
...
......
.........
............
............
............
............
............
............
............
.........
......
...
undefined
>
...
undefined
>
DATA: testAddress=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.000205316000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.000205316000000000 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
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Fee Account
RESULT: 9 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Test ApproveAndCallFallBack
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Deploy Test ApproveAndCallFallBack Contract
1
>
RESULT: testTx status=0x1 Success gas=6000000 gasUsed=205316 costETH=0.000205316 costUSD=0.17889388396 @ ETH/USD=871.31 gasPrice=1 gwei block=70 txIx=0 txId=0x0d1fa86f6b4ff89f50b5a62d0a9a309e102505fc03fd50b96159a61603eafa83 @ 1531576840 Sat, 14 Jul 2018 14:00:40 UTC
undefined
>
RESULT: testContractAddress=0x90d8927407c79c4a28ee879b821c76fc9bcc2688
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: --- Deploy BTTS Library ---
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
...
......
.........
............
............
............
............
............
............
.........
......
...
undefined
>
...
undefined
>
DATA: libBTTSAddress=0x0e946b999033257976aa5cbe0e3530618ca1582d
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.003697763000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.003697763000000000 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
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Fee Account
RESULT: 9 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Test ApproveAndCallFallBack
RESULT: 10 0x0e946b999033257976aa5cbe0e3530618ca1582d 0.000000000000000000 0.000000000000000000 BTTS Library
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Deploy BTTS Library
1
>
RESULT: libBTTSTx status=0x1 Success gas=6000000 gasUsed=3492447 costETH=0.003492447 costUSD=3.04300399557 @ ETH/USD=871.31 gasPrice=1 gwei block=72 txIx=0 txId=0x4f4da8326fa715a9759eb320e524aee996942940e074959c53635e6374c8e269 @ 1531576842 Sat, 14 Jul 2018 14:00:42 UTC
undefined
>
RESULT: tokenContractAddress=null
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: --- Deploy BTTSTokenFactory ---
undefined
>
undefined
>
undefined
>
undefined
>
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
>
...
......
.........
............
............
............
............
............
............
............
.........
......
...
undefined
>
>
...
undefined
>
>
DATA: factoryAddress=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.006774759000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.006774759000000000 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
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Fee Account
RESULT: 9 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Test ApproveAndCallFallBack
RESULT: 10 0x0e946b999033257976aa5cbe0e3530618ca1582d 0.000000000000000000 0.000000000000000000 BTTS Library
RESULT: 11 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 BTTSTokenFactory
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Deploy BTTSTokenFactory
1
>
RESULT: factoryTx status=0x1 Success gas=6000000 gasUsed=3076996 costETH=0.003076996 costUSD=2.68101738476 @ ETH/USD=871.31 gasPrice=1 gwei block=74 txIx=0 txId=0x9850679e2c4699c9ffb1ba2ea0b75b3452536768a74b9def9ca4b144502177e4 @ 1531576844 Sat, 14 Jul 2018 14:00:44 UTC
undefined
>
RESULT: factoryContractAddress=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: factory.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: factory.newOwner=0x0000000000000000000000000000000000000000
RESULT: factory.numberOfDeployedTokens=0
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
RESULT: --- Deploy Token Contract ---
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
undefined
>
...
undefined
>
RESULT: factoryContractAddress=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: get BTTSTokenListing 0 #76 {"bttsTokenAddress":"0x5c1658efd354d3aa03f4c346828443afa91919fd","decimals":"18","initialSupply":"1e+25","mintable":true,"name":"GazeCoin Test","ownerAddress":"0xa11aae29840fbb5c86e6fd4cf809eba183aef433","symbol":"GZETest","transferable":false}
undefined
>
RESULT: bttsTokens=#1 ["0x5c1658efd354d3aa03f4c346828443afa91919fd"]
undefined
>
undefined
>
"0x5c1658efd354d3aa03f4c346828443afa91919fd"
>
{
abi: [{
constant: true,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}],
name: "signedApproveAndCallHash",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "name",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "minter",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}],
name: "approve",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [{...}],
name: "nextNonce",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [{...}, {...}, {...}, {...}, {...}],
name: "signedApproveHash",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "totalSupply",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}],
name: "signedTransferFromHash",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "signedApproveAndCallSig",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}, {...}],
name: "transferFrom",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [],
name: "decimals",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}],
name: "signedTransferFrom",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [],
name: "mintable",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [{...}],
name: "accountLocked",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "signedTransferSig",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [{...}],
name: "balanceOf",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}],
name: "signedTransfer",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: false,
inputs: [],
name: "acceptOwnership",
outputs: [],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}],
name: "signedTransferCheck",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [],
name: "disableMinting",
outputs: [],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: false,
inputs: [{...}],
name: "transferOwnershipImmediately",
outputs: [],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [],
name: "bttsVersion",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "owner",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}],
name: "unlockAccount",
outputs: [],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [],
name: "transferable",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "symbol",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}],
name: "signedApproveAndCallCheck",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [{...}, {...}, {...}, {...}, {...}],
name: "signedTransferHash",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "signedApproveSig",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}],
name: "transfer",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: false,
inputs: [],
name: "enableTransfers",
outputs: [],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [],
name: "signedTransferFromSig",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}],
name: "signedApproveCheck",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}, {...}],
name: "approveAndCall",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}, {...}],
name: "mint",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [],
name: "newOwner",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}],
name: "transferAnyERC20Token",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [{...}, {...}],
name: "allowance",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: true,
inputs: [],
name: "signingPrefix",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}],
name: "signedApprove",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: false,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}],
name: "signedApproveAndCall",
outputs: [{...}],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: false,
inputs: [{...}],
name: "transferOwnership",
outputs: [],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
constant: true,
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}, {...}],
name: "signedTransferFromCheck",
outputs: [{...}],
payable: false,
stateMutability: "view",
type: "function"
}, {
constant: false,
inputs: [{...}],
name: "setMinter",
outputs: [],
payable: false,
stateMutability: "nonpayable",
type: "function"
}, {
inputs: [{...}, {...}, {...}, {...}, {...}, {...}, {...}],
payable: false,
stateMutability: "nonpayable",
type: "constructor"
}, {
payable: true,
stateMutability: "payable",
type: "fallback"
}, {
anonymous: false,
inputs: [{...}, {...}],
name: "OwnershipTransferred",
type: "event"
}, {
anonymous: false,
inputs: [{...}, {...}],
name: "MinterUpdated",
type: "event"
}, {
anonymous: false,
inputs: [{...}, {...}, {...}],
name: "Mint",
type: "event"
}, {
anonymous: false,
inputs: [],
name: "MintingDisabled",
type: "event"
}, {
anonymous: false,
inputs: [],
name: "TransfersEnabled",
type: "event"
}, {
anonymous: false,
inputs: [{...}],
name: "AccountUnlocked",
type: "event"
}, {
anonymous: false,
inputs: [{...}, {...}, {...}],
name: "Transfer",
type: "event"
}, {
anonymous: false,
inputs: [{...}, {...}, {...}],
name: "Approval",
type: "event"
}],
address: "0x5c1658efd354d3aa03f4c346828443afa91919fd",
transactionHash: null,
AccountUnlocked: function(),
Approval: function(),
Mint: function(),
MinterUpdated: function(),
MintingDisabled: function(),
OwnershipTransferred: function(),
Transfer: function(),
TransfersEnabled: function(),
acceptOwnership: function(),
accountLocked: function(),
allEvents: function(),
allowance: function(),
approve: function(),
approveAndCall: function(),
balanceOf: function(),
bttsVersion: function(),
decimals: function(),
disableMinting: function(),
enableTransfers: function(),
mint: function(),
mintable: function(),
minter: function(),
name: function(),
newOwner: function(),
nextNonce: function(),
owner: function(),
setMinter: function(),
signedApprove: function(),
signedApproveAndCall: function(),
signedApproveAndCallCheck: function(),
signedApproveAndCallHash: function(),
signedApproveAndCallSig: function(),
signedApproveCheck: function(),
signedApproveHash: function(),
signedApproveSig: function(),
signedTransfer: function(),
signedTransferCheck: function(),
signedTransferFrom: function(),
signedTransferFromCheck: function(),
signedTransferFromHash: function(),
signedTransferFromSig: function(),
signedTransferHash: function(),
signedTransferSig: function(),
signingPrefix: function(),
symbol: function(),
totalSupply: function(),
transfer: function(),
transferAnyERC20Token: function(),
transferFrom: function(),
transferOwnership: function(),
transferOwnershipImmediately: function(),
transferable: function(),
unlockAccount: function()
}
>
undefined
>
undefined
>
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.008693533000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.008693533000000000 10000000.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 0.000000000000000000 Account #3
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 0.000000000000000000 Account #4
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Fee Account
RESULT: 9 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Test ApproveAndCallFallBack
RESULT: 10 0x0e946b999033257976aa5cbe0e3530618ca1582d 0.000000000000000000 0.000000000000000000 BTTS Library
RESULT: 11 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 BTTSTokenFactory
RESULT: 12 0x5c1658efd354d3aa03f4c346828443afa91919fd 0.000000000000000000 0.000000000000000000 Token 'GZETest' 'GazeCoin Test'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 10000000.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: deployTokenTx status=0x1 Success gas=6000000 gasUsed=1918774 costETH=0.001918774 costUSD=1.67184697394 @ ETH/USD=871.31 gasPrice=1 gwei block=76 txIx=0 txId=0xf709f3114b61bc6da712ffce7b9b177c63f7bf49354e766c7e32ce3bbe242dfe @ 1531576846 Sat, 14 Jul 2018 14:00:46 UTC
undefined
>
RESULT: factoryContractAddress=0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff
RESULT: factory.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: factory.newOwner=0x0000000000000000000000000000000000000000
RESULT: factory.numberOfDeployedTokens=1
RESULT: factory.deployedTokens(0)=0x5c1658efd354d3aa03f4c346828443afa91919fd
RESULT: BTTSTokenListing 0 #76 {"bttsTokenAddress":"0x5c1658efd354d3aa03f4c346828443afa91919fd","decimals":"18","initialSupply":"1e+25","mintable":true,"name":"GazeCoin Test","ownerAddress":"0xa11aae29840fbb5c86e6fd4cf809eba183aef433","symbol":"GZETest","transferable":false}
undefined
>
RESULT: tokenContractAddress=0x5c1658efd354d3aa03f4c346828443afa91919fd
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=GZETest
RESULT: token.name=GazeCoin Test
RESULT: token.decimals=18
RESULT: token.totalSupply=10000000
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.minter=0x0000000000000000000000000000000000000000
RESULT: token.accountLocked(account3)=false
RESULT: token.accountLocked(account4)=false
RESULT: token.nextNonce(account3)=0
RESULT: token.nextNonce(account4)=0
RESULT: token.nextNonce(account5)=0
RESULT: token.nextNonce(account6)=0
RESULT: token.nextNonce(account7)=0
RESULT: Mint 0 #76 {"lockAccount":false,"tokenOwner":"0xa11aae29840fbb5c86e6fd4cf809eba183aef433","tokens":"1e+25"}
RESULT: Transfer 0 #76: from=0x0000000000000000000000000000000000000000 to=0xa11aae29840fbb5c86e6fd4cf809eba183aef433 tokens=10000000
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: --- Mint Tokens ---
undefined
>
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.008849585000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.008849585000000000 10000000.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 1000000.000000000000000000 Account #3
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 1000000.000000000000000000 Account #4
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Fee Account
RESULT: 9 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Test ApproveAndCallFallBack
RESULT: 10 0x0e946b999033257976aa5cbe0e3530618ca1582d 0.000000000000000000 0.000000000000000000 BTTS Library
RESULT: 11 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 BTTSTokenFactory
RESULT: 12 0x5c1658efd354d3aa03f4c346828443afa91919fd 0.000000000000000000 0.000000000000000000 Token 'GZETest' 'GazeCoin Test'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 12000000.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Mint Tokens - mint 1,000,000 tokens 0x0 -> ac3
1
>
RESULT: PASS Mint Tokens - mint 1,000,000 tokens 0x0 -> ac4
1
>
RESULT: mintTokens1Tx status=0x1 Success gas=100000 gasUsed=78026 costETH=0.000078026 costUSD=0.06798483406 @ ETH/USD=871.31 gasPrice=1 gwei block=79 txIx=0 txId=0x212942e7124f6fd832ac1b6ee6a4b098a27423c2e7c731aa699dd68dd28fed22 @ 1531576849 Sat, 14 Jul 2018 14:00:49 UTC
undefined
>
RESULT: mintTokens2Tx status=0x1 Success gas=100000 gasUsed=78026 costETH=0.000078026 costUSD=0.06798483406 @ ETH/USD=871.31 gasPrice=1 gwei block=80 txIx=0 txId=0x99023e1845cf07a79b5d5c667aa8a04c2e7e01519460019f97122081e21146dc @ 1531576850 Sat, 14 Jul 2018 14:00:50 UTC
undefined
>
RESULT: tokenContractAddress=0x5c1658efd354d3aa03f4c346828443afa91919fd
RESULT: token.owner=0xa11aae29840fbb5c86e6fd4cf809eba183aef433
RESULT: token.newOwner=0x0000000000000000000000000000000000000000
RESULT: token.symbol=GZETest
RESULT: token.name=GazeCoin Test
RESULT: token.decimals=18
RESULT: token.totalSupply=12000000
RESULT: token.transferable=false
RESULT: token.mintable=true
RESULT: token.minter=0x0000000000000000000000000000000000000000
RESULT: token.accountLocked(account3)=true
RESULT: token.accountLocked(account4)=true
RESULT: token.nextNonce(account3)=0
RESULT: token.nextNonce(account4)=0
RESULT: token.nextNonce(account5)=0
RESULT: token.nextNonce(account6)=0
RESULT: token.nextNonce(account7)=0
RESULT: Mint 0 #79 {"lockAccount":true,"tokenOwner":"0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0","tokens":"1e+24"}
RESULT: Mint 1 #80 {"lockAccount":true,"tokenOwner":"0xa44a08d3f6933c69212114bb66e2df1813651844","tokens":"1e+24"}
RESULT: Transfer 0 #79: from=0x0000000000000000000000000000000000000000 to=0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 tokens=1000000
RESULT: Transfer 1 #80: from=0x0000000000000000000000000000000000000000 to=0xa44a08d3f6933c69212114bb66e2df1813651844 tokens=1000000
undefined
>
RESULT:
undefined
>
>
>
undefined
>
undefined
>
undefined
>
RESULT: --- Start Transfers ---
undefined
>
undefined
>
undefined
>
...
undefined
>
RESULT: # Account EtherBalanceChange Token Name
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 0 0xa00af22d07c87d96eeeb0ed583f8f6ac7812827e 0.008912039000000000 0.000000000000000000 Account #0 - Miner
RESULT: 1 0xa11aae29840fbb5c86e6fd4cf809eba183aef433 -0.008912039000000000 10000000.000000000000000000 Account #1 - Contract Owner
RESULT: 2 0xa22ab8a9d641ce77e06d98b7d7065d324d3d6976 0.000000000000000000 0.000000000000000000 Account #2 - Wallet
RESULT: 3 0xa33a6c312d9ad0e0f2e95541beed0cc081621fd0 0.000000000000000000 1000000.000000000000000000 Account #3
RESULT: 4 0xa44a08d3f6933c69212114bb66e2df1813651844 0.000000000000000000 1000000.000000000000000000 Account #4
RESULT: 5 0xa55a151eb00fded1634d27d1127b4be4627079ea 0.000000000000000000 0.000000000000000000 Account #5
RESULT: 6 0xa66a85ede0cbe03694aa9d9de0bb19c99ff55bd9 0.000000000000000000 0.000000000000000000 Account #6
RESULT: 7 0xa77a2b9d4b1c010a22a7c565dc418cef683dbcec 0.000000000000000000 0.000000000000000000 Account #7
RESULT: 8 0xa88a05d2b88283ce84c8325760b72a64591279a2 0.000000000000000000 0.000000000000000000 Fee Account
RESULT: 9 0x90d8927407c79c4a28ee879b821c76fc9bcc2688 0.000000000000000000 0.000000000000000000 Test ApproveAndCallFallBack
RESULT: 10 0x0e946b999033257976aa5cbe0e3530618ca1582d 0.000000000000000000 0.000000000000000000 BTTS Library
RESULT: 11 0xdf9f36fd5654d92e0844c78d2d2dd562404cd1ff 0.000000000000000000 0.000000000000000000 BTTSTokenFactory
RESULT: 12 0x5c1658efd354d3aa03f4c346828443afa91919fd 0.000000000000000000 0.000000000000000000 Token 'GZETest' 'GazeCoin Test'
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT: 12000000.000000000000000000 Total Token Balances
RESULT: -- ------------------------------------------ --------------------------- ------------------------------ ---------------------------
RESULT:
undefined
>
RESULT: PASS Start Transfers - Disable Minting