This repository has been archived by the owner on Oct 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathscripttrace.txt
3285 lines (2822 loc) · 383 KB
/
scripttrace.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Nothing to compile
Traces:
[125320951] DeployScript::run()
Γö£ΓöÇ [0] VM::startBroadcast()
│ └─ ← ()
├─ [2307309] → new FactoryPaperTrading@0xc117871de79b188b9bf90077abc4a08ddc251e11
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 11180 bytes of code
Γö£ΓöÇ [23207] FactoryPaperTrading::setBaseURI("ipfs://")
│ └─ ← ()
├─ [954835] → new StablePaperTrading@0xd734d19dfa87d5bf2debf92abc2b0462b5cedae1
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 4293 bytes of code
├─ [954835] → new StablePaperTrading@0x337399f257f837c5e01ced37ed1b2060122bea38
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 4293 bytes of code
├─ [2002823] → new MainRegistry@0xcc5408ea026f11b9212d8e2ba923b44dadc462f3
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 9409 bytes of code
├─ [1897722] → new LiquidatorPaperTrading@0x5a43606dc5e0995492ebcf50e130b5cd101a7743
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 8916 bytes of code
Γö£ΓöÇ [20635] StablePaperTrading::setLiquidator(LiquidatorPaperTrading: [0x5a43606dc5e0995492ebcf50e130b5cd101a7743])
│ └─ ← ()
Γö£ΓöÇ [20635] StablePaperTrading::setLiquidator(LiquidatorPaperTrading: [0x5a43606dc5e0995492ebcf50e130b5cd101a7743])
│ └─ ← ()
├─ [1217492] → new TokenShop@0x82a1b09b8f464a2cba27e73dd2c24c9dbdd44b57
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 5851 bytes of code
Γö£ΓöÇ [22650] TokenShop::setFactory(FactoryPaperTrading: [0xc117871de79b188b9bf90077abc4a08ddc251e11])
│ └─ ← ()
├─ [704703] → new ERC20PaperTrading@0x65270e704c4390594ea9af493dd4fc7968fe6a61
│ └─ ← 3174 bytes of code
├─ [517310] → new ArcadiaOracle@0xebd693090b7a8b413aa218f0f3b3aa74e5bf0f09
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(300000000000)
│ └─ ← ()
├─ [517310] → new ArcadiaOracle@0xccabaedf53e63a7af2a5490ebf3aa1b9d6fbd4ab
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(12)
│ └─ ← ()
├─ [517310] → new ArcadiaOracle@0xb4fadffbdd38f387d16d385d26662a67a986aff7
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(100000000000000)
│ └─ ← ()
Γö£ΓöÇ [22745] StablePaperTrading::setTokenShop(TokenShop: [0x82a1b09b8f464a2cba27e73dd2c24c9dbdd44b57])
│ └─ ← ()
Γö£ΓöÇ [22745] StablePaperTrading::setTokenShop(TokenShop: [0x82a1b09b8f464a2cba27e73dd2c24c9dbdd44b57])
│ └─ ← ()
├─ [1001355] → new OracleHub@0xbbf8947411e902c7016a2c39f9fbea63a2ecdba9
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 4883 bytes of code
├─ [856376] → new StandardERC20Registry@0x448552d47a85d3ede5357a284468c5f869c76c5d
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 3936 bytes of code
Γö£ΓöÇ [67203] MainRegistry::addSubRegistry(StandardERC20Registry: [0x448552d47a85d3ede5357a284468c5f869c76c5d])
│ └─ ← ()
├─ [743866] → new FloorERC721SubRegistry@0x60c07fbd31a7d8fba50381216344de15277ba018
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 3374 bytes of code
Γö£ΓöÇ [45303] MainRegistry::addSubRegistry(FloorERC721SubRegistry: [0x60c07fbd31a7d8fba50381216344de15277ba018])
│ └─ ← ()
├─ [413365] → new InterestRateModule@0x6a732990b16880e95c2ff6169045345512d5ac1d
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 1946 bytes of code
Γö£ΓöÇ [22548] InterestRateModule::setBaseInterestRate(50000000000000000)
│ └─ ← ()
├─ [3948597] → new VaultPaperTrading@0x5f06fb1a3e8657c84dc728d2b7275c5de457286d
│ └─ ← 19610 bytes of code
Γö£ΓöÇ [114744] FactoryPaperTrading::setNewVaultInfo(MainRegistry: [0xcc5408ea026f11b9212d8e2ba923b44dadc462f3], VaultPaperTrading: [0x5f06fb1a3e8657c84dc728d2b7275c5de457286d], 0x0000000000000000000000000000000000000005, InterestRateModule: [0x6a732990b16880e95c2ff6169045345512d5ac1d])
│ └─ ← ()
Γö£ΓöÇ [32777] FactoryPaperTrading::confirmNewVaultInfo()
│ └─ ← ()
Γö£ΓöÇ [22652] FactoryPaperTrading::setLiquidator(LiquidatorPaperTrading: [0x5a43606dc5e0995492ebcf50e130b5cd101a7743])
│ └─ ← ()
Γö£ΓöÇ [22673] FactoryPaperTrading::setTokenShop(TokenShop: [0x82a1b09b8f464a2cba27e73dd2c24c9dbdd44b57])
│ └─ ← ()
Γö£ΓöÇ [795] LiquidatorPaperTrading::setFactory(FactoryPaperTrading: [0xc117871de79b188b9bf90077abc4a08ddc251e11])
│ └─ ← ()
Γö£ΓöÇ [70690] MainRegistry::setFactory(FactoryPaperTrading: [0xc117871de79b188b9bf90077abc4a08ddc251e11])
Γöé Γö£ΓöÇ [589] FactoryPaperTrading::getCurrentRegistry() [staticcall]
│ │ └─ ← MainRegistry: [0xcc5408ea026f11b9212d8e2ba923b44dadc462f3]
Γöé Γö£ΓöÇ [2384] FactoryPaperTrading::numeraireCounter() [staticcall]
│ │ └─ ← 0
Γöé Γö£ΓöÇ [43120] FactoryPaperTrading::addNumeraire(0, StablePaperTrading: [0xd734d19dfa87d5bf2debf92abc2b0462b5cedae1])
│ │ └─ ← ()
│ └─ ← ()
Γö£ΓöÇ [0] VM::stopBroadcast()
│ └─ ← ()
Γö£ΓöÇ [0] VM::startBroadcast()
│ └─ ← ()
├─ [704703] → new ERC20PaperTrading@0xa4d3714bed6c145204300b55fc3bb9bee94b116e
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x9a9cfd48df6abf4b8c04de0a79285f8fb53815d9
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x6f1210620ce3334d18615e176ed99c95caf23bd9
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x84f59a41ee840e8166c388376173ce7625be35c2
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x0b62f0e87ea2a9d23a7a20ec7c9e344a09478706
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xf1138919b43defb9b6cb1f62c91698f67245f532
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x859e0ed84473e25dc3b9db4333dbc5d6baa71115
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x69fe683d228fd54877335599cb5766e6e01aa1c5
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x7710181f01dc4ae52abe0e828ff13c35469c6f55
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x79a2ac438cac7d8d5ca191543a9c908e16e321b8
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x8e3e92045dac4d8247b03d39da452986d7957711
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xf05f3b036a5eff6183e96c495236cc167c4727f5
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x44975e6930be8ec5ef1d29de12c36ff2c17df476
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x007ec5595ee6330e8ea3c4af4b2a029edca6ab46
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xd6cf3caffbc7176420761bb18ef633fee17bdfe0
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xf45c03930251cce8b8e1d82e44794721f741655d
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x4ee518800fc1b3313732fbf02ddd4e35d20d5e07
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x93e32dc2e141333e58a2de6f7dc82f9a80fb701b
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x3b278f78515d5a6c3c12c2f0d6422bba7dba09f0
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x01da8532d05c603d670df3c9c57c2bd672e35c00
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x64468dedda5e57ec1d81037581715d150c71220d
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xb745b57daba63e11d250f00770bad3e1f4c0b80d
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x74525fb5cb67b0ac5fdb85f4329530e692ffea34
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x73ebff451929cf310e6717bdba77c54d926eb81e
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x88ec4e6c143ed4217871f2af65e7eb36d83640c9
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x45b8f47b9d23938ae2689dcb7614dd79615a1623
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xd335a5c84c04186888825fadcf355fdd72a8584d
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xb453cb629d437c0b3411fdde72664968d39207d5
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x69e83e1529364ef84b0f71986a51bf737b814714
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xdc173e42aaaf414bef7cc3929bf55dd65966bdd2
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xa17c87a81abcfa2b770f40a48f539fca5d134618
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xbbae39722353793786d24245069433c1219d7568
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0xa4fd9d730cb79f5a6b38082f6e5cdcdeef6b46e8
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x9df624790e91cb7c12f6dbd4e1c2597e97fbbb78
│ └─ ← 3174 bytes of code
├─ [704703] → new ERC20PaperTrading@0x1c092d46a5d6d6ea2d8ca3fc209a1b88573ad877
│ └─ ← 3174 bytes of code
Γö£ΓöÇ [0] VM::stopBroadcast()
│ └─ ← ()
Γö£ΓöÇ [0] VM::startBroadcast()
│ └─ ← ()
├─ [1091830] → new ERC721PaperTrading@0xf8c7a13c72a5d75a328710857b4189984d46e099
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0xe735204f05af3aa1d88447a4de8d43b776615bdb
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0xc6dd34b778f507ae825fdd86ec773600e1b8d8ce
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0xbbcfec6ea48ad21014af76cca579737f951f8863
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0x1c88304b73f8f338de442a83bc75c4c8b94fb020
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0x28776b6c63ecab7e8f87e42583cd64ca44b5c4b4
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0xd0a757eb8a4a219f653ba6fa17de4e890bc5b431
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0xe84fdd7ad3c6a83b0258e5ba0e989fa56ad673f7
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0xb2c2e535530a725ac07d11115c2d121cee358563
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0x2828d0a83e757cbaeeaea255bce4974a32ab51b5
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0x08c2c7a680aeaf5bfc9257140e15b8a6ca371f60
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0x9388a374a845df6f99252b917892dc13dc40df5a
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0x0691ed0ba4c140a4248ec7bd0ef6090b6cfbbb4b
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0x4f7738b9f125b383d87fd6bf551fea709fe2ffb4
│ └─ ← 5001 bytes of code
├─ [1091830] → new ERC721PaperTrading@0xc8fac04c390ab14625df8af6d7df6f405956cd26
│ └─ ← 5001 bytes of code
Γö£ΓöÇ [0] VM::stopBroadcast()
│ └─ ← ()
Γö£ΓöÇ [0] VM::startBroadcast()
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mwETH", "mwETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mwBTC", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xa4b16917984368443398aa239d22aff6cf8fba07
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mUSDC", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x8cefbfc935dbcc03112ccf0eaee0655379211169
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mSHIB", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x8cfb787e42461132a461135ec660b022a2c587e0
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mMATIC", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x74d6642adf8d9a90601e00952e485b62158ea7d7
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mCRO", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x6948ffcf8779bdee842e7ad2f6311ff443bb5686
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mUNI", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x33d28dad97b55e7aa74ea3dc36cdd8e500161223
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mLINK", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xc57f342aca7c0f6b687a6618ba4eeae76a33c5bc
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mFTT", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x65e139d53dd68a9c8687c47941d20115d22c1e8c
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mAPE", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x926113e0a0ce19b016245ece3901bb9b823c1730
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mSAND", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xa0269e7bc67011ac35ff3c59686ad223afce4886
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mMANA", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xfec40ae28206b108e7313fb784c26c6d46568a6d
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mAXS", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xd729bbbe7b78c9d2fd731d8a75db8effaf8e0c98
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mAAVE", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xb36c2f47dda48827c49f035ffd7fd3448db2d19e
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mFTM", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x068034d011577479d79d3912759a386fcf77b104
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mKCS", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x618018124257e185b320f58af256acc1226b1902
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mMKR", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x5842d47f7c07cb0068a464b79a3a2144ebe8e02b
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mDAI", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x538539bd38ed0d2787a570cea24d60f0190571e3
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mCVX", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x53f3e6d17b6edace94e63ad08ae02ffd71254963
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mCRV", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xf3924950fe8d13f4b828411e19fc53d0b9e88df8
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mLRC", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xeb7a9c0f30af97e293b6c650f646c4d56697e999
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mBAT", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x562cc112f6d269fbf4d0e80c7d7044146e1a77c3
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mAMP", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xb7b8cffa7f5a193f66a0843ba1a811099d544cc0
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mCOMP", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x6f02c25ad3104881b790b0efac7dc9610e74e7ff
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("m1INCH", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x0599ebe66e99f58da2108b79f9f0328b0844e203
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mGNO", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x5dad98b2128b8b67ae8f73ce3350111931fe584d
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mOMG", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xef04813c7318ab24a7162d59d4aed8e131e4d54a
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mBNT", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xa9ff9d225d3d7d4e4b3ca72382dacf9e2776847b
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mCEL", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x632bee86810fe82a8d83e86219f564dcfe55c001
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mANKR", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x9eb5965047926405379af20ef90857ec114bfc86
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mFXS", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x931db3a6c1448945efc927089361e842a4a29bb5
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mIMX", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x1090a318642df84bc95d448ad6c6f174d25516a8
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mENS", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x816d346e27f67af79f0b60c6551135d3affcfd7b
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mSUSHI", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x00a9297d4d28d604b08305fb1d3c24bb944e10e5
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mDYDX", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xe8611e42c3d7115156e5be5adfb34137304df5dd
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mCELR", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x6f205905923672f110e950b6c8f13551f7f3cdb3
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mC", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x5b132edae1eb4ebcff5092068e4679e8cb2e1185
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mBAYC", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x29167fa7cd78d9b1fc1815972e49e18c98c57e49
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mMAYC", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xcc84a799329d81b534ee19a74d75bcbb379e1302
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mCloneX", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x49fd8015eef6077ab888a5355dd9e2e488b5d243
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mLOOT", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xd8fa8d8888a8faba2f92ecc56dd577431b569395
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mLAND", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xf02f9c205a6bd0e4c6186442619a5df68930fbbf
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mCOOL", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xf6a0abda9158684ccf671c4ebe803e20cb481411
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mAZUKI", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x97785d5b73c53ea03d6546e55e894501878a9956
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mDOODLE", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xfc82f8dcf671256090f529bde7a624bdee55c523
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mMEEBIT", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xe880a57e652d61ec1267047600a1df3e5ee4fd00
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mKONGZ", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x1bcec87d26924fda6b183a8b2902d5645688a216
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mBAKC", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x7ac09bc6b2aeeda980e82ccb15114a9c728afa74
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mLAND", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x8e468015a41bb35845ed407b5d4a310deefabceb
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("mTMLS", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0xe61b48f2c8405538e09a9f624f2450c80049ac31
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [1037] StringHelpers::compareStrings("mTRV", "mwETH") [delegatecall]
│ └─ ← false
├─ [517310] → new ArcadiaOracle@0x1f99a09432c3468eaddefad3ba7d3333c759c5b5
Γöé Γö£ΓöÇ emit OwnershipTransferred(previousOwner: 0x0000000000000000000000000000000000000000, newOwner: 0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← 2226 bytes of code
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(DeployScript: [0x387697872c2bb129bd4bf27ae9ab97ae649dd831])
│ └─ ← ()
Γö£ΓöÇ [23303] ArcadiaOracle::setOffchainTransmitter(0x362e058e129e4b7c4c8b161d3c121661de1c9d07)
│ └─ ← ()
Γö£ΓöÇ [139568] MainRegistry::addNumeraire((100000000, 1000000000000, 0x65270e704c4390594ea9af493dd4fc7968fe6a61, 0xebd693090b7a8b413aa218f0f3b3aa74e5bf0f09, 0x337399f257f837c5e01ced37ed1b2060122bea38, "ETH"), [])
Γöé Γö£ΓöÇ [23220] FactoryPaperTrading::addNumeraire(1, StablePaperTrading: [0x337399f257f837c5e01ced37ed1b2060122bea38])
│ │ └─ ← ()
│ └─ ← ()
Γö£ΓöÇ [0] VM::stopBroadcast()
│ └─ ← ()
Γö£ΓöÇ [0] VM::startBroadcast()
│ └─ ← ()
Γö£ΓöÇ [45319] ArcadiaOracle::transmit(300000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(2934300000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(100000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(1179)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(6460430)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(1872500)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(567000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(706000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(2976000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(765000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(130000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(103000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(2107000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(9992000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(4447550)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(1676000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(131568000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(100000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(1028000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(128000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(5711080)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(3913420)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(13226)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(6943000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(9926070)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(21117000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(257000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(138000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(7629100)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(392627)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(721000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(9487620)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(1238000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(166000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(206000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(186335)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(48950000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(93990000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(18850000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(14400000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(1100000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(1630000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(3490000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(12700000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(12690000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(4600000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(2760000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(7200000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(2000000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(380000000000000000)
│ └─ ← ()
Γö£ΓöÇ [65219] ArcadiaOracle::transmit(10500000000000000000)
│ └─ ← ()
Γö£ΓöÇ [0] VM::stopBroadcast()
│ └─ ← ()
Γö£ΓöÇ [0] VM::startBroadcast()
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "ETH", "USD", 0xebd693090b7a8b413aa218f0f3b3aa74e5bf0f09, 0x65270e704c4390594ea9af493dd4fc7968fe6a61))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "BTC", "USD", 0xa4b16917984368443398aa239d22aff6cf8fba07, 0xa4d3714bed6c145204300b55fc3bb9bee94b116e))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "USDC", "USD", 0x8cefbfc935dbcc03112ccf0eaee0655379211169, 0x9a9cfd48df6abf4b8c04de0a79285f8fb53815d9))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "SHIB", "USD", 0x8cfb787e42461132a461135ec660b022a2c587e0, 0x6f1210620ce3334d18615e176ed99c95caf23bd9))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "MATIC", "USD", 0x74d6642adf8d9a90601e00952e485b62158ea7d7, 0x84f59a41ee840e8166c388376173ce7625be35c2))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "CRO", "USD", 0x6948ffcf8779bdee842e7ad2f6311ff443bb5686, 0x0b62f0e87ea2a9d23a7a20ec7c9e344a09478706))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "UNI", "USD", 0x33d28dad97b55e7aa74ea3dc36cdd8e500161223, 0xf1138919b43defb9b6cb1f62c91698f67245f532))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "LINK", "USD", 0xc57f342aca7c0f6b687a6618ba4eeae76a33c5bc, 0x859e0ed84473e25dc3b9db4333dbc5d6baa71115))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "FTT", "USD", 0x65e139d53dd68a9c8687c47941d20115d22c1e8c, 0x69fe683d228fd54877335599cb5766e6e01aa1c5))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "APE", "USD", 0x926113e0a0ce19b016245ece3901bb9b823c1730, 0x7710181f01dc4ae52abe0e828ff13c35469c6f55))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "SAND", "USD", 0xa0269e7bc67011ac35ff3c59686ad223afce4886, 0x79a2ac438cac7d8d5ca191543a9c908e16e321b8))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "MANA", "USD", 0xfec40ae28206b108e7313fb784c26c6d46568a6d, 0x8e3e92045dac4d8247b03d39da452986d7957711))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "AXS", "USD", 0xd729bbbe7b78c9d2fd731d8a75db8effaf8e0c98, 0xf05f3b036a5eff6183e96c495236cc167c4727f5))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "AAVE", "USD", 0xb36c2f47dda48827c49f035ffd7fd3448db2d19e, 0x44975e6930be8ec5ef1d29de12c36ff2c17df476))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "FTM", "USD", 0x068034d011577479d79d3912759a386fcf77b104, 0x007ec5595ee6330e8ea3c4af4b2a029edca6ab46))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "KCS", "USD", 0x618018124257e185b320f58af256acc1226b1902, 0xd6cf3caffbc7176420761bb18ef633fee17bdfe0))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "MKR", "USD", 0x5842d47f7c07cb0068a464b79a3a2144ebe8e02b, 0xf45c03930251cce8b8e1d82e44794721f741655d))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "DAI", "USD", 0x538539bd38ed0d2787a570cea24d60f0190571e3, 0x4ee518800fc1b3313732fbf02ddd4e35d20d5e07))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "CVX", "USD", 0x53f3e6d17b6edace94e63ad08ae02ffd71254963, 0x93e32dc2e141333e58a2de6f7dc82f9a80fb701b))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "CRV", "USD", 0xf3924950fe8d13f4b828411e19fc53d0b9e88df8, 0x3b278f78515d5a6c3c12c2f0d6422bba7dba09f0))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "LRC", "USD", 0xeb7a9c0f30af97e293b6c650f646c4d56697e999, 0x01da8532d05c603d670df3c9c57c2bd672e35c00))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "BAT", "USD", 0x562cc112f6d269fbf4d0e80c7d7044146e1a77c3, 0x64468dedda5e57ec1d81037581715d150c71220d))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "AMP", "USD", 0xb7b8cffa7f5a193f66a0843ba1a811099d544cc0, 0xb745b57daba63e11d250f00770bad3e1f4c0b80d))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "COMP", "USD", 0x6f02c25ad3104881b790b0efac7dc9610e74e7ff, 0x74525fb5cb67b0ac5fdb85f4329530e692ffea34))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "1INCH", "USD", 0x0599ebe66e99f58da2108b79f9f0328b0844e203, 0x73ebff451929cf310e6717bdba77c54d926eb81e))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "GNO", "USD", 0x5dad98b2128b8b67ae8f73ce3350111931fe584d, 0x88ec4e6c143ed4217871f2af65e7eb36d83640c9))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "OMG", "USD", 0xef04813c7318ab24a7162d59d4aed8e131e4d54a, 0x45b8f47b9d23938ae2689dcb7614dd79615a1623))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "BNT", "USD", 0xa9ff9d225d3d7d4e4b3ca72382dacf9e2776847b, 0xd335a5c84c04186888825fadcf355fdd72a8584d))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "CEL", "USD", 0x632bee86810fe82a8d83e86219f564dcfe55c001, 0xb453cb629d437c0b3411fdde72664968d39207d5))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "ANKR", "USD", 0x9eb5965047926405379af20ef90857ec114bfc86, 0x69e83e1529364ef84b0f71986a51bf737b814714))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "FXS", "USD", 0x931db3a6c1448945efc927089361e842a4a29bb5, 0xdc173e42aaaf414bef7cc3929bf55dd65966bdd2))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "IMX", "USD", 0x1090a318642df84bc95d448ad6c6f174d25516a8, 0xa17c87a81abcfa2b770f40a48f539fca5d134618))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "ENS", "USD", 0x816d346e27f67af79f0b60c6551135d3affcfd7b, 0xbbae39722353793786d24245069433c1219d7568))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "SUSHI", "USD", 0x00a9297d4d28d604b08305fb1d3c24bb944e10e5, 0xa4fd9d730cb79f5a6b38082f6e5cdcdeef6b46e8))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "DYDX", "USD", 0xe8611e42c3d7115156e5be5adfb34137304df5dd, 0x9df624790e91cb7c12f6dbd4e1c2597e97fbbb78))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000, 0, true, "CEL", "USD", 0x6f205905923672f110e950b6c8f13551f7f3cdb3, 0x1c092d46a5d6d6ea2d8ca3fc209a1b88573ad877))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "PUNK", "ETH", 0x5b132edae1eb4ebcff5092068e4679e8cb2e1185, 0xf8c7a13c72a5d75a328710857b4189984d46e099))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "BAYC", "ETH", 0x29167fa7cd78d9b1fc1815972e49e18c98c57e49, 0xe735204f05af3aa1d88447a4de8d43b776615bdb))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "MAYC", "ETH", 0xcc84a799329d81b534ee19a74d75bcbb379e1302, 0xc6dd34b778f507ae825fdd86ec773600e1b8d8ce))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "CloneX", "ETH", 0x49fd8015eef6077ab888a5355dd9e2e488b5d243, 0xbbcfec6ea48ad21014af76cca579737f951f8863))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "LOOT", "ETH", 0xd8fa8d8888a8faba2f92ecc56dd577431b569395, 0x1c88304b73f8f338de442a83bc75c4c8b94fb020))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "LAND", "ETH", 0xf02f9c205a6bd0e4c6186442619a5df68930fbbf, 0x28776b6c63ecab7e8f87e42583cd64ca44b5c4b4))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "COOL", "ETH", 0xf6a0abda9158684ccf671c4ebe803e20cb481411, 0xd0a757eb8a4a219f653ba6fa17de4e890bc5b431))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "AZUKI", "ETH", 0x97785d5b73c53ea03d6546e55e894501878a9956, 0xe84fdd7ad3c6a83b0258e5ba0e989fa56ad673f7))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "DOODLE", "ETH", 0xfc82f8dcf671256090f529bde7a624bdee55c523, 0xb2c2e535530a725ac07d11115c2d121cee358563))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "MEEBIT", "ETH", 0xe880a57e652d61ec1267047600a1df3e5ee4fd00, 0x2828d0a83e757cbaeeaea255bce4974a32ab51b5))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "KONGZ", "ETH", 0x1bcec87d26924fda6b183a8b2902d5645688a216, 0x08c2c7a680aeaf5bfc9257140e15b8a6ca371f60))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "BAKC", "ETH", 0x7ac09bc6b2aeeda980e82ccb15114a9c728afa74, 0x9388a374a845df6f99252b917892dc13dc40df5a))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "LAND", "ETH", 0x8e468015a41bb35845ed407b5d4a310deefabceb, 0x0691ed0ba4c140a4248ec7bd0ef6090b6cfbbb4b))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "TMLS", "ETH", 0xe61b48f2c8405538e09a9f624f2450c80049ac31, 0x4f7738b9f125b383d87fd6bf551fea709fe2ffb4))
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("ETH", "ETH") [delegatecall]
│ └─ ← true
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000000000, 1, true, "TRV", "ETH", 0x1f99a09432c3468eaddefad3ba7d3333c759c5b5, 0xc8fac04c390ab14625df8af6d7df6f405956cd26))
│ └─ ← ()
Γö£ΓöÇ [136247] OracleHub::addOracle((1000000000000, 0, true, "maUSD", "USD", 0xccabaedf53e63a7af2a5490ebf3aa1b9d6fbd4ab, 0xd734d19dfa87d5bf2debf92abc2b0462b5cedae1))
│ └─ ← ()
Γö£ΓöÇ [136247] OracleHub::addOracle((100000000000000, 1, true, "maETH", "ETH", 0xb4fadffbdd38f387d16d385d26662a67a986aff7, 0x337399f257f837c5e01ced37ed1b2060122bea38))
│ └─ ← ()
Γö£ΓöÇ [0] VM::stopBroadcast()
│ └─ ← ()
Γö£ΓöÇ [0] VM::startBroadcast()
│ └─ ← ()
Γö£ΓöÇ [1138] StringHelpers::compareStrings("USD", "ETH") [delegatecall]
│ └─ ← false
Γö£ΓöÇ [249570] StandardERC20Registry::setAssetInformation((1000000000000000000, 0x65270e704c4390594ea9af493dd4fc7968fe6a61, [0xebd693090b7a8b413aa218f0f3b3aa74e5bf0f09]), [])
Γöé Γö£ΓöÇ [2472] OracleHub::checkOracleSequence([0xebd693090b7a8b413aa218f0f3b3aa74e5bf0f09]) [staticcall]
│ │ └─ ← ()
Γöé Γö£ΓöÇ [88047] MainRegistry::addAsset(ERC20PaperTrading: [0x65270e704c4390594ea9af493dd4fc7968fe6a61], [])
│ │ └─ ← ()
│ └─ ← ()