-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathbridge.log
1059 lines (1059 loc) · 436 KB
/
bridge.log
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
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-02-27T02:59:04.227Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-02-27T02:59:04.230Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-02-27T02:59:04.230Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-02-27T02:59:04.230Z"}
{"level":"info","message":"using active mode","timestamp":"2021-02-27T02:59:04.231Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-02-27T02:59:04.231Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1614394422,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":6.7e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008299},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-02-27T02:59:06.831Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-02-27T02:59:07.186Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-02-27T02:59:07.625Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-02-27T02:59:07.741Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-02-27T02:59:18.169Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-02-27T02:59:18.169Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-02-27T02:59:18.285Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-02-27T02:59:39.552Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-02-27T02:59:39.553Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-02-27T02:59:39.553Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-02-27T02:59:50.718Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-02-27T02:59:50.719Z"}
{"context_name":"eth_670A06DCC2","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/copyrightly/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/copyrightly/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/copyrightly/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/copyrightly/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/copyrightly/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/copyrightly/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/copyrightly/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":6.7e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-02-27T02:59:50.719Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/copyrightly/node_modules/ethereum-bridge/config/instance/oracle_instance_20210227T105950.json","timestamp":"2021-02-27T02:59:50.725Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-02-27T02:59:50.726Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-02-27T02:59:50.727Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-02-27T02:59:50.730Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-02-27T02:59:50.730Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-02-27T03:10:57.998Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-02-27T03:10:58.001Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-02-27T03:10:58.001Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-02-27T03:10:58.001Z"}
{"level":"info","message":"using active mode","timestamp":"2021-02-27T03:10:58.002Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-02-27T03:10:58.002Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1614395454,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":6.7e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008299},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-02-27T03:10:58.817Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-02-27T03:10:59.191Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-02-27T03:10:59.705Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-02-27T03:10:59.841Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-02-27T03:11:10.277Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-02-27T03:11:10.277Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-02-27T03:11:10.402Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-02-27T03:11:31.571Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-02-27T03:11:31.572Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-02-27T03:11:31.572Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-02-27T03:11:42.605Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-02-27T03:11:42.605Z"}
{"context_name":"eth_2356426537","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":6.7e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-02-27T03:11:42.605Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210227T111142.json","timestamp":"2021-02-27T03:11:42.608Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-02-27T03:11:42.609Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-02-27T03:11:42.610Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-02-27T03:11:42.613Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-02-27T03:11:42.613Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-02-27T03:12:54.440Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-02-27T03:12:54.443Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-02-27T03:12:54.443Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-02-27T03:12:54.443Z"}
{"level":"info","message":"using active mode","timestamp":"2021-02-27T03:12:54.444Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-02-27T03:12:54.444Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1614395454,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":6.7e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008299},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-02-27T03:12:55.252Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-02-27T03:12:55.608Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-02-27T03:12:56.085Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-02-27T03:12:56.222Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-02-27T03:14:45.651Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-02-27T03:14:45.654Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-02-27T03:14:45.654Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-02-27T03:14:45.654Z"}
{"level":"info","message":"using active mode","timestamp":"2021-02-27T03:14:45.655Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-02-27T03:14:45.655Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1614395454,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":6.7e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008299},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-02-27T03:14:46.600Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-02-27T03:14:46.994Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-02-27T03:14:47.486Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-02-27T03:14:47.614Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-02-27T03:14:58.042Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-02-27T03:14:58.042Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-02-27T03:14:58.165Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-02-27T03:15:19.403Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-02-27T03:15:19.403Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-02-27T03:15:19.403Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-02-27T03:15:30.497Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-02-27T03:15:30.497Z"}
{"context_name":"eth_A65513C85A","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":6.7e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-02-27T03:15:30.497Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210227T111530.json","timestamp":"2021-02-27T03:15:30.503Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-02-27T03:15:30.504Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-02-27T03:15:30.505Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-02-27T03:15:30.507Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-02-27T03:15:30.507Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-02-27T03:56:41.970Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-02-27T03:56:41.972Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-02-27T03:56:41.972Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-02-27T03:56:41.973Z"}
{"level":"info","message":"using active mode","timestamp":"2021-02-27T03:56:41.973Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-02-27T03:56:41.973Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1614398165,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":6.6e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008292},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-02-27T03:56:42.971Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-02-27T03:56:43.328Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-02-27T03:56:43.783Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-02-27T03:56:43.905Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-02-27T03:56:54.327Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-02-27T03:56:54.327Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-02-27T03:56:54.447Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-02-27T03:57:15.527Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-02-27T03:57:15.527Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-02-27T03:57:15.528Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-02-27T03:57:26.513Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-02-27T03:57:26.513Z"}
{"context_name":"eth_F0E13D85AD","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":6.6e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-02-27T03:57:26.514Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210227T115726.json","timestamp":"2021-02-27T03:57:26.518Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-02-27T03:57:26.519Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-02-27T03:57:26.520Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-02-27T03:57:26.523Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-02-27T03:57:26.523Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//div[contains(@id,'description')]//a[contains(@href,'QmRA3NWM82ZGynMbYzAgYTSXCVM14Wx1RZ8fKP42G6gjgj')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xe88af8e82b462d0d5ab82376075edb7e468cffb37c1119e03f725775c1366034","blockHash":"0xa07e99042efc5b59fe9dc5933bdbd6a0753608c40b914bde09d642dba3424c60","blockNumber":39,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//div[contains(@id,'description')]//a[contains(@href,'QmRA3NWM82ZGynMbYzAgYTSXCVM14Wx1RZ8fKP42G6gjgj')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1614398443,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-02-27T04:00:44.047Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-02-27T04:00:44.055Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//div[contains(@id,'description')]//a[contains(@href,'QmRA3NWM82ZGynMbYzAgYTSXCVM14Wx1RZ8fKP42G6gjgj')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xe88af8e82b462d0d5ab82376075edb7e468cffb37c1119e03f725775c1366034","blockHash":"0xa07e99042efc5b59fe9dc5933bdbd6a0753608c40b914bde09d642dba3424c60","blockNumber":39,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//div[contains(@id,'description')]//a[contains(@href,'QmRA3NWM82ZGynMbYzAgYTSXCVM14Wx1RZ8fKP42G6gjgj')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1614398443,"level":"info","message":"new Log1 event","timestamp":"2021-02-27T04:00:44.056Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//div[contains(@id,'description')]//a[contains(@href,'QmRA3NWM82ZGynMbYzAgYTSXCVM14Wx1RZ8fKP42G6gjgj')]))","id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","proof_type":0,"context":{"name":"eth_F0E13D85AD","protocol":"eth","type":"blockchain","relative_timestamp":1614398443},"level":"debug","message":"HTTP create query content","timestamp":"2021-02-27T04:00:44.172Z"}
{"result":{"_timestamp":1614398446,"daterange":[1614398446,1614400246],"interval":3600,"id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","actions":[],"id":"c026af4a1b1b27a7214d1d74339adc650638a6abc5bba7b08ae385cbec5cee3e","version":3,"_timestamp_creation":1614398446,"context":{"protocol":"eth","relative_timestamp":1614398443,"type":"blockchain","name":"eth_F0E13D85AD"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//div[contains(@id,'description')]//a[contains(@href,'QmRA3NWM82ZGynMbYzAgYTSXCVM14Wx1RZ8fKP42G6gjgj')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-02-27T04:00:46.538Z"}
{"level":"info","message":"new HTTP query created, id: c026af4a1b1b27a7214d1d74339adc650638a6abc5bba7b08ae385cbec5cee3e","timestamp":"2021-02-27T04:00:46.539Z"}
{"level":"info","message":"checking HTTP query c026af4a1b1b27a7214d1d74339adc650638a6abc5bba7b08ae385cbec5cee3e status in 0 seconds","timestamp":"2021-02-27T04:00:46.544Z"}
{"level":"info","message":"checking HTTP query c026af4a1b1b27a7214d1d74339adc650638a6abc5bba7b08ae385cbec5cee3e status every 5 seconds...","timestamp":"2021-02-27T04:00:46.544Z"}
{"result":{"_timestamp":1614398446,"id":"c026af4a1b1b27a7214d1d74339adc650638a6abc5bba7b08ae385cbec5cee3e","daterange":[1614398446,1614400246],"_lock":false,"id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1614398446,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1614398446,"context":{"protocol":"eth","relative_timestamp":1614398443,"type":"blockchain","name":"eth_F0E13D85AD"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//div[contains(@id,'description')]//a[contains(@href,'QmRA3NWM82ZGynMbYzAgYTSXCVM14Wx1RZ8fKP42G6gjgj')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"c026af4a1b1b27a7214d1d74339adc650638a6abc5bba7b08ae385cbec5cee3e HTTP query result: ","timestamp":"2021-02-27T04:00:52.535Z"}
{"contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","level":"info","message":"sending __callback tx...","timestamp":"2021-02-27T04:00:52.537Z"}
{"myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-02-27T04:00:52.537Z"}
{"myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"info","message":"contract 0x4e71920b7330515faf5ea0c690f1ad06a85fb60c __callback tx sent, transaction hash: 0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","timestamp":"2021-02-27T04:00:57.717Z"}
{"transactionHash":"0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","transactionIndex":0,"blockHash":"0xe517510e964f5442d760d1437b6b38208b899291e12c183e28ffa4c4f48b6e66","blockNumber":40,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","blockHash":"0xe517510e964f5442d760d1437b6b38208b899291e12c183e28ffa4c4f48b6e66","blockNumber":40,"address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","data":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d5241334e574d38325a47796e4d62597a41675954535843564d3134577831525a38664b5034324736676a676a000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b724645474174545a4c7951000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb6e72f8ef5cb280f1342315208e337f571b5d88215cf0e48a7a4b3ea77f3ebe4","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000000000002000000000000012000000000000000004000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000400000000000000000000000001000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0xaa690aa3949ca4cac8543f452e0d98c1452cd914c75f61bbcf3a47d5293b5a70","s":"0x39f4ca8148ac0f5d2356e1cf0c0cb0b4f15bf0d1cc48d189f31e4791b5ea155a","level":"debug","message":"update query content: { myid:\n '0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x4e71920b7330515faf5ea0c690f1ad06a85fb60c',\n gas_limit: 120000,\n gas_price: 10000000000 }","timestamp":"2021-02-27T04:00:57.719Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-03-13T11:41:48.253Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-03-13T11:41:48.256Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-03-13T11:41:48.256Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-03-13T11:41:48.257Z"}
{"level":"info","message":"using active mode","timestamp":"2021-03-13T11:41:48.257Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-03-13T11:41:48.257Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1615635339,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":5.3e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008319},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-03-13T11:41:51.235Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-03-13T11:41:51.580Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-03-13T11:41:51.946Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-03-13T11:41:52.046Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-03-13T11:42:02.413Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-03-13T11:42:02.413Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-03-13T11:42:02.511Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-03-13T11:42:23.514Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-03-13T11:42:23.514Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-03-13T11:42:23.514Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-03-13T11:42:34.427Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-03-13T11:42:34.427Z"}
{"context_name":"eth_2624456EC6","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":5.3e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-03-13T11:42:34.427Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210313T194234.json","timestamp":"2021-03-13T11:42:34.432Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-03-13T11:42:34.433Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-03-13T11:42:34.434Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-03-13T11:42:34.437Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-03-13T11:42:34.437Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-03-13T16:34:08.055Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-03-13T16:34:08.058Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-03-13T16:34:08.058Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-03-13T16:34:08.058Z"}
{"level":"info","message":"using active mode","timestamp":"2021-03-13T16:34:08.059Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-03-13T16:34:08.059Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1615653023,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":5.3e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008292},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-03-13T16:34:08.951Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-03-13T16:34:09.226Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-03-13T16:34:09.558Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-03-13T16:34:09.646Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-03-13T16:34:19.976Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-03-13T16:34:19.976Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-03-13T16:34:20.063Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-03-13T16:34:40.987Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-03-13T16:34:40.987Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-03-13T16:34:40.987Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-03-13T16:34:51.898Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-03-13T16:34:51.898Z"}
{"context_name":"eth_6A3C83A1BD","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":5.3e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-03-13T16:34:51.898Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210314T003451.json","timestamp":"2021-03-13T16:34:51.903Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-03-13T16:34:51.904Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-03-13T16:34:51.905Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-03-13T16:34:51.908Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-03-13T16:34:51.908Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-03-13T16:47:38.454Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-03-13T16:47:38.457Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-03-13T16:47:38.458Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-03-13T16:47:38.458Z"}
{"level":"info","message":"using active mode","timestamp":"2021-03-13T16:47:38.458Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-03-13T16:47:38.459Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1615654056,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":5.3e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008278},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-03-13T16:47:39.828Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-03-13T16:47:40.087Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-03-13T16:47:40.399Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-03-13T16:47:40.494Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-03-13T16:47:50.820Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-03-13T16:47:50.821Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-03-13T16:47:50.899Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-03-13T16:48:11.800Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-03-13T16:48:11.800Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-03-13T16:48:11.800Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-03-13T16:48:22.649Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-03-13T16:48:22.649Z"}
{"context_name":"eth_FE4A873F5D","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":5.3e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-03-13T16:48:22.649Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210314T004822.json","timestamp":"2021-03-13T16:48:22.654Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-03-13T16:48:22.656Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-03-13T16:48:22.657Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-03-13T16:48:22.659Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-03-13T16:48:22.659Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-03-13T17:07:50.821Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-03-13T17:07:50.827Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-03-13T17:07:50.827Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-03-13T17:07:50.828Z"}
{"level":"info","message":"using active mode","timestamp":"2021-03-13T17:07:50.828Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-03-13T17:07:50.828Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1615655218,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":5.3e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008285},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-03-13T17:07:51.651Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-03-13T17:07:51.924Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-03-13T17:07:52.248Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-03-13T17:07:52.327Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-03-13T17:08:02.663Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-03-13T17:08:02.663Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-03-13T17:08:02.754Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-03-13T17:08:23.774Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-03-13T17:08:23.774Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-03-13T17:08:23.774Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-03-13T17:08:34.704Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-03-13T17:08:34.704Z"}
{"context_name":"eth_9FDC08425B","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":5.3e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-03-13T17:08:34.704Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210314T010834.json","timestamp":"2021-03-13T17:08:34.711Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-03-13T17:08:34.713Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-03-13T17:08:34.715Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-03-13T17:08:34.718Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-03-13T17:08:34.719Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-03-13T17:28:32.496Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-03-13T17:28:32.500Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-03-13T17:28:32.501Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-03-13T17:28:32.501Z"}
{"level":"info","message":"using active mode","timestamp":"2021-03-13T17:28:32.501Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-03-13T17:28:32.502Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1615656380,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":5.3e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008292},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-03-13T17:28:33.279Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-03-13T17:28:33.540Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-03-13T17:28:33.853Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-03-13T17:28:33.938Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-03-13T17:28:44.259Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-03-13T17:28:44.259Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-03-13T17:28:44.346Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-03-13T17:29:05.341Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-03-13T17:29:05.341Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-03-13T17:29:05.341Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-03-13T17:29:16.220Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-03-13T17:29:16.221Z"}
{"context_name":"eth_3A38179B7E","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":5.3e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-03-13T17:29:16.221Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210314T012916.json","timestamp":"2021-03-13T17:29:16.225Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-03-13T17:29:16.226Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-03-13T17:29:16.227Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-03-13T17:29:16.230Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-03-13T17:29:16.230Z"}
{"parsed_log":{"contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","contract_myid":"0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x92c0f4e4cc397ed349265d8effd27225e539859e97777f0f150032d4c3edf7c1","blockHash":"0x4f5005a623a51860af9c898bab15aaad9c2985e261fe8db690cb02324cf57f45","blockNumber":41,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","cid":"0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1615656648,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-03-13T17:30:48.653Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-03-13T17:30:48.661Z"}
{"parsed_log":{"contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","contract_myid":"0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x92c0f4e4cc397ed349265d8effd27225e539859e97777f0f150032d4c3edf7c1","blockHash":"0x4f5005a623a51860af9c898bab15aaad9c2985e261fe8db690cb02324cf57f45","blockNumber":41,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","cid":"0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1615656648,"level":"info","message":"new Log1 event","timestamp":"2021-03-13T17:30:48.662Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","id2":"cb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","proof_type":0,"context":{"name":"eth_3A38179B7E","protocol":"eth","type":"blockchain","relative_timestamp":1615656648},"level":"debug","message":"HTTP create query content","timestamp":"2021-03-13T17:30:48.740Z"}
{"result":{"_timestamp":1615656649,"daterange":[1615656649,1615658449],"interval":3600,"id2":"cb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","actions":[],"id":"31ad6efc14a923f6b0c0812da0eccd24f9f40e2c72f3f0b7e25d56179a45e9c0","version":3,"_timestamp_creation":1615656649,"context":{"protocol":"eth","relative_timestamp":1615656648,"type":"blockchain","name":"eth_3A38179B7E"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-03-13T17:30:49.625Z"}
{"level":"info","message":"new HTTP query created, id: 31ad6efc14a923f6b0c0812da0eccd24f9f40e2c72f3f0b7e25d56179a45e9c0","timestamp":"2021-03-13T17:30:49.626Z"}
{"level":"info","message":"checking HTTP query 31ad6efc14a923f6b0c0812da0eccd24f9f40e2c72f3f0b7e25d56179a45e9c0 status in 0 seconds","timestamp":"2021-03-13T17:30:49.631Z"}
{"level":"info","message":"checking HTTP query 31ad6efc14a923f6b0c0812da0eccd24f9f40e2c72f3f0b7e25d56179a45e9c0 status every 5 seconds...","timestamp":"2021-03-13T17:30:49.631Z"}
{"result":{"_timestamp":1615656650,"id":"31ad6efc14a923f6b0c0812da0eccd24f9f40e2c72f3f0b7e25d56179a45e9c0","daterange":[1615656649,1615658449],"_lock":false,"id2":"cb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1615656650,"results":["1.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1615656649,"context":{"protocol":"eth","relative_timestamp":1615656648,"type":"blockchain","name":"eth_3A38179B7E"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"31ad6efc14a923f6b0c0812da0eccd24f9f40e2c72f3f0b7e25d56179a45e9c0 HTTP query result: ","timestamp":"2021-03-13T17:30:55.601Z"}
{"contract_myid":"0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","level":"info","message":"sending __callback tx...","timestamp":"2021-03-13T17:30:55.603Z"}
{"myid":"0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","result":"1.0","proof":null,"proof_type":"0x00","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-03-13T17:30:55.603Z"}
{"parsed_log":{"contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","contract_myid":"0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xc83941c9092384d07f00bad503fef12c0c64c352235d031e986e723b726debe4","blockHash":"0xf7a5e575800d9cadb245d9b05317c48e830ac98aece601bd81446e02fa3ec90b","blockNumber":43,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","cid":"0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1615656655,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-03-13T17:30:56.130Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-03-13T17:30:56.131Z"}
{"parsed_log":{"contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","contract_myid":"0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xc83941c9092384d07f00bad503fef12c0c64c352235d031e986e723b726debe4","blockHash":"0xf7a5e575800d9cadb245d9b05317c48e830ac98aece601bd81446e02fa3ec90b","blockNumber":43,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","cid":"0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1615656655,"level":"info","message":"new Log1 event","timestamp":"2021-03-13T17:30:56.132Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","id2":"d94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","proof_type":0,"context":{"name":"eth_3A38179B7E","protocol":"eth","type":"blockchain","relative_timestamp":1615656655},"level":"debug","message":"HTTP create query content","timestamp":"2021-03-13T17:30:56.213Z"}
{"result":{"_timestamp":1615656656,"daterange":[1615656656,1615658456],"interval":3600,"id2":"d94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","actions":[],"id":"ab278911b15c68256a1079e419caa2f011585cc495384d0e091de35d2deddc71","version":3,"_timestamp_creation":1615656656,"context":{"protocol":"eth","relative_timestamp":1615656655,"type":"blockchain","name":"eth_3A38179B7E"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-03-13T17:30:56.932Z"}
{"level":"info","message":"new HTTP query created, id: ab278911b15c68256a1079e419caa2f011585cc495384d0e091de35d2deddc71","timestamp":"2021-03-13T17:30:56.932Z"}
{"level":"info","message":"checking HTTP query ab278911b15c68256a1079e419caa2f011585cc495384d0e091de35d2deddc71 status in 0 seconds","timestamp":"2021-03-13T17:30:56.934Z"}
{"level":"info","message":"checking HTTP query ab278911b15c68256a1079e419caa2f011585cc495384d0e091de35d2deddc71 status every 5 seconds...","timestamp":"2021-03-13T17:30:56.934Z"}
{"myid":"0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce","result":"1.0","proof":null,"proof_type":"0x00","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xd54b47f8e6a1b97f3a84f63c867286272b273b7c __callback tx sent, transaction hash: 0xc4e42b025d4391b511ea8b23df2c0e5435aae27ba7d86e0039e6100f4b3e7b4f","timestamp":"2021-03-13T17:31:00.768Z"}
{"transactionHash":"0xc4e42b025d4391b511ea8b23df2c0e5435aae27ba7d86e0039e6100f4b3e7b4f","transactionIndex":0,"blockHash":"0xdbfb690068d4f5b26fb93442753033af2f6a409b91093057a942b56a66da7000","blockNumber":42,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gasUsed":80105,"cumulativeGasUsed":80105,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0xc4e42b025d4391b511ea8b23df2c0e5435aae27ba7d86e0039e6100f4b3e7b4f","blockHash":"0xdbfb690068d4f5b26fb93442753033af2f6a409b91093057a942b56a66da7000","blockNumber":42,"address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","data":"0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78446a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb0cd8dfc5086d1e5908e19db8bea908c0b692544bab97f09629b053bb7ca0729","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000100000000000000000000020000000000000010000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000002000200800000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0x17ab0ae781f15822896228c3779733e8e7184e8216188998727b783bb3494818","s":"0x2808b4762127f89305dd8762793d3507f5edc5bc714a6b60c12812a53b865ae2","level":"debug","message":"update query content: { myid:\n '0xcb281059db75bb7cca3859e9559936a47727c8de00e9ed2958dfdf8f5ff62dce',\n result: '1.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xd54b47f8e6a1b97f3a84f63c867286272b273b7c',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-03-13T17:31:00.771Z"}
{"result":{"_timestamp":1615656657,"id":"ab278911b15c68256a1079e419caa2f011585cc495384d0e091de35d2deddc71","daterange":[1615656656,1615658456],"_lock":false,"id2":"d94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1615656657,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1615656656,"context":{"protocol":"eth","relative_timestamp":1615656655,"type":"blockchain","name":"eth_3A38179B7E"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"ab278911b15c68256a1079e419caa2f011585cc495384d0e091de35d2deddc71 HTTP query result: ","timestamp":"2021-03-13T17:31:02.641Z"}
{"contract_myid":"0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","level":"info","message":"sending __callback tx...","timestamp":"2021-03-13T17:31:02.642Z"}
{"myid":"0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-03-13T17:31:02.642Z"}
{"parsed_log":{"contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","contract_myid":"0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x016cb7f08286aff58263892d8325ffdc02ec1d2813fdadb2617ad0b32c008074","blockHash":"0x68912e86484f3c7fedf9e7fdd8c404b0458a3b5eadee2c2da28d7ac0f9427ffa","blockNumber":45,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","cid":"0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1615656662,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-03-13T17:31:03.149Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-03-13T17:31:03.151Z"}
{"parsed_log":{"contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","contract_myid":"0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x016cb7f08286aff58263892d8325ffdc02ec1d2813fdadb2617ad0b32c008074","blockHash":"0x68912e86484f3c7fedf9e7fdd8c404b0458a3b5eadee2c2da28d7ac0f9427ffa","blockNumber":45,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","cid":"0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1615656662,"level":"info","message":"new Log1 event","timestamp":"2021-03-13T17:31:03.152Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","id2":"84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","proof_type":0,"context":{"name":"eth_3A38179B7E","protocol":"eth","type":"blockchain","relative_timestamp":1615656662},"level":"debug","message":"HTTP create query content","timestamp":"2021-03-13T17:31:03.237Z"}
{"result":{"_timestamp":1615656664,"daterange":[1615656664,1615658464],"interval":3600,"id2":"84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","actions":[],"id":"078c6d587f8ae1c671a13676d4c0bfd788741ce1329c433103ec6ac41f1c7b3c","version":3,"_timestamp_creation":1615656664,"context":{"protocol":"eth","relative_timestamp":1615656662,"type":"blockchain","name":"eth_3A38179B7E"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-03-13T17:31:04.199Z"}
{"level":"info","message":"new HTTP query created, id: 078c6d587f8ae1c671a13676d4c0bfd788741ce1329c433103ec6ac41f1c7b3c","timestamp":"2021-03-13T17:31:04.200Z"}
{"level":"info","message":"checking HTTP query 078c6d587f8ae1c671a13676d4c0bfd788741ce1329c433103ec6ac41f1c7b3c status in 0 seconds","timestamp":"2021-03-13T17:31:04.201Z"}
{"level":"info","message":"checking HTTP query 078c6d587f8ae1c671a13676d4c0bfd788741ce1329c433103ec6ac41f1c7b3c status every 5 seconds...","timestamp":"2021-03-13T17:31:04.201Z"}
{"myid":"0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xd54b47f8e6a1b97f3a84f63c867286272b273b7c __callback tx sent, transaction hash: 0xca0ce00ce0ffac588391c8747926a20c456eac2abb68544786e067472929f9bd","timestamp":"2021-03-13T17:31:07.783Z"}
{"transactionHash":"0xca0ce00ce0ffac588391c8747926a20c456eac2abb68544786e067472929f9bd","transactionIndex":0,"blockHash":"0xcca053285e2ba52fcab6ac0e46148d5d9dbbe40f4213d6c27d15347a581baabd","blockNumber":44,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0xca0ce00ce0ffac588391c8747926a20c456eac2abb68544786e067472929f9bd","blockHash":"0xcca053285e2ba52fcab6ac0e46148d5d9dbbe40f4213d6c27d15347a581baabd","blockNumber":44,"address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","data":"0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78644a39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b33414e4c42635577697a67000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xf8feb74a62c3130bf6af474c131b62efa22d5742cf99f6ea65d7c293735edb2d","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000020000000008000000000000000000000000000000002000200000000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000200000000000100000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0x2ee843c48e57700dd6a8a1287773c973d562eb4eb813b7f9db33debac70f3458","s":"0x3aae7547bac80600e94931f41554c5dffaf95826e0be980d7ba95afdec045842","level":"debug","message":"update query content: { myid:\n '0xd94d508416fd93f181e4cb7fbb86c524a9bb6de713eee25242fc21bcf96bc2c5',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xd54b47f8e6a1b97f3a84f63c867286272b273b7c',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-03-13T17:31:07.784Z"}
{"result":{"_timestamp":1615656664,"id":"078c6d587f8ae1c671a13676d4c0bfd788741ce1329c433103ec6ac41f1c7b3c","daterange":[1615656664,1615658464],"_lock":false,"id2":"84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1615656664,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1615656664,"context":{"protocol":"eth","relative_timestamp":1615656662,"type":"blockchain","name":"eth_3A38179B7E"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"078c6d587f8ae1c671a13676d4c0bfd788741ce1329c433103ec6ac41f1c7b3c HTTP query result: ","timestamp":"2021-03-13T17:31:09.912Z"}
{"contract_myid":"0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","level":"info","message":"sending __callback tx...","timestamp":"2021-03-13T17:31:09.912Z"}
{"myid":"0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-03-13T17:31:09.913Z"}
{"parsed_log":{"contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","contract_myid":"0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x0c6f2f1b75a31c5c9c83a894ae22c5fb1ee260dea585d2d7e398e8e52ec4ac48","blockHash":"0x47f646b73745485eb98e5f3db8fb9a4e5cbb08ac19acdb2c4a683362b5a30530","blockNumber":48,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","cid":"0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1615656670,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-03-13T17:31:10.603Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-03-13T17:31:10.605Z"}
{"parsed_log":{"contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","contract_myid":"0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x0c6f2f1b75a31c5c9c83a894ae22c5fb1ee260dea585d2d7e398e8e52ec4ac48","blockHash":"0x47f646b73745485eb98e5f3db8fb9a4e5cbb08ac19acdb2c4a683362b5a30530","blockNumber":48,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","cid":"0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1615656670,"level":"info","message":"new Log1 event","timestamp":"2021-03-13T17:31:10.606Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","id2":"895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","proof_type":0,"context":{"name":"eth_3A38179B7E","protocol":"eth","type":"blockchain","relative_timestamp":1615656670},"level":"debug","message":"HTTP create query content","timestamp":"2021-03-13T17:31:10.693Z"}
{"result":{"_timestamp":1615656671,"daterange":[1615656671,1615658471],"interval":3600,"id2":"895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","actions":[],"id":"945d25821305b63eabb23efbc0a0e4fda7b68497d4f6c1310555a3abdb181832","version":3,"_timestamp_creation":1615656671,"context":{"protocol":"eth","relative_timestamp":1615656670,"type":"blockchain","name":"eth_3A38179B7E"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-03-13T17:31:11.626Z"}
{"level":"info","message":"new HTTP query created, id: 945d25821305b63eabb23efbc0a0e4fda7b68497d4f6c1310555a3abdb181832","timestamp":"2021-03-13T17:31:11.627Z"}
{"level":"info","message":"checking HTTP query 945d25821305b63eabb23efbc0a0e4fda7b68497d4f6c1310555a3abdb181832 status in 0 seconds","timestamp":"2021-03-13T17:31:11.628Z"}
{"level":"info","message":"checking HTTP query 945d25821305b63eabb23efbc0a0e4fda7b68497d4f6c1310555a3abdb181832 status every 5 seconds...","timestamp":"2021-03-13T17:31:11.628Z"}
{"myid":"0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xd54b47f8e6a1b97f3a84f63c867286272b273b7c __callback tx sent, transaction hash: 0x566617505a35cac8d7f4f6f1ccb8293a1329e6fed69f6bfa4dface5a53a9b278","timestamp":"2021-03-13T17:31:15.050Z"}
{"transactionHash":"0x566617505a35cac8d7f4f6f1ccb8293a1329e6fed69f6bfa4dface5a53a9b278","transactionIndex":0,"blockHash":"0x8cec7dfba8556650761cc1db25dbcb554fc84d8530ecf5e18b2e4e7e5ca1864e","blockNumber":46,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x566617505a35cac8d7f4f6f1ccb8293a1329e6fed69f6bfa4dface5a53a9b278","blockHash":"0x8cec7dfba8556650761cc1db25dbcb554fc84d8530ecf5e18b2e4e7e5ca1864e","blockNumber":46,"address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","data":"0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78644a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xad6065aa8fd38c96f7f2842a8dd5c6bbed2b6f2e3ab31da7f6dd86d701c771e6","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000010000000000000000000000000000000000000000000020000000000000001000100000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000002000200000400000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0x449047a063c0c7761bd219a7b2f481a9b0f180daf38d2e987212a79bbce3d286","s":"0x34288a47cbc8dbd908df645d3953c0c85c9ed38c88f49bbbba638e4b9c03c2ad","level":"debug","message":"update query content: { myid:\n '0x84e70371a838469e6e312157b6f9342135fe512811055f7457510566bb55d6bb',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xd54b47f8e6a1b97f3a84f63c867286272b273b7c',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-03-13T17:31:15.050Z"}
{"result":{"_timestamp":1615656672,"id":"945d25821305b63eabb23efbc0a0e4fda7b68497d4f6c1310555a3abdb181832","daterange":[1615656671,1615658471],"_lock":false,"id2":"895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1615656672,"results":["1.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1615656671,"context":{"protocol":"eth","relative_timestamp":1615656670,"type":"blockchain","name":"eth_3A38179B7E"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"945d25821305b63eabb23efbc0a0e4fda7b68497d4f6c1310555a3abdb181832 HTTP query result: ","timestamp":"2021-03-13T17:31:17.656Z"}
{"contract_myid":"0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","level":"info","message":"sending __callback tx...","timestamp":"2021-03-13T17:31:17.656Z"}
{"myid":"0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","result":"1.0","proof":null,"proof_type":"0x00","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-03-13T17:31:17.656Z"}
{"myid":"0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919","result":"1.0","proof":null,"proof_type":"0x00","contract_address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xd54b47f8e6a1b97f3a84f63c867286272b273b7c __callback tx sent, transaction hash: 0xd6993aab65e554fa9acde38dd5f7e189a93b18f6d8b55511e91cbe63303c5992","timestamp":"2021-03-13T17:31:22.825Z"}
{"transactionHash":"0xd6993aab65e554fa9acde38dd5f7e189a93b18f6d8b55511e91cbe63303c5992","transactionIndex":0,"blockHash":"0x3c5a5108f956d1028eba0a8a3cfc1252450d192d686f12e4c276310e4f5f7978","blockNumber":49,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","gasUsed":65169,"cumulativeGasUsed":65169,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0xd6993aab65e554fa9acde38dd5f7e189a93b18f6d8b55511e91cbe63303c5992","blockHash":"0x3c5a5108f956d1028eba0a8a3cfc1252450d192d686f12e4c276310e4f5f7978","blockNumber":49,"address":"0xd54b47f8e6a1b97f3a84f63c867286272b273b7c","data":"0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78446a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb0cd8dfc5086d1e5908e19db8bea908c0b692544bab97f09629b053bb7ca0729","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000100000000000000000000020000000000000010000000000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000002000200800000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0xf605c5ecc551835083fe27fecc82080c03b99c57abda952fcd4388feaf3a6f8f","s":"0x2f2fb6f3f6543ab96b861cfd84a0d2437c6ac5e10a222e148c82c9fea13b1587","level":"debug","message":"update query content: { myid:\n '0x895aeab3fcf430d727101c7bcfd016a1f5ac18340522d07359405850813fc919',\n result: '1.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xd54b47f8e6a1b97f3a84f63c867286272b273b7c',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-03-13T17:31:22.826Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-03-13T18:14:03.044Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-03-13T18:14:03.047Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-03-13T18:14:03.047Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-03-13T18:14:03.047Z"}
{"level":"info","message":"using active mode","timestamp":"2021-03-13T18:14:03.048Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-03-13T18:14:03.048Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1615659090,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":5.2e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008278},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-03-13T18:14:04.229Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-03-13T18:14:04.499Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-03-13T18:14:04.865Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-03-13T18:14:04.953Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-03-13T18:14:15.287Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-03-13T18:14:15.287Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-03-13T18:14:15.372Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-03-13T18:14:36.306Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-03-13T18:14:36.306Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-03-13T18:14:36.306Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-03-13T18:14:47.255Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-03-13T18:14:47.255Z"}
{"context_name":"eth_BAFD5E0913","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":5.2e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-03-13T18:14:47.255Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210314T021447.json","timestamp":"2021-03-13T18:14:47.259Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-03-13T18:14:47.261Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-03-13T18:14:47.262Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-03-13T18:14:47.264Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-03-13T18:14:47.264Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-03-29T10:34:12.664Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-03-29T10:34:12.666Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-03-29T10:34:12.667Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-03-29T10:34:12.667Z"}
{"level":"info","message":"using active mode","timestamp":"2021-03-29T10:34:12.668Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-03-29T10:34:12.668Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1617013805,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":5.7e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008489},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-03-29T10:34:13.959Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-03-29T10:34:14.220Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-03-29T10:34:14.563Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-03-29T10:34:14.646Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-03-29T10:34:24.966Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-03-29T10:34:24.966Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-03-29T10:34:25.062Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-03-29T10:34:46.130Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-03-29T10:34:46.130Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-03-29T10:34:46.130Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-03-29T10:34:57.066Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-03-29T10:34:57.066Z"}
{"context_name":"eth_5A2C6566E9","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":5.7e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-03-29T10:34:57.067Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210329T183457.json","timestamp":"2021-03-29T10:34:57.071Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-03-29T10:34:57.073Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-03-29T10:34:57.074Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-03-29T10:34:57.076Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-03-29T10:34:57.077Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-04-09T14:34:12.373Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-04-09T14:34:12.376Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-04-09T14:34:12.376Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-04-09T14:34:12.376Z"}
{"level":"info","message":"using active mode","timestamp":"2021-04-09T14:34:12.377Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-04-09T14:34:12.377Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1617978716,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":4.9e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008425},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-04-09T14:34:15.183Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-04-09T14:34:15.449Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-04-09T14:34:15.770Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-04-09T14:34:15.849Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-04-09T14:34:26.195Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-04-09T14:34:26.196Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-04-09T14:34:26.284Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-04-09T14:34:47.221Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-04-09T14:34:47.221Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-04-09T14:34:47.222Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-04-09T14:34:58.061Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-04-09T14:34:58.061Z"}
{"context_name":"eth_98E6E265B1","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":4.9e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-04-09T14:34:58.061Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210409T223458.json","timestamp":"2021-04-09T14:34:58.067Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-04-09T14:34:58.069Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-04-09T14:34:58.071Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-04-09T14:34:58.074Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-04-09T14:34:58.074Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-04-09T15:37:51.974Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-04-09T15:37:51.979Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-04-09T15:37:51.979Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-04-09T15:37:51.979Z"}
{"level":"info","message":"using active mode","timestamp":"2021-04-09T15:37:51.980Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-04-09T15:37:51.980Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1617982509,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":4.9e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008425},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-04-09T15:37:53.037Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-04-09T15:37:53.326Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-04-09T15:37:53.672Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-04-09T15:37:53.759Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-04-09T15:38:04.120Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-04-09T15:38:04.120Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-04-09T15:38:04.210Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-04-09T15:38:25.186Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-04-09T15:38:25.186Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-04-09T15:38:25.186Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-04-09T15:38:36.108Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-04-09T15:38:36.108Z"}
{"context_name":"eth_D1C128C80D","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":4.9e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-04-09T15:38:36.108Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210409T233836.json","timestamp":"2021-04-09T15:38:36.113Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-04-09T15:38:36.114Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-04-09T15:38:36.116Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-04-09T15:38:36.120Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-04-09T15:38:36.120Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-04-12T08:49:19.806Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-04-12T08:49:19.809Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-04-12T08:49:19.810Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-04-12T08:49:19.810Z"}
{"level":"info","message":"using active mode","timestamp":"2021-04-12T08:49:19.811Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-04-12T08:49:19.811Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1618216666,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":4.6e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008418},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-04-12T08:49:23.253Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-04-12T08:49:23.629Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-04-12T08:49:24.092Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-04-12T08:49:24.202Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-04-12T08:49:34.595Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-04-12T08:49:34.596Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-04-12T08:49:34.699Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-04-12T08:49:56.256Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-04-12T08:49:56.256Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-04-12T08:49:56.257Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-04-12T08:50:07.344Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-04-12T08:50:07.344Z"}
{"context_name":"eth_F8A95DB60A","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":4.6e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-04-12T08:50:07.344Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210412T165007.json","timestamp":"2021-04-12T08:50:07.348Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-04-12T08:50:07.350Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-04-12T08:50:07.351Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-04-12T08:50:07.354Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-04-12T08:50:07.354Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x0882c78b662197d6cfcee896d4249d222a9040d7c8ca8216d58747e9e4c36947","blockHash":"0xde690c5aba8a0285aa802199df6ee1920f119712757af717d2110a5746fead63","blockNumber":39,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1618220091,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-12T09:34:51.708Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-12T09:34:51.719Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x0882c78b662197d6cfcee896d4249d222a9040d7c8ca8216d58747e9e4c36947","blockHash":"0xde690c5aba8a0285aa802199df6ee1920f119712757af717d2110a5746fead63","blockNumber":39,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1618220091,"level":"info","message":"new Log1 event","timestamp":"2021-04-12T09:34:51.720Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","proof_type":0,"context":{"name":"eth_F8A95DB60A","protocol":"eth","type":"blockchain","relative_timestamp":1618220091},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-12T09:34:51.815Z"}
{"result":{"_timestamp":1618220092,"daterange":[1618220092,1618221892],"interval":3600,"id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","actions":[],"id":"75625b0167b7439109d6932b2bd6854872fbb15487af3366304fc9b07dfd2651","version":3,"_timestamp_creation":1618220092,"context":{"protocol":"eth","relative_timestamp":1618220091,"type":"blockchain","name":"eth_F8A95DB60A"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-12T09:34:52.654Z"}
{"level":"info","message":"new HTTP query created, id: 75625b0167b7439109d6932b2bd6854872fbb15487af3366304fc9b07dfd2651","timestamp":"2021-04-12T09:34:52.655Z"}
{"level":"info","message":"checking HTTP query 75625b0167b7439109d6932b2bd6854872fbb15487af3366304fc9b07dfd2651 status in 0 seconds","timestamp":"2021-04-12T09:34:52.658Z"}
{"level":"info","message":"checking HTTP query 75625b0167b7439109d6932b2bd6854872fbb15487af3366304fc9b07dfd2651 status every 5 seconds...","timestamp":"2021-04-12T09:34:52.658Z"}
{"result":{"_timestamp":1618220093,"id":"75625b0167b7439109d6932b2bd6854872fbb15487af3366304fc9b07dfd2651","daterange":[1618220092,1618221892],"_lock":false,"id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618220093,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618220092,"context":{"protocol":"eth","relative_timestamp":1618220091,"type":"blockchain","name":"eth_F8A95DB60A"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"75625b0167b7439109d6932b2bd6854872fbb15487af3366304fc9b07dfd2651 HTTP query result: ","timestamp":"2021-04-12T09:34:58.358Z"}
{"contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","level":"info","message":"sending __callback tx...","timestamp":"2021-04-12T09:34:58.359Z"}
{"myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-12T09:34:58.360Z"}
{"myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"info","message":"contract 0x4e71920b7330515faf5ea0c690f1ad06a85fb60c __callback tx sent, transaction hash: 0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","timestamp":"2021-04-12T09:35:03.515Z"}
{"transactionHash":"0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","transactionIndex":0,"blockHash":"0x064990692dbf6569adf00c6ff78fa9f2c33b2dfc7793741ce9c64c4babd5bd76","blockNumber":40,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","blockHash":"0x064990692dbf6569adf00c6ff78fa9f2c33b2dfc7793741ce9c64c4babd5bd76","blockNumber":40,"address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","data":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65366a4a523835576b715a6f514b6f37756a334641466d6d354e3465676453726f694152475357676a4e6b68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b724645474174545a4c7951000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0x5032df4164203203aa57c9e4c81708f4c4f3e87855ddf7a393a2e18c87ab5b29","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000040100002000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000400000000000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0xaa690aa3949ca4cac8543f452e0d98c1452cd914c75f61bbcf3a47d5293b5a70","s":"0x39f4ca8148ac0f5d2356e1cf0c0cb0b4f15bf0d1cc48d189f31e4791b5ea155a","level":"debug","message":"update query content: { myid:\n '0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x4e71920b7330515faf5ea0c690f1ad06a85fb60c',\n gas_limit: 120000,\n gas_price: 10000000000 }","timestamp":"2021-04-12T09:35:03.517Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x357bce6d39a6d7db0977268987d797cabbaed8760722c42c27d08e6e49908461","blockHash":"0x4d182edfd89d830429b624bce166082cfa8872adb688004fd33040aed3c07e93","blockNumber":41,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1618220442,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-12T09:40:42.938Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-12T09:40:42.941Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x357bce6d39a6d7db0977268987d797cabbaed8760722c42c27d08e6e49908461","blockHash":"0x4d182edfd89d830429b624bce166082cfa8872adb688004fd33040aed3c07e93","blockNumber":41,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1618220442,"level":"info","message":"new Log1 event","timestamp":"2021-04-12T09:40:42.942Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","id2":"f73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","proof_type":0,"context":{"name":"eth_F8A95DB60A","protocol":"eth","type":"blockchain","relative_timestamp":1618220442},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-12T09:40:43.032Z"}
{"result":{"_timestamp":1618220443,"daterange":[1618220443,1618222243],"interval":3600,"id2":"f73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","actions":[],"id":"5d05f7be7a14a392ace2a45db4880ec8b1e06803032592e7ab73cfe382184955","version":3,"_timestamp_creation":1618220443,"context":{"protocol":"eth","relative_timestamp":1618220442,"type":"blockchain","name":"eth_F8A95DB60A"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-12T09:40:43.864Z"}
{"level":"info","message":"new HTTP query created, id: 5d05f7be7a14a392ace2a45db4880ec8b1e06803032592e7ab73cfe382184955","timestamp":"2021-04-12T09:40:43.865Z"}
{"level":"info","message":"checking HTTP query 5d05f7be7a14a392ace2a45db4880ec8b1e06803032592e7ab73cfe382184955 status in 0 seconds","timestamp":"2021-04-12T09:40:43.866Z"}
{"level":"info","message":"checking HTTP query 5d05f7be7a14a392ace2a45db4880ec8b1e06803032592e7ab73cfe382184955 status every 5 seconds...","timestamp":"2021-04-12T09:40:43.866Z"}
{"result":{"_timestamp":1618220444,"id":"5d05f7be7a14a392ace2a45db4880ec8b1e06803032592e7ab73cfe382184955","daterange":[1618220443,1618222243],"_lock":false,"id2":"f73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618220444,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618220443,"context":{"protocol":"eth","relative_timestamp":1618220442,"type":"blockchain","name":"eth_F8A95DB60A"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"5d05f7be7a14a392ace2a45db4880ec8b1e06803032592e7ab73cfe382184955 HTTP query result: ","timestamp":"2021-04-12T09:40:49.604Z"}
{"contract_myid":"0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","level":"info","message":"sending __callback tx...","timestamp":"2021-04-12T09:40:49.605Z"}
{"myid":"0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-12T09:40:49.605Z"}
{"myid":"0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"info","message":"contract 0x4e71920b7330515faf5ea0c690f1ad06a85fb60c __callback tx sent, transaction hash: 0x110c6ac078bb5cef5dc867424db48e8395a45b739d003da4cc668fb1634419aa","timestamp":"2021-04-12T09:40:54.769Z"}
{"transactionHash":"0x110c6ac078bb5cef5dc867424db48e8395a45b739d003da4cc668fb1634419aa","transactionIndex":0,"blockHash":"0x17a5160dd57f0cfa5112a91677c1bce8d8879399d809d5d5d12079caf913e3b8","blockNumber":42,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x110c6ac078bb5cef5dc867424db48e8395a45b739d003da4cc668fb1634419aa","blockHash":"0x17a5160dd57f0cfa5112a91677c1bce8d8879399d809d5d5d12079caf913e3b8","blockNumber":42,"address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","data":"0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65366a4a523835576b715a6f514b6f37756a334641466d6d354e3465676453726f694152475357676a4e6b68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b724645474174545a4c7951000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0x5032df4164203203aa57c9e4c81708f4c4f3e87855ddf7a393a2e18c87ab5b29","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000040100002000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000400000000000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1b","r":"0xfd9cf30b865e553a3fc6da4e624ec4ce664b32aa14a0bf10048bad07a99cead9","s":"0x02b5251b9c126f7acde1cdab3faf48ab1a5c2bf36c457b85531a6ba2214d9e7b","level":"debug","message":"update query content: { myid:\n '0xf73c58a61e86f8867c2ec5e50517433549b610d7914ef930764598dea116c394',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x4e71920b7330515faf5ea0c690f1ad06a85fb60c',\n gas_limit: 120000,\n gas_price: 10000000000 }","timestamp":"2021-04-12T09:40:54.769Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-04-12T09:42:23.275Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-04-12T09:42:23.277Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-04-12T09:42:23.278Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-04-12T09:42:23.278Z"}
{"level":"info","message":"using active mode","timestamp":"2021-04-12T09:42:23.278Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-04-12T09:42:23.278Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1618220266,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":4.6e-7,"USD":0.001,"BTC":2e-8,"EUR":0.000841},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-04-12T09:42:24.217Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-04-12T09:42:24.480Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-04-12T09:42:24.807Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-04-12T09:42:24.904Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-04-12T09:42:35.244Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-04-12T09:42:35.244Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-04-12T09:42:35.334Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-04-12T09:42:56.299Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-04-12T09:42:56.299Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-04-12T09:42:56.299Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-04-12T09:43:07.200Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-04-12T09:43:07.200Z"}
{"context_name":"eth_35596A6738","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":4.6e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-04-12T09:43:07.200Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210412T174307.json","timestamp":"2021-04-12T09:43:07.204Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-04-12T09:43:07.205Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-04-12T09:43:07.206Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-04-12T09:43:07.210Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-04-12T09:43:07.210Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-04-12T10:35:43.788Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-04-12T10:35:43.791Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-04-12T10:35:43.791Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-04-12T10:35:43.791Z"}
{"level":"info","message":"using active mode","timestamp":"2021-04-12T10:35:43.792Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-04-12T10:35:43.792Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1618223515,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":4.7e-7,"USD":0.001,"BTC":2e-8,"EUR":0.000841},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-04-12T10:35:44.827Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-04-12T10:35:45.070Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-04-12T10:35:45.387Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-04-12T10:35:45.472Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-04-12T10:35:55.814Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-04-12T10:35:55.815Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-04-12T10:35:55.894Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-04-12T10:36:16.868Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-04-12T10:36:16.868Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-04-12T10:36:16.869Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-04-12T10:36:27.758Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-04-12T10:36:27.758Z"}
{"context_name":"eth_A642FEEA70","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":4.7e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-04-12T10:36:27.758Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210412T183627.json","timestamp":"2021-04-12T10:36:27.762Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-04-12T10:36:27.763Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-04-12T10:36:27.764Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-04-12T10:36:27.767Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-04-12T10:36:27.767Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x36655d73944db0e71664beb1d80f5cdf6eaaac25d1e0f9ffd6ae92a8338f7154","blockHash":"0x7ca1c69b7b400a92441d9dbee62b6c3b68ead8f415ac46bc5106877b77c2a547","blockNumber":69,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618223858,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-12T10:37:39.027Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-12T10:37:39.038Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x36655d73944db0e71664beb1d80f5cdf6eaaac25d1e0f9ffd6ae92a8338f7154","blockHash":"0x7ca1c69b7b400a92441d9dbee62b6c3b68ead8f415ac46bc5106877b77c2a547","blockNumber":69,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618223858,"level":"info","message":"new Log1 event","timestamp":"2021-04-12T10:37:39.039Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","id2":"4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","proof_type":0,"context":{"name":"eth_A642FEEA70","protocol":"eth","type":"blockchain","relative_timestamp":1618223858},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-12T10:37:39.119Z"}
{"result":{"_timestamp":1618223859,"daterange":[1618223859,1618225659],"interval":3600,"id2":"4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","actions":[],"id":"f40a8019ab866fd8bbb5fb7772159d05d0230262c1bf2f262fefdab7e5ce59e6","version":3,"_timestamp_creation":1618223859,"context":{"protocol":"eth","relative_timestamp":1618223858,"type":"blockchain","name":"eth_A642FEEA70"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-12T10:37:39.976Z"}
{"level":"info","message":"new HTTP query created, id: f40a8019ab866fd8bbb5fb7772159d05d0230262c1bf2f262fefdab7e5ce59e6","timestamp":"2021-04-12T10:37:39.977Z"}
{"level":"info","message":"checking HTTP query f40a8019ab866fd8bbb5fb7772159d05d0230262c1bf2f262fefdab7e5ce59e6 status in 0 seconds","timestamp":"2021-04-12T10:37:39.982Z"}
{"level":"info","message":"checking HTTP query f40a8019ab866fd8bbb5fb7772159d05d0230262c1bf2f262fefdab7e5ce59e6 status every 5 seconds...","timestamp":"2021-04-12T10:37:39.982Z"}
{"result":{"_timestamp":1618223860,"id":"f40a8019ab866fd8bbb5fb7772159d05d0230262c1bf2f262fefdab7e5ce59e6","daterange":[1618223859,1618225659],"_lock":false,"id2":"4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618223860,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618223859,"context":{"protocol":"eth","relative_timestamp":1618223858,"type":"blockchain","name":"eth_A642FEEA70"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"f40a8019ab866fd8bbb5fb7772159d05d0230262c1bf2f262fefdab7e5ce59e6 HTTP query result: ","timestamp":"2021-04-12T10:37:45.729Z"}
{"contract_myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","level":"info","message":"sending __callback tx...","timestamp":"2021-04-12T10:37:45.731Z"}
{"myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-12T10:37:45.731Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xd12869952f907f96231aae65c9a0a4159a6878afd32b06937152c66f67dc6c7c","blockHash":"0xc4c94b0b6db61b040bfc3293d6d9264ec94ec2bedb5a6299221d248ed0d4b1f6","blockNumber":71,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618223867,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-12T10:37:47.530Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-12T10:37:47.533Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xd12869952f907f96231aae65c9a0a4159a6878afd32b06937152c66f67dc6c7c","blockHash":"0xc4c94b0b6db61b040bfc3293d6d9264ec94ec2bedb5a6299221d248ed0d4b1f6","blockNumber":71,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618223867,"level":"info","message":"new Log1 event","timestamp":"2021-04-12T10:37:47.533Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","id2":"e5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","proof_type":0,"context":{"name":"eth_A642FEEA70","protocol":"eth","type":"blockchain","relative_timestamp":1618223867},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-12T10:37:47.622Z"}
{"result":{"_timestamp":1618223868,"daterange":[1618223868,1618225668],"interval":3600,"id2":"e5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","actions":[],"id":"d3d96ac6a8098f4561511bb5cb999d706af5fc39f57b3c10f669c76c78f312da","version":3,"_timestamp_creation":1618223868,"context":{"protocol":"eth","relative_timestamp":1618223867,"type":"blockchain","name":"eth_A642FEEA70"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-12T10:37:48.412Z"}
{"level":"info","message":"new HTTP query created, id: d3d96ac6a8098f4561511bb5cb999d706af5fc39f57b3c10f669c76c78f312da","timestamp":"2021-04-12T10:37:48.413Z"}
{"level":"info","message":"checking HTTP query d3d96ac6a8098f4561511bb5cb999d706af5fc39f57b3c10f669c76c78f312da status in 0 seconds","timestamp":"2021-04-12T10:37:48.415Z"}
{"level":"info","message":"checking HTTP query d3d96ac6a8098f4561511bb5cb999d706af5fc39f57b3c10f669c76c78f312da status every 5 seconds...","timestamp":"2021-04-12T10:37:48.415Z"}
{"myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xbbe595df857805ab3734f15be990f9a30cbb89f3 __callback tx sent, transaction hash: 0x58389d8abea346bc2b60d1e2a6a5069c63233366bce411f1c449331a2723ede9","timestamp":"2021-04-12T10:37:50.883Z"}
{"transactionHash":"0x58389d8abea346bc2b60d1e2a6a5069c63233366bce411f1c449331a2723ede9","transactionIndex":0,"blockHash":"0x7a8a3a0ebdafd22ccbb90e18869a530b025afb57ab14bb88bb320fd82ae26d7e","blockNumber":70,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x58389d8abea346bc2b60d1e2a6a5069c63233366bce411f1c449331a2723ede9","blockHash":"0x7a8a3a0ebdafd22ccbb90e18869a530b025afb57ab14bb88bb320fd82ae26d7e","blockNumber":70,"address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","data":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78446a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb0cd8dfc5086d1e5908e19db8bea908c0b692544bab97f09629b053bb7ca0729","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000100000000000000000000020000000000000010000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000800000000000000200000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000","v":"0x1b","r":"0x67e9aafb892eb15983c0f4c509a9490ab0b20084d850ac6fda33f19b5347017e","s":"0x14f4ae017c996d6b972cf1b7bf67eeeb81a42e19035a1b6eceb0979d17252d0a","level":"debug","message":"update query content: { myid:\n '0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xbbe595df857805ab3734f15be990f9a30cbb89f3',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-04-12T10:37:50.885Z"}
{"result":{"_timestamp":1618223868,"id":"d3d96ac6a8098f4561511bb5cb999d706af5fc39f57b3c10f669c76c78f312da","daterange":[1618223868,1618225668],"_lock":false,"id2":"e5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618223868,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618223868,"context":{"protocol":"eth","relative_timestamp":1618223867,"type":"blockchain","name":"eth_A642FEEA70"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"d3d96ac6a8098f4561511bb5cb999d706af5fc39f57b3c10f669c76c78f312da HTTP query result: ","timestamp":"2021-04-12T10:37:55.171Z"}
{"contract_myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","level":"info","message":"sending __callback tx...","timestamp":"2021-04-12T10:37:55.171Z"}
{"myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-12T10:37:55.171Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x2c24da47e5159e7ccb0edbeadbf69ab63926e0c83ef7f9c23bc00d82a623824b","blockHash":"0xe1e1adc05d2cc7534cab37ad70ecd0a3053c804404647850485aeacd2084102c","blockNumber":73,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618223875,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-12T10:37:55.735Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-12T10:37:55.738Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x2c24da47e5159e7ccb0edbeadbf69ab63926e0c83ef7f9c23bc00d82a623824b","blockHash":"0xe1e1adc05d2cc7534cab37ad70ecd0a3053c804404647850485aeacd2084102c","blockNumber":73,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618223875,"level":"info","message":"new Log1 event","timestamp":"2021-04-12T10:37:55.738Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","id2":"d015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","proof_type":0,"context":{"name":"eth_A642FEEA70","protocol":"eth","type":"blockchain","relative_timestamp":1618223875},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-12T10:37:55.816Z"}
{"result":{"_timestamp":1618223876,"daterange":[1618223876,1618225676],"interval":3600,"id2":"d015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","actions":[],"id":"85fa26f935a6103342c0d93d43adf72626b0239a02c7c7d9a6a18e3955b51f86","version":3,"_timestamp_creation":1618223876,"context":{"protocol":"eth","relative_timestamp":1618223875,"type":"blockchain","name":"eth_A642FEEA70"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-12T10:37:56.603Z"}
{"level":"info","message":"new HTTP query created, id: 85fa26f935a6103342c0d93d43adf72626b0239a02c7c7d9a6a18e3955b51f86","timestamp":"2021-04-12T10:37:56.603Z"}
{"level":"info","message":"checking HTTP query 85fa26f935a6103342c0d93d43adf72626b0239a02c7c7d9a6a18e3955b51f86 status in 0 seconds","timestamp":"2021-04-12T10:37:56.605Z"}
{"level":"info","message":"checking HTTP query 85fa26f935a6103342c0d93d43adf72626b0239a02c7c7d9a6a18e3955b51f86 status every 5 seconds...","timestamp":"2021-04-12T10:37:56.606Z"}
{"myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xbbe595df857805ab3734f15be990f9a30cbb89f3 __callback tx sent, transaction hash: 0x343e03200e1bff9097de62c0b7a562422cbf6dbeaf02044082a3e2d3920c1b80","timestamp":"2021-04-12T10:38:00.295Z"}
{"transactionHash":"0x343e03200e1bff9097de62c0b7a562422cbf6dbeaf02044082a3e2d3920c1b80","transactionIndex":0,"blockHash":"0x797e613deab128cf2a940661157325616f6f5919cfdba087cbb8613ca09d55ef","blockNumber":72,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gasUsed":32544,"cumulativeGasUsed":32544,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x343e03200e1bff9097de62c0b7a562422cbf6dbeaf02044082a3e2d3920c1b80","blockHash":"0x797e613deab128cf2a940661157325616f6f5919cfdba087cbb8613ca09d55ef","blockNumber":72,"address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","data":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78644a39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b33414e4c42635577697a67000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xf8feb74a62c3130bf6af474c131b62efa22d5742cf99f6ea65d7c293735edb2d","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000001008000000000000000000000000000000000000000000000000000000200000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000200000000000100000000000000000000000000000000000000000000000000001000000000000000000000","v":"0x1b","r":"0x74e23085c848d4b91817228f33bc95e5ea3dc202d3eac632949146df451751ff","s":"0x1764063165a51f2bb76e1c004ecf3bfaf2b25cf577eda092b1205577550f1013","level":"debug","message":"update query content: { myid:\n '0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xbbe595df857805ab3734f15be990f9a30cbb89f3',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-04-12T10:38:00.295Z"}
{"result":{"_timestamp":1618223876,"id":"85fa26f935a6103342c0d93d43adf72626b0239a02c7c7d9a6a18e3955b51f86","daterange":[1618223876,1618225676],"_lock":false,"id2":"d015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618223876,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618223876,"context":{"protocol":"eth","relative_timestamp":1618223875,"type":"blockchain","name":"eth_A642FEEA70"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"85fa26f935a6103342c0d93d43adf72626b0239a02c7c7d9a6a18e3955b51f86 HTTP query result: ","timestamp":"2021-04-12T10:38:02.343Z"}
{"contract_myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","level":"info","message":"sending __callback tx...","timestamp":"2021-04-12T10:38:02.344Z"}
{"myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-12T10:38:02.344Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x31ffc6bb72b51fc706ca57306e87695095d4d6bcce1dcf1e672f8f24584f69d3","blockHash":"0x05bbbd3ec4a07ad8b93a92650df20fd3a7fd33d37e7407b066477b6ab76de06d","blockNumber":76,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618223882,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-12T10:38:03.067Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-12T10:38:03.070Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x31ffc6bb72b51fc706ca57306e87695095d4d6bcce1dcf1e672f8f24584f69d3","blockHash":"0x05bbbd3ec4a07ad8b93a92650df20fd3a7fd33d37e7407b066477b6ab76de06d","blockNumber":76,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618223882,"level":"info","message":"new Log1 event","timestamp":"2021-04-12T10:38:03.071Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","id2":"1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","proof_type":0,"context":{"name":"eth_A642FEEA70","protocol":"eth","type":"blockchain","relative_timestamp":1618223882},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-12T10:38:03.168Z"}
{"result":{"_timestamp":1618223883,"daterange":[1618223883,1618225683],"interval":3600,"id2":"1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","actions":[],"id":"d22721585114471598c6beb620c8ae4d8a91cf395a49bdb421b50e46305d4d47","version":3,"_timestamp_creation":1618223883,"context":{"protocol":"eth","relative_timestamp":1618223882,"type":"blockchain","name":"eth_A642FEEA70"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-12T10:38:03.874Z"}
{"level":"info","message":"new HTTP query created, id: d22721585114471598c6beb620c8ae4d8a91cf395a49bdb421b50e46305d4d47","timestamp":"2021-04-12T10:38:03.874Z"}
{"level":"info","message":"checking HTTP query d22721585114471598c6beb620c8ae4d8a91cf395a49bdb421b50e46305d4d47 status in 0 seconds","timestamp":"2021-04-12T10:38:03.875Z"}
{"level":"info","message":"checking HTTP query d22721585114471598c6beb620c8ae4d8a91cf395a49bdb421b50e46305d4d47 status every 5 seconds...","timestamp":"2021-04-12T10:38:03.875Z"}
{"myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xbbe595df857805ab3734f15be990f9a30cbb89f3 __callback tx sent, transaction hash: 0x316cdd8f9f222433e0233c6db13d6ceaa4ee849468f64218c5f3f74d6efaca47","timestamp":"2021-04-12T10:38:07.501Z"}
{"transactionHash":"0x316cdd8f9f222433e0233c6db13d6ceaa4ee849468f64218c5f3f74d6efaca47","transactionIndex":0,"blockHash":"0x82d616a7a1ad12acb8c2722021669a3796492c94dd15a4a8097516c520770173","blockNumber":74,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x316cdd8f9f222433e0233c6db13d6ceaa4ee849468f64218c5f3f74d6efaca47","blockHash":"0x82d616a7a1ad12acb8c2722021669a3796492c94dd15a4a8097516c520770173","blockNumber":74,"address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","data":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78644a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xad6065aa8fd38c96f7f2842a8dd5c6bbed2b6f2e3ab31da7f6dd86d701c771e6","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000010000000000000000000000000000000000000000000020000000000000001000100000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000400000000000200000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000","v":"0x1b","r":"0x74d50445009ea32212f8a69add5699ee38882fea76a8f22fad16d2fab26bf652","s":"0x611ef9aec2797c4ad3df43d13710fc4e815be1a106ec89347d034ee3d43cd021","level":"debug","message":"update query content: { myid:\n '0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xbbe595df857805ab3734f15be990f9a30cbb89f3',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-04-12T10:38:07.501Z"}
{"result":{"_timestamp":1618223884,"id":"d22721585114471598c6beb620c8ae4d8a91cf395a49bdb421b50e46305d4d47","daterange":[1618223883,1618225683],"_lock":false,"id2":"1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618223884,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618223883,"context":{"protocol":"eth","relative_timestamp":1618223882,"type":"blockchain","name":"eth_A642FEEA70"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"d22721585114471598c6beb620c8ae4d8a91cf395a49bdb421b50e46305d4d47 HTTP query result: ","timestamp":"2021-04-12T10:38:11.775Z"}
{"contract_myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","level":"info","message":"sending __callback tx...","timestamp":"2021-04-12T10:38:11.776Z"}
{"myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-12T10:38:11.776Z"}
{"myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xbbe595df857805ab3734f15be990f9a30cbb89f3 __callback tx sent, transaction hash: 0xc9c806f191093b9e211824b617716ef68bdb3b17e3b8881a6fd6baf8195385b3","timestamp":"2021-04-12T10:38:16.917Z"}
{"transactionHash":"0xc9c806f191093b9e211824b617716ef68bdb3b17e3b8881a6fd6baf8195385b3","transactionIndex":0,"blockHash":"0x0893cc1a9130a6618f56ed3f7d7792f61b133b32c6acace57d2412c6e0dd7b7d","blockNumber":77,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gasUsed":32544,"cumulativeGasUsed":32544,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0xc9c806f191093b9e211824b617716ef68bdb3b17e3b8881a6fd6baf8195385b3","blockHash":"0x0893cc1a9130a6618f56ed3f7d7792f61b133b32c6acace57d2412c6e0dd7b7d","blockNumber":77,"address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","data":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78446a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb0cd8dfc5086d1e5908e19db8bea908c0b692544bab97f09629b053bb7ca0729","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000100000000000000000000020000000000000010000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000800000000000000200000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000","v":"0x1c","r":"0x2e613092ff02b21c11770bea87196cb2b7bf6a48791a4f089d4bac416579d7af","s":"0x062da40c92cdd0cd5841a0aebe35d47efe93861aee7bbaae0416b132057d79a0","level":"debug","message":"update query content: { myid:\n '0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xbbe595df857805ab3734f15be990f9a30cbb89f3',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-04-12T10:38:16.918Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'QmR3L6bCzrFzD5YdSeD3rovhAZrGL2wHPxTbydYiWcwBXY')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xcd46bc4d210157f145de6e4b7719a246c44d5fbe64c1196ede92b2321ae72351","blockHash":"0x27b95ff5b3c301d23cf1720c4f4a06496354cb295d3e13865e7c34e98ccdcefe","blockNumber":82,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'QmR3L6bCzrFzD5YdSeD3rovhAZrGL2wHPxTbydYiWcwBXY')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1618295092,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-13T06:24:52.837Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-13T06:24:52.840Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'QmR3L6bCzrFzD5YdSeD3rovhAZrGL2wHPxTbydYiWcwBXY')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xcd46bc4d210157f145de6e4b7719a246c44d5fbe64c1196ede92b2321ae72351","blockHash":"0x27b95ff5b3c301d23cf1720c4f4a06496354cb295d3e13865e7c34e98ccdcefe","blockNumber":82,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'QmR3L6bCzrFzD5YdSeD3rovhAZrGL2wHPxTbydYiWcwBXY')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1618295092,"level":"info","message":"new Log1 event","timestamp":"2021-04-13T06:24:52.840Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'QmR3L6bCzrFzD5YdSeD3rovhAZrGL2wHPxTbydYiWcwBXY')]))","id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","proof_type":0,"context":{"name":"eth_A642FEEA70","protocol":"eth","type":"blockchain","relative_timestamp":1618295092},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-13T06:24:52.933Z"}
{"result":{"_timestamp":1618295094,"daterange":[1618295094,1618296894],"interval":3600,"id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","actions":[],"id":"867d69164a3005eb030d32e9647b72cba509552d9f5eef0f30e1e37a6f6f6bac","version":3,"_timestamp_creation":1618295094,"context":{"protocol":"eth","relative_timestamp":1618295092,"type":"blockchain","name":"eth_A642FEEA70"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'QmR3L6bCzrFzD5YdSeD3rovhAZrGL2wHPxTbydYiWcwBXY')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-13T06:24:54.884Z"}
{"level":"info","message":"new HTTP query created, id: 867d69164a3005eb030d32e9647b72cba509552d9f5eef0f30e1e37a6f6f6bac","timestamp":"2021-04-13T06:24:54.884Z"}
{"level":"info","message":"checking HTTP query 867d69164a3005eb030d32e9647b72cba509552d9f5eef0f30e1e37a6f6f6bac status in 0 seconds","timestamp":"2021-04-13T06:24:54.887Z"}
{"level":"info","message":"checking HTTP query 867d69164a3005eb030d32e9647b72cba509552d9f5eef0f30e1e37a6f6f6bac status every 5 seconds...","timestamp":"2021-04-13T06:24:54.887Z"}
{"result":{"_timestamp":1618295094,"id":"867d69164a3005eb030d32e9647b72cba509552d9f5eef0f30e1e37a6f6f6bac","daterange":[1618295094,1618296894],"_lock":false,"id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618295094,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618295094,"context":{"protocol":"eth","relative_timestamp":1618295092,"type":"blockchain","name":"eth_A642FEEA70"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'QmR3L6bCzrFzD5YdSeD3rovhAZrGL2wHPxTbydYiWcwBXY')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"867d69164a3005eb030d32e9647b72cba509552d9f5eef0f30e1e37a6f6f6bac HTTP query result: ","timestamp":"2021-04-13T06:25:00.574Z"}
{"contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","level":"info","message":"sending __callback tx...","timestamp":"2021-04-13T06:25:00.575Z"}
{"myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-13T06:25:00.575Z"}
{"myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"info","message":"contract 0x4e71920b7330515faf5ea0c690f1ad06a85fb60c __callback tx sent, transaction hash: 0x244377a7e223b43c17c08451eae308d5b92c89264fb57898542a0ace8f45974d","timestamp":"2021-04-13T06:25:05.745Z"}
{"transactionHash":"0x244377a7e223b43c17c08451eae308d5b92c89264fb57898542a0ace8f45974d","transactionIndex":0,"blockHash":"0x2d9a9a36015c540e573a25d0576944365bf839ea5a1af0653d928a234a18174d","blockNumber":83,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x244377a7e223b43c17c08451eae308d5b92c89264fb57898542a0ace8f45974d","blockHash":"0x2d9a9a36015c540e573a25d0576944365bf839ea5a1af0653d928a234a18174d","blockNumber":83,"address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","data":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d52334c3662437a72467a4435596453654433726f7668415a72474c3277485078546279645969576377425859000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b724645474174545a4c7951000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0x115cf917fd97de1a5a896ae3cb2f6f17241841c83a6a7eeb1fde8ade46fd658f","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000000001000100000000000000000000002000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000001000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0x9b4cb703dc38aa2cd73b785770548e2c6744eb0e5a5fe90d7ae54de5d5c48153","s":"0x7dac5a6d1134a85372a833c35682af3ba7b00fa1800dd807c5e99906f2068eb6","level":"debug","message":"update query content: { myid:\n '0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x4e71920b7330515faf5ea0c690f1ad06a85fb60c',\n gas_limit: 120000,\n gas_price: 10000000000 }","timestamp":"2021-04-13T06:25:05.745Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-04-15T09:34:19.196Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-04-15T09:34:19.199Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-04-15T09:34:19.199Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-04-15T09:34:19.199Z"}
{"level":"info","message":"using active mode","timestamp":"2021-04-15T09:34:19.200Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-04-15T09:34:19.200Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1618479115,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":4.1e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008354},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-04-15T09:34:20.051Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-04-15T09:34:20.312Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-04-15T09:34:20.643Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-04-15T09:34:20.729Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-04-15T09:34:31.086Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-04-15T09:34:31.086Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-04-15T09:34:31.185Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-04-15T09:34:52.179Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-04-15T09:34:52.179Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-04-15T09:34:52.179Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-04-15T09:35:03.045Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-04-15T09:35:03.045Z"}
{"context_name":"eth_F42AB969B7","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":4.1e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-04-15T09:35:03.045Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210415T173503.json","timestamp":"2021-04-15T09:35:03.050Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-04-15T09:35:03.051Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-04-15T09:35:03.052Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-04-15T09:35:03.055Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-04-15T09:35:03.055Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x5f421863b433ee0cb6f5c8caf73894f7f3bd3f75ac65b4f40d48a8eca55d1709","blockHash":"0x9ad9823a60a86ac443815b79aa028e1241ef58d939e19b2caa65e29a0d060746","blockNumber":69,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618479358,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-15T09:35:58.564Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-15T09:35:58.579Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x5f421863b433ee0cb6f5c8caf73894f7f3bd3f75ac65b4f40d48a8eca55d1709","blockHash":"0x9ad9823a60a86ac443815b79aa028e1241ef58d939e19b2caa65e29a0d060746","blockNumber":69,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618479358,"level":"info","message":"new Log1 event","timestamp":"2021-04-15T09:35:58.579Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","id2":"4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","proof_type":0,"context":{"name":"eth_F42AB969B7","protocol":"eth","type":"blockchain","relative_timestamp":1618479358},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-15T09:35:58.665Z"}
{"result":{"_timestamp":1618479359,"daterange":[1618479359,1618481159],"interval":3600,"id2":"4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","actions":[],"id":"41ae349860c38f1cb77da94549cf4cbda0473a8fa2e57a388b3fbba0c80d3e39","version":3,"_timestamp_creation":1618479359,"context":{"protocol":"eth","relative_timestamp":1618479358,"type":"blockchain","name":"eth_F42AB969B7"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-15T09:35:59.345Z"}
{"level":"info","message":"new HTTP query created, id: 41ae349860c38f1cb77da94549cf4cbda0473a8fa2e57a388b3fbba0c80d3e39","timestamp":"2021-04-15T09:35:59.346Z"}
{"level":"info","message":"checking HTTP query 41ae349860c38f1cb77da94549cf4cbda0473a8fa2e57a388b3fbba0c80d3e39 status in 0 seconds","timestamp":"2021-04-15T09:35:59.350Z"}
{"level":"info","message":"checking HTTP query 41ae349860c38f1cb77da94549cf4cbda0473a8fa2e57a388b3fbba0c80d3e39 status every 5 seconds...","timestamp":"2021-04-15T09:35:59.351Z"}
{"result":{"_timestamp":1618479359,"id":"41ae349860c38f1cb77da94549cf4cbda0473a8fa2e57a388b3fbba0c80d3e39","daterange":[1618479359,1618481159],"_lock":false,"id2":"4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618479359,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618479359,"context":{"protocol":"eth","relative_timestamp":1618479358,"type":"blockchain","name":"eth_F42AB969B7"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"41ae349860c38f1cb77da94549cf4cbda0473a8fa2e57a388b3fbba0c80d3e39 HTTP query result: ","timestamp":"2021-04-15T09:36:05.047Z"}
{"contract_myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","level":"info","message":"sending __callback tx...","timestamp":"2021-04-15T09:36:05.049Z"}
{"myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-15T09:36:05.049Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x75d8b8e0ed7a5c9b44f89a7896066ce21dd4672e9d2b0d666d523bf1c059e69b","blockHash":"0xda18fddbcb4b389781726005b74a9e2ed4314f555b788fe21c709797b2145ccf","blockNumber":71,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618479366,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-15T09:36:06.849Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-15T09:36:06.852Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x75d8b8e0ed7a5c9b44f89a7896066ce21dd4672e9d2b0d666d523bf1c059e69b","blockHash":"0xda18fddbcb4b389781726005b74a9e2ed4314f555b788fe21c709797b2145ccf","blockNumber":71,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618479366,"level":"info","message":"new Log1 event","timestamp":"2021-04-15T09:36:06.852Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","id2":"e5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","proof_type":0,"context":{"name":"eth_F42AB969B7","protocol":"eth","type":"blockchain","relative_timestamp":1618479366},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-15T09:36:06.983Z"}
{"result":{"_timestamp":1618479367,"daterange":[1618479367,1618481167],"interval":3600,"id2":"e5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","actions":[],"id":"536ee495c95eff3de2ec174ead2f0b0f6399f8da4ec4275083dedcda65d1f486","version":3,"_timestamp_creation":1618479367,"context":{"protocol":"eth","relative_timestamp":1618479366,"type":"blockchain","name":"eth_F42AB969B7"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-15T09:36:07.973Z"}
{"level":"info","message":"new HTTP query created, id: 536ee495c95eff3de2ec174ead2f0b0f6399f8da4ec4275083dedcda65d1f486","timestamp":"2021-04-15T09:36:07.974Z"}
{"level":"info","message":"checking HTTP query 536ee495c95eff3de2ec174ead2f0b0f6399f8da4ec4275083dedcda65d1f486 status in 0 seconds","timestamp":"2021-04-15T09:36:07.975Z"}
{"level":"info","message":"checking HTTP query 536ee495c95eff3de2ec174ead2f0b0f6399f8da4ec4275083dedcda65d1f486 status every 5 seconds...","timestamp":"2021-04-15T09:36:07.976Z"}
{"myid":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xbbe595df857805ab3734f15be990f9a30cbb89f3 __callback tx sent, transaction hash: 0x58389d8abea346bc2b60d1e2a6a5069c63233366bce411f1c449331a2723ede9","timestamp":"2021-04-15T09:36:10.194Z"}
{"transactionHash":"0x58389d8abea346bc2b60d1e2a6a5069c63233366bce411f1c449331a2723ede9","transactionIndex":0,"blockHash":"0x07444cda296654944196ad3c32856e408cbfaf52700f02f0cc63495137860e8d","blockNumber":70,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x58389d8abea346bc2b60d1e2a6a5069c63233366bce411f1c449331a2723ede9","blockHash":"0x07444cda296654944196ad3c32856e408cbfaf52700f02f0cc63495137860e8d","blockNumber":70,"address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","data":"0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78446a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb0cd8dfc5086d1e5908e19db8bea908c0b692544bab97f09629b053bb7ca0729","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000100000000000000000000020000000000000010000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000800000000000000200000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000","v":"0x1b","r":"0x67e9aafb892eb15983c0f4c509a9490ab0b20084d850ac6fda33f19b5347017e","s":"0x14f4ae017c996d6b972cf1b7bf67eeeb81a42e19035a1b6eceb0979d17252d0a","level":"debug","message":"update query content: { myid:\n '0x4cfe65e2ab79abee638545652942d2b5b0776944eb521bcfb15f753c23d0d89b',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xbbe595df857805ab3734f15be990f9a30cbb89f3',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-04-15T09:36:10.196Z"}
{"result":{"_timestamp":1618479368,"id":"536ee495c95eff3de2ec174ead2f0b0f6399f8da4ec4275083dedcda65d1f486","daterange":[1618479367,1618481167],"_lock":false,"id2":"e5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618479368,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618479367,"context":{"protocol":"eth","relative_timestamp":1618479366,"type":"blockchain","name":"eth_F42AB969B7"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"536ee495c95eff3de2ec174ead2f0b0f6399f8da4ec4275083dedcda65d1f486 HTTP query result: ","timestamp":"2021-04-15T09:36:13.912Z"}
{"contract_myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","level":"info","message":"sending __callback tx...","timestamp":"2021-04-15T09:36:13.913Z"}
{"myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-15T09:36:13.913Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xe6be3ef3b58c726b09d2ae0454e5fcef80d1cea8a770894cf4939e18806caaa3","blockHash":"0x036027242dbcba849c49418e10a6a3d7646d98d5a458ed80f956b792f8190515","blockNumber":73,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618479373,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-15T09:36:14.415Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-15T09:36:14.420Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xe6be3ef3b58c726b09d2ae0454e5fcef80d1cea8a770894cf4939e18806caaa3","blockHash":"0x036027242dbcba849c49418e10a6a3d7646d98d5a458ed80f956b792f8190515","blockNumber":73,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618479373,"level":"info","message":"new Log1 event","timestamp":"2021-04-15T09:36:14.420Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","id2":"d015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","proof_type":0,"context":{"name":"eth_F42AB969B7","protocol":"eth","type":"blockchain","relative_timestamp":1618479373},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-15T09:36:14.515Z"}
{"result":{"_timestamp":1618479375,"daterange":[1618479375,1618481175],"interval":3600,"id2":"d015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","actions":[],"id":"898e6aaca045892e9ed2c8461d9d495a22f5961d87cc925f2b6f734192da16ff","version":3,"_timestamp_creation":1618479375,"context":{"protocol":"eth","relative_timestamp":1618479373,"type":"blockchain","name":"eth_F42AB969B7"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-15T09:36:15.348Z"}
{"level":"info","message":"new HTTP query created, id: 898e6aaca045892e9ed2c8461d9d495a22f5961d87cc925f2b6f734192da16ff","timestamp":"2021-04-15T09:36:15.349Z"}
{"level":"info","message":"checking HTTP query 898e6aaca045892e9ed2c8461d9d495a22f5961d87cc925f2b6f734192da16ff status in 0 seconds","timestamp":"2021-04-15T09:36:15.350Z"}
{"level":"info","message":"checking HTTP query 898e6aaca045892e9ed2c8461d9d495a22f5961d87cc925f2b6f734192da16ff status every 5 seconds...","timestamp":"2021-04-15T09:36:15.350Z"}
{"myid":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xbbe595df857805ab3734f15be990f9a30cbb89f3 __callback tx sent, transaction hash: 0x343e03200e1bff9097de62c0b7a562422cbf6dbeaf02044082a3e2d3920c1b80","timestamp":"2021-04-15T09:36:19.056Z"}
{"transactionHash":"0x343e03200e1bff9097de62c0b7a562422cbf6dbeaf02044082a3e2d3920c1b80","transactionIndex":0,"blockHash":"0xe6c1456cc4344857dab88a4d6ebd845f808230e4bc40abd1e112f63754ad82e7","blockNumber":72,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gasUsed":32544,"cumulativeGasUsed":32544,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x343e03200e1bff9097de62c0b7a562422cbf6dbeaf02044082a3e2d3920c1b80","blockHash":"0xe6c1456cc4344857dab88a4d6ebd845f808230e4bc40abd1e112f63754ad82e7","blockNumber":72,"address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","data":"0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78644a39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b33414e4c42635577697a67000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xf8feb74a62c3130bf6af474c131b62efa22d5742cf99f6ea65d7c293735edb2d","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000001008000000000000000000000000000000000000000000000000000000200000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000200000000000100000000000000000000000000000000000000000000000000001000000000000000000000","v":"0x1b","r":"0x74e23085c848d4b91817228f33bc95e5ea3dc202d3eac632949146df451751ff","s":"0x1764063165a51f2bb76e1c004ecf3bfaf2b25cf577eda092b1205577550f1013","level":"debug","message":"update query content: { myid:\n '0xe5048315fb80256e8ec1127814fe3f83a83ab7dbe99b300018db0ed19cfd2ab4',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xbbe595df857805ab3734f15be990f9a30cbb89f3',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-04-15T09:36:19.057Z"}
{"result":{"_timestamp":1618479375,"id":"898e6aaca045892e9ed2c8461d9d495a22f5961d87cc925f2b6f734192da16ff","daterange":[1618479375,1618481175],"_lock":false,"id2":"d015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618479375,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618479375,"context":{"protocol":"eth","relative_timestamp":1618479373,"type":"blockchain","name":"eth_F42AB969B7"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"898e6aaca045892e9ed2c8461d9d495a22f5961d87cc925f2b6f734192da16ff HTTP query result: ","timestamp":"2021-04-15T09:36:21.081Z"}
{"contract_myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","level":"info","message":"sending __callback tx...","timestamp":"2021-04-15T09:36:21.082Z"}
{"myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-15T09:36:21.083Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x6a5eafbaa16298e36bc5d24d949016c15e774194f69dbeccf359fd4058cc6cb1","blockHash":"0x363aca049f556c70ad391fd1baed525c467697ee3616aca47debf9bdb555f8fd","blockNumber":76,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618479381,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-04-15T09:36:21.727Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-04-15T09:36:21.731Z"}
{"parsed_log":{"contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","contract_myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x6a5eafbaa16298e36bc5d24d949016c15e774194f69dbeccf359fd4058cc6cb1","blockHash":"0x363aca049f556c70ad391fd1baed525c467697ee3616aca47debf9bdb555f8fd","blockNumber":76,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","cid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1618479381,"level":"info","message":"new Log1 event","timestamp":"2021-04-15T09:36:21.731Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","id2":"1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","proof_type":0,"context":{"name":"eth_F42AB969B7","protocol":"eth","type":"blockchain","relative_timestamp":1618479381},"level":"debug","message":"HTTP create query content","timestamp":"2021-04-15T09:36:21.828Z"}
{"result":{"_timestamp":1618479382,"daterange":[1618479382,1618481182],"interval":3600,"id2":"1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","actions":[],"id":"22750ebbe15261b234b5195aeb62d5d84922b197311957a854a06c8e36c13434","version":3,"_timestamp_creation":1618479382,"context":{"protocol":"eth","relative_timestamp":1618479381,"type":"blockchain","name":"eth_F42AB969B7"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-04-15T09:36:22.767Z"}
{"level":"info","message":"new HTTP query created, id: 22750ebbe15261b234b5195aeb62d5d84922b197311957a854a06c8e36c13434","timestamp":"2021-04-15T09:36:22.767Z"}
{"level":"info","message":"checking HTTP query 22750ebbe15261b234b5195aeb62d5d84922b197311957a854a06c8e36c13434 status in 0 seconds","timestamp":"2021-04-15T09:36:22.769Z"}
{"level":"info","message":"checking HTTP query 22750ebbe15261b234b5195aeb62d5d84922b197311957a854a06c8e36c13434 status every 5 seconds...","timestamp":"2021-04-15T09:36:22.769Z"}
{"myid":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xbbe595df857805ab3734f15be990f9a30cbb89f3 __callback tx sent, transaction hash: 0x316cdd8f9f222433e0233c6db13d6ceaa4ee849468f64218c5f3f74d6efaca47","timestamp":"2021-04-15T09:36:26.235Z"}
{"transactionHash":"0x316cdd8f9f222433e0233c6db13d6ceaa4ee849468f64218c5f3f74d6efaca47","transactionIndex":0,"blockHash":"0xcd68bd29e4c69cc68bb70bda1057d7b7fd6d32fcc1324b7296b5f74b7488b29f","blockNumber":74,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x316cdd8f9f222433e0233c6db13d6ceaa4ee849468f64218c5f3f74d6efaca47","blockHash":"0xcd68bd29e4c69cc68bb70bda1057d7b7fd6d32fcc1324b7296b5f74b7488b29f","blockNumber":74,"address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","data":"0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78644a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xad6065aa8fd38c96f7f2842a8dd5c6bbed2b6f2e3ab31da7f6dd86d701c771e6","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000010000000000000000000000000000000000000000000020000000000000001000100000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000400000000000200000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000","v":"0x1b","r":"0x74d50445009ea32212f8a69add5699ee38882fea76a8f22fad16d2fab26bf652","s":"0x611ef9aec2797c4ad3df43d13710fc4e815be1a106ec89347d034ee3d43cd021","level":"debug","message":"update query content: { myid:\n '0xd015c6b06081748ae9136a79506982cbc716c22f66d49164ac9044f6036987b9',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xbbe595df857805ab3734f15be990f9a30cbb89f3',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-04-15T09:36:26.235Z"}
{"result":{"_timestamp":1618479383,"id":"22750ebbe15261b234b5195aeb62d5d84922b197311957a854a06c8e36c13434","daterange":[1618479382,1618481182],"_lock":false,"id2":"1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1618479382,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1618479382,"context":{"protocol":"eth","relative_timestamp":1618479381,"type":"blockchain","name":"eth_F42AB969B7"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"22750ebbe15261b234b5195aeb62d5d84922b197311957a854a06c8e36c13434 HTTP query result: ","timestamp":"2021-04-15T09:36:28.559Z"}
{"contract_myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","level":"info","message":"sending __callback tx...","timestamp":"2021-04-15T09:36:28.560Z"}
{"myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-04-15T09:36:28.560Z"}
{"myid":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0xbbe595df857805ab3734f15be990f9a30cbb89f3 __callback tx sent, transaction hash: 0xc9c806f191093b9e211824b617716ef68bdb3b17e3b8881a6fd6baf8195385b3","timestamp":"2021-04-15T09:36:33.702Z"}
{"transactionHash":"0xc9c806f191093b9e211824b617716ef68bdb3b17e3b8881a6fd6baf8195385b3","transactionIndex":0,"blockHash":"0x9f71fe241ce4b2892e7ac28738d2423e5a241d937dc900649bc6db3105096ed2","blockNumber":77,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","gasUsed":32544,"cumulativeGasUsed":32544,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0xc9c806f191093b9e211824b617716ef68bdb3b17e3b8881a6fd6baf8195385b3","blockHash":"0x9f71fe241ce4b2892e7ac28738d2423e5a241d937dc900649bc6db3105096ed2","blockNumber":77,"address":"0xbbe595df857805ab3734f15be990f9a30cbb89f3","data":"0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78446a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb0cd8dfc5086d1e5908e19db8bea908c0b692544bab97f09629b053bb7ca0729","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000001000100000000000000000000020000000000000010000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000800000000000000200000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000001000000000000000000000","v":"0x1c","r":"0x2e613092ff02b21c11770bea87196cb2b7bf6a48791a4f089d4bac416579d7af","s":"0x062da40c92cdd0cd5841a0aebe35d47efe93861aee7bbaae0416b132057d79a0","level":"debug","message":"update query content: { myid:\n '0x1382281f51b95af300a50e9f94a76fa1484a3c8cbc7ef7b5d2e44cd619f83a38',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0xbbe595df857805ab3734f15be990f9a30cbb89f3',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-04-15T09:36:33.702Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-10T04:25:00.036Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-10T04:25:00.039Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-10T04:25:00.039Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-10T04:25:00.039Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-10T04:25:00.040Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-10T04:25:00.040Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1620618652,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.5e-7,"USD":0.001,"BTC":2e-8,"EUR":0.000823},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-10T04:25:03.646Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-10T04:25:03.925Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-10T04:25:04.298Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-10T04:25:04.396Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-10T04:25:14.745Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-10T04:25:14.745Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-10T04:25:14.834Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-10T04:25:35.806Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-10T04:25:35.806Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-10T04:25:35.807Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-10T04:25:46.676Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-10T04:25:46.676Z"}
{"context_name":"eth_72F97C6F03","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.5e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-10T04:25:46.676Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210510T122546.json","timestamp":"2021-05-10T04:25:46.682Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-10T04:25:46.684Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-10T04:25:46.685Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-10T04:25:46.689Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-10T04:25:46.689Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-10T07:52:37.781Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-10T07:52:37.785Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-10T07:52:37.785Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-10T07:52:37.785Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-10T07:52:37.786Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-10T07:52:37.786Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1620633052,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.4e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008237},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-10T07:52:38.718Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-10T07:52:38.978Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-10T07:52:39.306Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-10T07:52:39.391Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-10T07:52:49.743Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-10T07:52:49.743Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-10T07:52:49.834Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-10T07:53:10.845Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-10T07:53:10.846Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-10T07:53:10.846Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-10T07:53:21.703Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-10T07:53:21.703Z"}
{"context_name":"eth_FFFA948ABE","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.4e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-10T07:53:21.704Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210510T155321.json","timestamp":"2021-05-10T07:53:21.712Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-10T07:53:21.713Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-10T07:53:21.715Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-10T07:53:21.717Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-10T07:53:21.717Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-10T08:15:46.607Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-10T08:15:46.610Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-10T08:15:46.610Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-10T08:15:46.610Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-10T08:15:46.611Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-10T08:15:46.611Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1620633052,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.4e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008237},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-10T08:15:49.423Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-10T08:15:49.674Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-10T08:15:49.976Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-10T08:15:50.054Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-10T08:16:00.385Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-10T08:16:00.385Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-10T08:16:00.463Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-10T08:16:21.383Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-10T08:16:21.383Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-10T08:16:21.383Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-10T08:16:32.284Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-10T08:16:32.285Z"}
{"context_name":"eth_BC016248C6","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.4e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-10T08:16:32.285Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210510T161632.json","timestamp":"2021-05-10T08:16:32.290Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-10T08:16:32.292Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-10T08:16:32.293Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-10T08:16:32.295Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-10T08:16:32.295Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-10T08:22:26.144Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-10T08:22:26.147Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-10T08:22:26.147Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-10T08:22:26.147Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-10T08:22:26.148Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-10T08:22:26.148Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1620634549,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.5e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008237},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-10T08:22:28.877Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-10T08:22:29.127Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-10T08:22:29.434Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-10T08:22:29.514Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-10T08:22:39.842Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-10T08:22:39.842Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-10T08:22:39.927Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-10T08:23:00.861Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-10T08:23:00.861Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-10T08:23:00.862Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-10T08:23:11.727Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-10T08:23:11.727Z"}
{"context_name":"eth_C157BD8DB9","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.5e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-10T08:23:11.727Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210510T162311.json","timestamp":"2021-05-10T08:23:11.731Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-10T08:23:11.733Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-10T08:23:11.734Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-10T08:23:11.737Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-10T08:23:11.737Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-10T11:11:16.239Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-10T11:11:16.244Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-10T11:11:16.244Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-10T11:11:16.244Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-10T11:11:16.245Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-10T11:11:16.245Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1620643852,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.5e-7,"USD":0.001,"BTC":2e-8,"EUR":0.000823},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-10T11:11:19.485Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-10T11:11:19.739Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-10T11:11:20.046Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-10T11:11:20.127Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-10T11:11:30.468Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-10T11:11:30.469Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-10T11:11:30.547Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-10T11:11:51.480Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-10T11:11:51.480Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-10T11:11:51.480Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-10T11:12:02.386Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-10T11:12:02.386Z"}
{"context_name":"eth_31541FF296","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.5e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-10T11:12:02.386Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210510T191202.json","timestamp":"2021-05-10T11:12:02.391Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-10T11:12:02.393Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-10T11:12:02.394Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-10T11:12:02.396Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-10T11:12:02.397Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-12T08:06:00.463Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-12T08:06:00.466Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-12T08:06:00.466Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-12T08:06:00.466Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-12T08:06:00.467Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-12T08:06:00.467Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1620806066,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.3e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008244},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-12T08:06:03.423Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-12T08:06:03.691Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-12T08:06:04.018Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-12T08:06:04.099Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-12T08:06:14.442Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-12T08:06:14.442Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-12T08:06:14.528Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-12T08:06:35.492Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-12T08:06:35.492Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-12T08:06:35.492Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-12T08:06:46.410Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-12T08:06:46.410Z"}
{"context_name":"eth_4D760ABF14","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.3e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-12T08:06:46.411Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210512T160646.json","timestamp":"2021-05-12T08:06:46.416Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-12T08:06:46.417Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-12T08:06:46.419Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-12T08:06:46.422Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-12T08:06:46.422Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x924d33f71976d6db7016f1f67d42c16b418492a27d645dc855ee0e269cac9ece","blockHash":"0x340fc88bd5865f3cce369dcc56561d96fda6c43e7fba930e240c4d5ad59715e2","blockNumber":39,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1620806978,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-05-12T08:09:38.554Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-05-12T08:09:38.569Z"}
{"parsed_log":{"contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":10000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x924d33f71976d6db7016f1f67d42c16b418492a27d645dc855ee0e269cac9ece","blockHash":"0x340fc88bd5865f3cce369dcc56561d96fda6c43e7fba930e240c4d5ad59715e2","blockNumber":39,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","cid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":10,"c":[10000000000]}},"block_timestamp":1620806978,"level":"info","message":"new Log1 event","timestamp":"2021-05-12T08:09:38.570Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","proof_type":0,"context":{"name":"eth_4D760ABF14","protocol":"eth","type":"blockchain","relative_timestamp":1620806978},"level":"debug","message":"HTTP create query content","timestamp":"2021-05-12T08:09:38.663Z"}
{"result":{"_timestamp":1620806979,"daterange":[1620806979,1620808779],"interval":3600,"id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","actions":[],"id":"279adf9e845e9cac008cfd15f0b6ff5ce7393e0fed078c780086e7aeaf57d837","version":3,"_timestamp_creation":1620806979,"context":{"protocol":"eth","relative_timestamp":1620806978,"type":"blockchain","name":"eth_4D760ABF14"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-05-12T08:09:40.233Z"}
{"level":"info","message":"new HTTP query created, id: 279adf9e845e9cac008cfd15f0b6ff5ce7393e0fed078c780086e7aeaf57d837","timestamp":"2021-05-12T08:09:40.234Z"}
{"level":"info","message":"checking HTTP query 279adf9e845e9cac008cfd15f0b6ff5ce7393e0fed078c780086e7aeaf57d837 status in 0 seconds","timestamp":"2021-05-12T08:09:40.239Z"}
{"level":"info","message":"checking HTTP query 279adf9e845e9cac008cfd15f0b6ff5ce7393e0fed078c780086e7aeaf57d837 status every 5 seconds...","timestamp":"2021-05-12T08:09:40.240Z"}
{"result":{"_timestamp":1620806980,"id":"279adf9e845e9cac008cfd15f0b6ff5ce7393e0fed078c780086e7aeaf57d837","daterange":[1620806979,1620808779],"_lock":false,"id2":"7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1620806980,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1620806979,"context":{"protocol":"eth","relative_timestamp":1620806978,"type":"blockchain","name":"eth_4D760ABF14"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=rFEGAtTZLyQ).xpath(count(//meta[@name='description' and contains(@content,'Qme6jJR85WkqZoQKo7uj3FAFmm5N4egdSroiARGSWgjNkh')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"279adf9e845e9cac008cfd15f0b6ff5ce7393e0fed078c780086e7aeaf57d837 HTTP query result: ","timestamp":"2021-05-12T08:09:46.189Z"}
{"contract_myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","level":"info","message":"sending __callback tx...","timestamp":"2021-05-12T08:09:46.191Z"}
{"myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-05-12T08:09:46.192Z"}
{"myid":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gas_limit":120000,"gas_price":10000000000,"level":"info","message":"contract 0x4e71920b7330515faf5ea0c690f1ad06a85fb60c __callback tx sent, transaction hash: 0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","timestamp":"2021-05-12T08:09:51.364Z"}
{"transactionHash":"0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","transactionIndex":0,"blockHash":"0xe76f99e1b2d0a202cd574e49253ed3c959423d399cbd83250d15ded2320c0475","blockNumber":40,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x39b3586d5581d9cd959fd7a5a2a0f4ab2026ff366503e8b8185cec9b2f14617e","blockHash":"0xe76f99e1b2d0a202cd574e49253ed3c959423d399cbd83250d15ded2320c0475","blockNumber":40,"address":"0x4e71920b7330515faf5ea0c690f1ad06a85fb60c","data":"0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d65366a4a523835576b715a6f514b6f37756a334641466d6d354e3465676453726f694152475357676a4e6b68000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b724645474174545a4c7951000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0x5032df4164203203aa57c9e4c81708f4c4f3e87855ddf7a393a2e18c87ab5b29","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000100000000000000040100002000000000000012000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000800000000000000000000400000000000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0xaa690aa3949ca4cac8543f452e0d98c1452cd914c75f61bbcf3a47d5293b5a70","s":"0x39f4ca8148ac0f5d2356e1cf0c0cb0b4f15bf0d1cc48d189f31e4791b5ea155a","level":"debug","message":"update query content: { myid:\n '0x7415ecda44deae5fee50b51e55450fdc8a2236990cacd652e074a9c8929a5fd5',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x4e71920b7330515faf5ea0c690f1ad06a85fb60c',\n gas_limit: 120000,\n gas_price: 10000000000 }","timestamp":"2021-05-12T08:09:51.366Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-12T13:36:39.046Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-12T13:36:39.048Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-12T13:36:39.048Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-12T13:36:39.049Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-12T13:36:39.049Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-12T13:36:39.049Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1620824066,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.3e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008251},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-12T13:36:41.979Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-12T13:36:42.266Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-12T13:36:42.621Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-12T13:36:42.711Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-12T13:36:53.058Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-12T13:36:53.058Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-12T13:36:53.141Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-12T13:37:14.080Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-12T13:37:14.081Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-12T13:37:14.081Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-12T13:37:24.978Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-12T13:37:24.978Z"}
{"context_name":"eth_03C7249922","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.3e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-12T13:37:24.978Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210512T213724.json","timestamp":"2021-05-12T13:37:24.983Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-12T13:37:24.985Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-12T13:37:24.986Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-12T13:37:24.989Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-12T13:37:24.989Z"}
{"parsed_log":{"contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","contract_myid":"0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xed791ab445a5ca9c03a76e18e4c7839ccf8650598d3635d753be37b8b3d76474","blockHash":"0x6fabbc548a3810a47d49fe36a61886634ccdb75ab45c481b29fbae61a807de5f","blockNumber":76,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x27032850077abef46fc9c2b39b96885b40abc3ec","cid":"0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1620826900,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-05-12T13:41:40.685Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-05-12T13:41:40.698Z"}
{"parsed_log":{"contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","contract_myid":"0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xed791ab445a5ca9c03a76e18e4c7839ccf8650598d3635d753be37b8b3d76474","blockHash":"0x6fabbc548a3810a47d49fe36a61886634ccdb75ab45c481b29fbae61a807de5f","blockNumber":76,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x27032850077abef46fc9c2b39b96885b40abc3ec","cid":"0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1620826900,"level":"info","message":"new Log1 event","timestamp":"2021-05-12T13:41:40.698Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","id2":"79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","proof_type":0,"context":{"name":"eth_03C7249922","protocol":"eth","type":"blockchain","relative_timestamp":1620826900},"level":"debug","message":"HTTP create query content","timestamp":"2021-05-12T13:41:40.780Z"}
{"result":{"_timestamp":1620826901,"daterange":[1620826901,1620828701],"interval":3600,"id2":"79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","actions":[],"id":"c3017ff762ee944a63326503c1610659159bb91fef0742f8892054a3a1753499","version":3,"_timestamp_creation":1620826901,"context":{"protocol":"eth","relative_timestamp":1620826900,"type":"blockchain","name":"eth_03C7249922"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-05-12T13:41:41.804Z"}
{"level":"info","message":"new HTTP query created, id: c3017ff762ee944a63326503c1610659159bb91fef0742f8892054a3a1753499","timestamp":"2021-05-12T13:41:41.805Z"}
{"level":"info","message":"checking HTTP query c3017ff762ee944a63326503c1610659159bb91fef0742f8892054a3a1753499 status in 0 seconds","timestamp":"2021-05-12T13:41:41.810Z"}
{"level":"info","message":"checking HTTP query c3017ff762ee944a63326503c1610659159bb91fef0742f8892054a3a1753499 status every 5 seconds...","timestamp":"2021-05-12T13:41:41.811Z"}
{"result":{"_timestamp":1620826902,"id":"c3017ff762ee944a63326503c1610659159bb91fef0742f8892054a3a1753499","daterange":[1620826901,1620828701],"_lock":false,"id2":"79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1620826901,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1620826901,"context":{"protocol":"eth","relative_timestamp":1620826900,"type":"blockchain","name":"eth_03C7249922"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"c3017ff762ee944a63326503c1610659159bb91fef0742f8892054a3a1753499 HTTP query result: ","timestamp":"2021-05-12T13:41:47.964Z"}
{"contract_myid":"0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","level":"info","message":"sending __callback tx...","timestamp":"2021-05-12T13:41:47.966Z"}
{"myid":"0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-05-12T13:41:47.966Z"}
{"parsed_log":{"contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","contract_myid":"0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x54822fc3ea09f43bcbc10c52042e0fec4dc39e23ed7ace58a32443cebedc630a","blockHash":"0xa5776668f09d8d9a7fd3acf15a43d9783d2016753af683b8b3a3a4245b42a045","blockNumber":78,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x27032850077abef46fc9c2b39b96885b40abc3ec","cid":"0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1620826908,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-05-12T13:41:48.498Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-05-12T13:41:48.501Z"}
{"parsed_log":{"contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","contract_myid":"0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x54822fc3ea09f43bcbc10c52042e0fec4dc39e23ed7ace58a32443cebedc630a","blockHash":"0xa5776668f09d8d9a7fd3acf15a43d9783d2016753af683b8b3a3a4245b42a045","blockNumber":78,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x27032850077abef46fc9c2b39b96885b40abc3ec","cid":"0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1620826908,"level":"info","message":"new Log1 event","timestamp":"2021-05-12T13:41:48.502Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","id2":"19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","proof_type":0,"context":{"name":"eth_03C7249922","protocol":"eth","type":"blockchain","relative_timestamp":1620826908},"level":"debug","message":"HTTP create query content","timestamp":"2021-05-12T13:41:48.583Z"}
{"result":{"_timestamp":1620826909,"daterange":[1620826909,1620828709],"interval":3600,"id2":"19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","actions":[],"id":"47e1dcb645486dbe750d35a2adb66758d78749d79dcad7656891c786d81f6141","version":3,"_timestamp_creation":1620826909,"context":{"protocol":"eth","relative_timestamp":1620826908,"type":"blockchain","name":"eth_03C7249922"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-05-12T13:41:49.796Z"}
{"level":"info","message":"new HTTP query created, id: 47e1dcb645486dbe750d35a2adb66758d78749d79dcad7656891c786d81f6141","timestamp":"2021-05-12T13:41:49.797Z"}
{"level":"info","message":"checking HTTP query 47e1dcb645486dbe750d35a2adb66758d78749d79dcad7656891c786d81f6141 status in 0 seconds","timestamp":"2021-05-12T13:41:49.799Z"}
{"level":"info","message":"checking HTTP query 47e1dcb645486dbe750d35a2adb66758d78749d79dcad7656891c786d81f6141 status every 5 seconds...","timestamp":"2021-05-12T13:41:49.799Z"}
{"myid":"0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0x27032850077abef46fc9c2b39b96885b40abc3ec __callback tx sent, transaction hash: 0x7086c99aba914ad126af5fbf9e640a22c26143d30f397b2cfa246cd6080fb3d2","timestamp":"2021-05-12T13:41:53.119Z"}
{"transactionHash":"0x7086c99aba914ad126af5fbf9e640a22c26143d30f397b2cfa246cd6080fb3d2","transactionIndex":0,"blockHash":"0x1bb27aa1924a2db5d471b41caf4a7a36f88e3099ccf1997dce02770a338f8e31","blockNumber":77,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x7086c99aba914ad126af5fbf9e640a22c26143d30f397b2cfa246cd6080fb3d2","blockHash":"0x1bb27aa1924a2db5d471b41caf4a7a36f88e3099ccf1997dce02770a338f8e31","blockNumber":77,"address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","data":"0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78446a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb0cd8dfc5086d1e5908e19db8bea908c0b692544bab97f09629b053bb7ca0729","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100200000000001000100000000000000000000020000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000800000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000400000000000000000000000000000000000000000000000000000000000","v":"0x1b","r":"0x2d990e2a401c9fdd5f8ac095f44a437ec9a7273dc8933c0c5e7c0efa1a0857a0","s":"0x4946dbea27ea19508ed8976210b3636d3eb41a0c3942e48bf1c6494713934ff3","level":"debug","message":"update query content: { myid:\n '0x79bd61a7daac020c6ca7424e46a0655f0a4f2923a57366391ccaec8ceccdfa61',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x27032850077abef46fc9c2b39b96885b40abc3ec',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-05-12T13:41:53.122Z"}
{"result":{"_timestamp":1620826910,"id":"47e1dcb645486dbe750d35a2adb66758d78749d79dcad7656891c786d81f6141","daterange":[1620826909,1620828709],"_lock":false,"id2":"19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1620826909,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1620826909,"context":{"protocol":"eth","relative_timestamp":1620826908,"type":"blockchain","name":"eth_03C7249922"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=3ANLBcUwizg).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ9')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"47e1dcb645486dbe750d35a2adb66758d78749d79dcad7656891c786d81f6141 HTTP query result: ","timestamp":"2021-05-12T13:41:55.731Z"}
{"contract_myid":"0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","level":"info","message":"sending __callback tx...","timestamp":"2021-05-12T13:41:55.731Z"}
{"myid":"0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-05-12T13:41:55.732Z"}
{"parsed_log":{"contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","contract_myid":"0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x4fe7ace77b2c0422434ec8cbf4b06f1e2469d210b97b62d4fe503cf58dc43b2a","blockHash":"0xcddbd288e887036b96cc66513d837aa785be47d29378f83fc4d396697ccba869","blockNumber":80,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x27032850077abef46fc9c2b39b96885b40abc3ec","cid":"0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1620826915,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-05-12T13:41:56.271Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-05-12T13:41:56.276Z"}
{"parsed_log":{"contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","contract_myid":"0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0x4fe7ace77b2c0422434ec8cbf4b06f1e2469d210b97b62d4fe503cf58dc43b2a","blockHash":"0xcddbd288e887036b96cc66513d837aa785be47d29378f83fc4d396697ccba869","blockNumber":80,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x27032850077abef46fc9c2b39b96885b40abc3ec","cid":"0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1620826915,"level":"info","message":"new Log1 event","timestamp":"2021-05-12T13:41:56.276Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","id2":"eae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","proof_type":0,"context":{"name":"eth_03C7249922","protocol":"eth","type":"blockchain","relative_timestamp":1620826915},"level":"debug","message":"HTTP create query content","timestamp":"2021-05-12T13:41:56.357Z"}
{"result":{"_timestamp":1620826917,"daterange":[1620826917,1620828717],"interval":3600,"id2":"eae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","actions":[],"id":"025a2335f75690133642a47acd1982071f9ad26ae9a66c60e12366aac926f27d","version":3,"_timestamp_creation":1620826917,"context":{"protocol":"eth","relative_timestamp":1620826915,"type":"blockchain","name":"eth_03C7249922"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-05-12T13:41:57.266Z"}
{"level":"info","message":"new HTTP query created, id: 025a2335f75690133642a47acd1982071f9ad26ae9a66c60e12366aac926f27d","timestamp":"2021-05-12T13:41:57.266Z"}
{"level":"info","message":"checking HTTP query 025a2335f75690133642a47acd1982071f9ad26ae9a66c60e12366aac926f27d status in 0 seconds","timestamp":"2021-05-12T13:41:57.267Z"}
{"level":"info","message":"checking HTTP query 025a2335f75690133642a47acd1982071f9ad26ae9a66c60e12366aac926f27d status every 5 seconds...","timestamp":"2021-05-12T13:41:57.267Z"}
{"myid":"0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0x27032850077abef46fc9c2b39b96885b40abc3ec __callback tx sent, transaction hash: 0x2b65cf6519b628dff4a304566d801ba15822bd1eee35a5c9f91325c22637e72c","timestamp":"2021-05-12T13:42:00.873Z"}
{"transactionHash":"0x2b65cf6519b628dff4a304566d801ba15822bd1eee35a5c9f91325c22637e72c","transactionIndex":0,"blockHash":"0x89e8cd443c0662351b33b82e49e9948a86629601d005b358be424b4a6b04f950","blockNumber":79,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x2b65cf6519b628dff4a304566d801ba15822bd1eee35a5c9f91325c22637e72c","blockHash":"0x89e8cd443c0662351b33b82e49e9948a86629601d005b358be424b4a6b04f950","blockNumber":79,"address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","data":"0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78644a39000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b33414e4c42635577697a67000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xf8feb74a62c3130bf6af474c131b62efa22d5742cf99f6ea65d7c293735edb2d","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000001000100000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000008000008000000000000000000000000000000000000000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000200000000000100000000000000400000000000000000000000000000000000000000000000000000000000","v":"0x1b","r":"0xd41231b771d7f219f003da227ab1950b7c88d581507c35c8132a413b409d13f7","s":"0x39c52e18dbf6502ab9febaa8fecd77837dda29756eb1a18597a86ac11277e76d","level":"debug","message":"update query content: { myid:\n '0x19d01a66cdfb010c519c3dc938fb25efcbaf926a50ccfe22cd67f08d0fa13237',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x27032850077abef46fc9c2b39b96885b40abc3ec',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-05-12T13:42:00.874Z"}
{"result":{"_timestamp":1620826917,"id":"025a2335f75690133642a47acd1982071f9ad26ae9a66c60e12366aac926f27d","daterange":[1620826917,1620828717],"_lock":false,"id2":"eae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1620826917,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1620826917,"context":{"protocol":"eth","relative_timestamp":1620826915,"type":"blockchain","name":"eth_03C7249922"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxdJ0')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"025a2335f75690133642a47acd1982071f9ad26ae9a66c60e12366aac926f27d HTTP query result: ","timestamp":"2021-05-12T13:42:04.458Z"}
{"contract_myid":"0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","level":"info","message":"sending __callback tx...","timestamp":"2021-05-12T13:42:04.459Z"}
{"myid":"0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-05-12T13:42:04.459Z"}
{"parsed_log":{"contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","contract_myid":"0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xcdd084060ca7627b83e7b96007a683dc8114ae63c2171c8756adeaa4ee3686db","blockHash":"0x95fc5bfd73f6134b4bdabe1967fbe9758fb06aa907e18c528998325c0428faa2","blockNumber":83,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x27032850077abef46fc9c2b39b96885b40abc3ec","cid":"0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1620826924,"level":"debug","message":"manageLog, raw log:","timestamp":"2021-05-12T13:42:05.065Z"}
{"level":"debug","message":"mangeLog isProcessed: false","timestamp":"2021-05-12T13:42:05.072Z"}
{"parsed_log":{"contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","contract_myid":"0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","datasource":"URL","formula":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","timestamp":0,"gaslimit":120000,"proofType":"0x00","gasPrice":5000000000},"logIndex":0,"transactionIndex":0,"transactionHash":"0xcdd084060ca7627b83e7b96007a683dc8114ae63c2171c8756adeaa4ee3686db","blockHash":"0x95fc5bfd73f6134b4bdabe1967fbe9758fb06aa907e18c528998325c0428faa2","blockNumber":83,"address":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","type":"mined","event":"Log1","args":{"sender":"0x27032850077abef46fc9c2b39b96885b40abc3ec","cid":"0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","timestamp":{"s":1,"e":0,"c":[0]},"datasource":"URL","arg":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","gaslimit":{"s":1,"e":5,"c":[120000]},"proofType":"0x00","gasPrice":{"s":1,"e":9,"c":[5000000000]}},"block_timestamp":1620826924,"level":"info","message":"new Log1 event","timestamp":"2021-05-12T13:42:05.073Z"}
{"when":0,"datasource":"URL","query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","id2":"1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","proof_type":0,"context":{"name":"eth_03C7249922","protocol":"eth","type":"blockchain","relative_timestamp":1620826924},"level":"debug","message":"HTTP create query content","timestamp":"2021-05-12T13:42:05.183Z"}
{"result":{"_timestamp":1620826926,"daterange":[1620826926,1620828726],"interval":3600,"id2":"1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","actions":[],"id":"921f19b722fe461f7bc8d04228856cb3ae3fd7a25a279a3ee622e8c6c2ef44f4","version":3,"_timestamp_creation":1620826926,"context":{"protocol":"eth","relative_timestamp":1620826924,"type":"blockchain","name":"eth_03C7249922"},"active":true,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"debug","message":"oraclize HTTP create query body response","timestamp":"2021-05-12T13:42:06.282Z"}
{"level":"info","message":"new HTTP query created, id: 921f19b722fe461f7bc8d04228856cb3ae3fd7a25a279a3ee622e8c6c2ef44f4","timestamp":"2021-05-12T13:42:06.282Z"}
{"level":"info","message":"checking HTTP query 921f19b722fe461f7bc8d04228856cb3ae3fd7a25a279a3ee622e8c6c2ef44f4 status in 0 seconds","timestamp":"2021-05-12T13:42:06.283Z"}
{"level":"info","message":"checking HTTP query 921f19b722fe461f7bc8d04228856cb3ae3fd7a25a279a3ee622e8c6c2ef44f4 status every 5 seconds...","timestamp":"2021-05-12T13:42:06.283Z"}
{"myid":"0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0x27032850077abef46fc9c2b39b96885b40abc3ec __callback tx sent, transaction hash: 0x9bc961393e698e08e14f56ea7230221e738ab849885b34bf8767f7e4a7f965f5","timestamp":"2021-05-12T13:42:09.615Z"}
{"transactionHash":"0x9bc961393e698e08e14f56ea7230221e738ab849885b34bf8767f7e4a7f965f5","transactionIndex":0,"blockHash":"0xcc71108e3b79f0288579a4c33713ac86053c045fe33ba0f8fd9e402905b28aa5","blockNumber":81,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x9bc961393e698e08e14f56ea7230221e738ab849885b34bf8767f7e4a7f965f5","blockHash":"0xcc71108e3b79f0288579a4c33713ac86053c045fe33ba0f8fd9e402905b28aa5","blockNumber":81,"address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","data":"0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78644a30000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xad6065aa8fd38c96f7f2842a8dd5c6bbed2b6f2e3ab31da7f6dd86d701c771e6","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000010000000000000000000000000000000000000000000020100000000000001000100000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000400000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000400000000000000000000000000000000000000000000000000000000000","v":"0x1b","r":"0x8ce7f7c7ecdffd0092fec6b2ed59d4149dbb0a9bbfbfd37a36adf3a1f3fa5be5","s":"0x1a58bd6fd8509932231d89f731a45e0fd9e59e30fc598b81d5e1581422150d91","level":"debug","message":"update query content: { myid:\n '0xeae13ac9a7bbe56575642a238c87a6f3ab61726365c3af3d98bc10d55a5b1c6f',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x27032850077abef46fc9c2b39b96885b40abc3ec',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-05-12T13:42:09.615Z"}
{"result":{"_timestamp":1620826926,"id":"921f19b722fe461f7bc8d04228856cb3ae3fd7a25a279a3ee622e8c6c2ef44f4","daterange":[1620826926,1620828726],"_lock":false,"id2":"1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","actions":[],"interval":3600,"checks":[{"errors":[],"success":true,"timestamp":1620826926,"results":["0.0"],"proofs":[null],"match":true}],"version":3,"_timestamp_creation":1620826926,"context":{"protocol":"eth","relative_timestamp":1620826924,"type":"blockchain","name":"eth_03C7249922"},"active":false,"hidden":false,"payload":{"conditions":[{"query":"html(https://www.youtube.com/watch?v=ZwVNLDIJKVA).xpath(count(//meta[@name='description' and contains(@content,'QmPP8X2rWc2uanbnKpxfzEAAuHPuThQRtxpoY8CYVJxDj8')]))","proof_type":0,"check_op":"tautology","datasource":"URL","value":null}]}},"success":true,"level":"info","message":"921f19b722fe461f7bc8d04228856cb3ae3fd7a25a279a3ee622e8c6c2ef44f4 HTTP query result: ","timestamp":"2021-05-12T13:42:12.422Z"}
{"contract_myid":"0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","level":"info","message":"sending __callback tx...","timestamp":"2021-05-12T13:42:12.423Z"}
{"myid":"0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gas_limit":120000,"gas_price":5000000000,"level":"debug","message":"__callbackWrapper object:","timestamp":"2021-05-12T13:42:12.424Z"}
{"myid":"0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749","result":"0.0","proof":null,"proof_type":"0x00","contract_address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gas_limit":120000,"gas_price":5000000000,"level":"info","message":"contract 0x27032850077abef46fc9c2b39b96885b40abc3ec __callback tx sent, transaction hash: 0x69f820508dfa3e7b7edaceebee476bc3412dcd20e90874c73de2423cd22ec81f","timestamp":"2021-05-12T13:42:17.597Z"}
{"transactionHash":"0x69f820508dfa3e7b7edaceebee476bc3412dcd20e90874c73de2423cd22ec81f","transactionIndex":0,"blockHash":"0x460a9037d61d0390bc9d83c3284717b4282358a39a70dcaae1377e154f81008f","blockNumber":84,"from":"0x627306090abab3a6e1400e9345bc60c78a8bef57","to":"0x27032850077abef46fc9c2b39b96885b40abc3ec","gasUsed":32608,"cumulativeGasUsed":32608,"contractAddress":null,"logs":[{"logIndex":0,"transactionIndex":0,"transactionHash":"0x69f820508dfa3e7b7edaceebee476bc3412dcd20e90874c73de2423cd22ec81f","blockHash":"0x460a9037d61d0390bc9d83c3284717b4282358a39a70dcaae1377e154f81008f","blockNumber":84,"address":"0x27032850077abef46fc9c2b39b96885b40abc3ec","data":"0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002e516d50503858327257633275616e626e4b7078667a45414175485075546851527478706f59384359564a78446a38000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000b5a77564e4c44494a4b5641000000000000000000000000000000000000000000","topics":["0x2a53fed4e5febecf0501f58744cdffe16f4e1efb7241d4f06550ed0a516e791b","0xb0cd8dfc5086d1e5908e19db8bea908c0b692544bab97f09629b053bb7ca0729","0x000000000000000000000000627306090abab3a6e1400e9345bc60c78a8bef57"],"type":"mined"}],"status":"0x1","logsBloom":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100200000000001000100000000000000000000020000000000000010000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000800000000000000000000000000000000000000000000010000000002000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000400000000000000000000000000000000000000000000000000000000000","v":"0x1c","r":"0x8dfa34bcf2b371b55aa942ee96bc562eac699f2d8b4d198c2cfca4d3925bc7ee","s":"0x206830c49c62fea687880002bb2612b33a5e10141011bd8e3876c822778ea00d","level":"debug","message":"update query content: { myid:\n '0x1c8147c53dfa6c5373acce3d0a4c62fc2ebea93be1bb4360f534476eecfbe749',\n result: '0.0',\n proof: null,\n proof_type: '0x00',\n contract_address: '0x27032850077abef46fc9c2b39b96885b40abc3ec',\n gas_limit: 120000,\n gas_price: 5000000000 }","timestamp":"2021-05-12T13:42:17.598Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-14T02:44:39.632Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-14T02:44:39.635Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-14T02:44:39.635Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-14T02:44:39.635Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-14T02:44:39.636Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-14T02:44:39.636Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1620957082,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.6e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008292},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-14T02:44:42.457Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-14T02:44:42.726Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-14T02:44:43.093Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-14T02:44:43.190Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-14T02:44:53.551Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-14T02:44:53.551Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-14T02:44:53.634Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-14T02:45:14.643Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-14T02:45:14.643Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-14T02:45:14.643Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-14T02:45:25.537Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-14T02:45:25.537Z"}
{"context_name":"eth_ED813A76B6","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.6e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-14T02:45:25.537Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210514T104525.json","timestamp":"2021-05-14T02:45:25.541Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-14T02:45:25.543Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-14T02:45:25.544Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-14T02:45:25.547Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-14T02:45:25.547Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-15T07:14:12.901Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-15T07:14:12.903Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-15T07:14:12.904Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-15T07:14:12.904Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-15T07:14:12.905Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-15T07:14:12.905Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1621061482,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.5e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008251},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-15T07:14:15.984Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-15T07:14:16.273Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-15T07:14:16.638Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-15T07:14:16.727Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-15T07:14:27.067Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-15T07:14:27.067Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-15T07:14:27.153Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-15T07:14:48.175Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-15T07:14:48.175Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-15T07:14:48.175Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-15T07:14:59.101Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-15T07:14:59.101Z"}
{"context_name":"eth_C80E7D854D","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.5e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-15T07:14:59.101Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210515T151459.json","timestamp":"2021-05-15T07:14:59.105Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-15T07:14:59.107Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-15T07:14:59.108Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-15T07:14:59.111Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-15T07:14:59.111Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-15T07:40:29.356Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-15T07:40:29.359Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-15T07:40:29.359Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-15T07:40:29.359Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-15T07:40:29.360Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-15T07:40:29.360Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1621063215,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.6e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008258},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-15T07:40:32.584Z"}
{"level":"error","message":"http://localhost:8545 ethereum node not found, are you sure is it running?\n if you are using:\n * geth, append: --rpc --rpccorsdomain=\"*\" --rpcaddr=\"127.0.0.1\" --rpcport=\"8545\"\n * parity, append: --geth --jsonrpc-hosts all --rpcaddr 127.0.0.1 --rpcport 8545 \n * ethereumjs-testrpc, try: testrpc -h 127.0.0.1 -p 8545\n\ncheck also if your node or this machine is allowed to connect (firewall, port, etc..)\n","timestamp":"2021-05-15T07:40:32.670Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-15T07:41:49.588Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-15T07:41:49.593Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-15T07:41:49.594Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-15T07:41:49.594Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-15T07:41:49.594Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-15T07:41:49.594Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1621064432,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.5e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008258},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-15T07:41:50.865Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-15T07:41:51.125Z"}
{"level":"warn","message":"Using 0x627306090abab3a6e1400e9345bc60c78a8bef57 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-15T07:41:51.436Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-15T07:41:51.518Z"}
{"level":"info","message":"connector deployed to: 0x8cdaf0cd259887258bc13a92c0a6da92698644c0","timestamp":"2021-05-15T07:42:01.858Z"}
{"success":true,"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"connector deployment result","timestamp":"2021-05-15T07:42:01.858Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-15T07:42:01.944Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-15T07:42:22.907Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-15T07:42:22.907Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-15T07:42:22.908Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-15T07:42:33.778Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-15T07:42:33.778Z"}
{"context_name":"eth_4FFC61B20B","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x627306090abab3a6e1400e9345bc60c78a8bef57","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.5e-7},"connector":"0x8cdaf0cd259887258bc13a92c0a6da92698644c0","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-15T07:42:33.779Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210515T154233.json","timestamp":"2021-05-15T07:42:33.784Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-15T07:42:33.785Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-15T07:42:33.786Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-15T07:42:33.789Z"}
{"level":"info","message":"Listening @ 0x8cdaf0cd259887258bc13a92c0a6da92698644c0 (Oraclize Connector)\n","timestamp":"2021-05-15T07:42:33.789Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-15T07:50:44.977Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-15T07:50:44.981Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-15T07:50:44.981Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-15T07:50:44.981Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-15T07:50:44.982Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-15T07:50:44.982Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1621064432,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.5e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008258},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-15T07:50:51.033Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-15T07:50:51.300Z"}
{"level":"warn","message":"Using 0x56cdc34b7d7f88f47b7ad685b8ff46f9ba2d4ab4 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-15T07:50:51.612Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-15T07:50:51.694Z"}
{"level":"info","message":"connector deployed to: 0x1f0f6ac5848026313e064a5a268bf6353386f271","timestamp":"2021-05-15T07:51:02.035Z"}
{"success":true,"connector":"0x1f0f6ac5848026313e064a5a268bf6353386f271","level":"debug","message":"connector deployment result","timestamp":"2021-05-15T07:51:02.035Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-15T07:51:02.130Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-15T07:51:23.123Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-15T07:51:23.123Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-15T07:51:23.123Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-15T07:51:34.035Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-15T07:51:34.035Z"}
{"context_name":"eth_2A6126DB65","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x56cdc34b7d7f88f47b7ad685b8ff46f9ba2d4ab4","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.5e-7},"connector":"0x1f0f6ac5848026313e064a5a268bf6353386f271","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-15T07:51:34.035Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210515T155134.json","timestamp":"2021-05-15T07:51:34.040Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-15T07:51:34.041Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-15T07:51:34.043Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-15T07:51:34.045Z"}
{"level":"info","message":"Listening @ 0x1f0f6ac5848026313e064a5a268bf6353386f271 (Oraclize Connector)\n","timestamp":"2021-05-15T07:51:34.045Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-05-15T07:53:20.025Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-05-15T07:53:20.031Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-05-15T07:53:20.031Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-05-15T07:53:20.031Z"}
{"level":"info","message":"using active mode","timestamp":"2021-05-15T07:53:20.031Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-05-15T07:53:20.032Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1621065050,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":2.5e-7,"USD":0.001,"BTC":2e-8,"EUR":0.0008258},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-05-15T07:53:21.081Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-05-15T07:53:21.362Z"}
{"level":"warn","message":"Using 0x56cdc34b7d7f88f47b7ad685b8ff46f9ba2d4ab4 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-05-15T07:53:21.688Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-05-15T07:53:21.771Z"}
{"level":"info","message":"connector deployed to: 0x1f0f6ac5848026313e064a5a268bf6353386f271","timestamp":"2021-05-15T07:53:32.098Z"}
{"success":true,"connector":"0x1f0f6ac5848026313e064a5a268bf6353386f271","level":"debug","message":"connector deployment result","timestamp":"2021-05-15T07:53:32.098Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-05-15T07:53:32.179Z"}
{"level":"info","message":"address resolver (OAR) deployed to: 0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","timestamp":"2021-05-15T07:53:53.130Z"}
{"success":true,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","level":"debug","message":"OAR deployment result","timestamp":"2021-05-15T07:53:53.130Z"}
{"level":"info","message":"updating connector pricing...","timestamp":"2021-05-15T07:53:53.131Z"}
{"level":"info","message":"successfully deployed all contracts","timestamp":"2021-05-15T07:54:04.019Z"}
{"success":true,"level":"debug","message":"pricing update result","timestamp":"2021-05-15T07:54:04.019Z"}
{"context_name":"eth_8AE3A4FA52","latest_block_number":-1,"oar":"0x6f485c8bf6fc43ea212e93bbf8ce046c7f1cb475","node":{"main":"http://localhost:8545","backup":[]},"contracts":{"connector":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/oraclizeConnector.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/oraclizeConnector.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/oraclizeConnector.sol"},"oar":{"binary":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/binary/addressResolver.binary","abi":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/abi/addressResolver.json","source":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/contracts/ethereum-api/connectors/addressResolver.sol"}},"deterministic_oar":true,"deploy_gas":3700000,"account":"0x56cdc34b7d7f88f47b7ad685b8ff46f9ba2d4ab4","mode":"active","key_file":"/Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/keys.json","gas_price":20000000000,"onchain_config":{"pricing":[{"name":"IPFS","proof":0,"units":10},{"name":"IPFS","proof":1,"units":10},{"name":"swarm","proof":0,"units":10},{"name":"swarm","proof":1,"units":10},{"name":"URL","proof":0,"units":10},{"name":"URL","proof":1,"units":10},{"name":"URL","proof":16,"units":50},{"name":"URL","proof":17,"units":50},{"name":"URL","proof":32,"units":50},{"name":"URL","proof":33,"units":50},{"name":"URL","proof":64,"units":50},{"name":"URL","proof":65,"units":50},{"name":"Blockchain","proof":0,"units":10},{"name":"Blockchain","proof":1,"units":10},{"name":"nested","proof":0,"units":10},{"name":"nested","proof":1,"units":10},{"name":"nested","proof":16,"units":50},{"name":"nested","proof":17,"units":50},{"name":"nested","proof":32,"units":50},{"name":"nested","proof":33,"units":50},{"name":"nested","proof":64,"units":50},{"name":"nested","proof":65,"units":50},{"name":"WolframAlpha","proof":0,"units":30},{"name":"WolframAlpha","proof":1,"units":30},{"name":"computation","proof":0,"units":500},{"name":"computation","proof":1,"units":500},{"name":"computation","proof":16,"units":540},{"name":"computation","proof":17,"units":540},{"name":"computation","proof":32,"units":540},{"name":"computation","proof":33,"units":540},{"name":"computation","proof":64,"units":540},{"name":"computation","proof":65,"units":540},{"name":"random","proof":0,"units":50},{"name":"random","proof":1,"units":50},{"name":"random","proof":48,"units":50},{"name":"random","proof":49,"units":50}],"base_price":2.5e-7},"connector":"0x1f0f6ac5848026313e064a5a268bf6353386f271","level":"debug","message":"new oracle inline configuration","timestamp":"2021-05-15T07:54:04.019Z"}
{"level":"info","message":"instance configuration file saved to /Users/hexarthur/Developer/uright/node_modules/ethereum-bridge/config/instance/oracle_instance_20210515T155404.json","timestamp":"2021-05-15T07:54:04.025Z"}
{"level":"debug","message":"starting the bridge log manager...","timestamp":"2021-05-15T07:54:04.026Z"}
{"level":"debug","message":"latest block seen (config file) -1","timestamp":"2021-05-15T07:54:04.027Z"}
{"level":"warn","message":"re-org block listen is disabled","timestamp":"2021-05-15T07:54:04.030Z"}
{"level":"info","message":"Listening @ 0x1f0f6ac5848026313e064a5a268bf6353386f271 (Oraclize Connector)\n","timestamp":"2021-05-15T07:54:04.031Z"}
{"defaultnode":"http://localhost:8545","dev":true,"gas":3700000,"confirmation":12,"disable-deterministic-oar":false,"loglevel":"info","non-interactive":false,"enable-stats":false,"no-hints":false,"gasprice":20000000000,"logFilePath":"./bridge.log","confirmations":12,"skipQueries":true,"defaultGas":3700000,"level":"debug","message":"parsed options","timestamp":"2021-07-01T09:58:54.381Z"}
{"level":"warn","message":"--dev mode active, contract myid checks and pending queries are skipped, use this only when testing, not in production","timestamp":"2021-07-01T09:58:54.382Z"}
{"level":"info","message":"you are running ethereum-bridge - version: 0.6.2","timestamp":"2021-07-01T09:58:54.383Z"}
{"level":"info","message":"saving logs to: ./bridge.log","timestamp":"2021-07-01T09:58:54.383Z"}
{"level":"info","message":"using active mode","timestamp":"2021-07-01T09:58:54.383Z"}
{"level":"info","message":"Connecting to eth node http://localhost:8545","timestamp":"2021-07-01T09:58:54.383Z"}
{"result":{"datasources":{"random":{"sessionPubKeysHash":["0xd937716ea46c0fb8f804f392eb5e00c2667262d1842017eae4f2202943ec1782"]}},"timestamp":1625131026,"deployments":{"ethereum":{"public-kovan":{"addressResolver":"0xB7A07BcF2Ba2f2703b24C0691b5278999C59AC7e"},"public-mainnet":{"addressResolver":"0x1d3B2638a7cC9f2CB3D298A3DA7a90B67E5506ed"},"public-ropsten3":{"addressResolver":"0xc03A2615D5efaf5F49F60B7BB6583eaec212fdf1"},"public-rinkeby":{"addressResolver":"0x146500cfd35B22E4A392Fe0aDc06De1a1368Ed48"}}},"quotes":{"ETH":4.7e-7,"USD":0.001,"BTC":3e-8,"EUR":0.0008446},"pricing":{"proofs":{"0":{"units":0,"description":"None"},"16":{"units":40,"description":"TLSNotary"},"32":{"units":40,"description":"Android-Legacy-Version"},"48":{"units":0,"description":"Ledger"},"64":{"units":40,"description":"Android"}},"datasources":[{"units":10,"byte_alias":"0xfb","proof_types":[0],"name":"IPFS"},{"units":10,"byte_alias":"0xf8","proof_types":[0],"name":"swarm"},{"units":10,"byte_alias":"0xff","proof_types":[0,16,32,64],"name":"URL"},{"units":10,"byte_alias":"0xf9","proof_types":[0],"name":"Blockchain"},{"units":10,"byte_alias":"0xfa","proof_types":[0,16,32,64],"name":"nested"},{"units":30,"byte_alias":"0xfc","proof_types":[0],"name":"WolframAlpha"},{"units":500,"byte_alias":"0xfd","proof_types":[0,16,32,64],"name":"computation"},{"units":50,"byte_alias":"0xfe","proof_types":[0,48],"name":"random"}]},"distributions":{"rootstock-bridge":{"motd":"","latest":{"version":"0.5.4"}},"eris-bridge":{"motd":"","latest":{"version":"0.1.0"}},"blockapps-bridge":{"motd":"","latest":{"version":"0.5.4"}},"ethereum-bridge":{"motd":"","latest":{"version":"0.5.4"}}}},"success":true,"level":"debug","message":"check bridge version body result","timestamp":"2021-07-01T09:58:58.041Z"}
{"level":"info","message":"connected to node type EthereumJS TestRPC/v2.5.5/ethereum-js","timestamp":"2021-07-01T09:58:58.218Z"}
{"level":"warn","message":"Using 0x56cdc34b7d7f88f47b7ad685b8ff46f9ba2d4ab4 to query contracts on your blockchain, make sure it is unlocked and do not use the same address to deploy your contracts","timestamp":"2021-07-01T09:58:58.430Z"}
{"level":"info","message":"deploying the oraclize connector contract...","timestamp":"2021-07-01T09:58:58.484Z"}
{"level":"info","message":"connector deployed to: 0x1f0f6ac5848026313e064a5a268bf6353386f271","timestamp":"2021-07-01T09:59:08.763Z"}
{"success":true,"connector":"0x1f0f6ac5848026313e064a5a268bf6353386f271","level":"debug","message":"connector deployment result","timestamp":"2021-07-01T09:59:08.763Z"}
{"level":"info","message":"deploying the address resolver with a deterministic address...","timestamp":"2021-07-01T09:59:08.819Z"}