forked from byronanthonymartinez-only/union
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbridged_tokens_v1.json
More file actions
5002 lines (5002 loc) · 197 KB
/
Copy pathbridged_tokens_v1.json
File metadata and controls
5002 lines (5002 loc) · 197 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"wrapped_universal_chain_id": "bob.60808",
"direction": "in",
"source_channel_id": 1,
"destination_channel_id": 1,
"base_token": "0x6962632f36354430424543364441443936433746353034334431453534453534423642423544354233414543334646364345424237354239453035394633353830454133",
"quote_token": "0x92e8e45d2a47b65fcaf3ed4491beac2c6bc2cc3c"
},
{
"wrapped_universal_chain_id": "bob.60808",
"direction": "in",
"source_channel_id": 1,
"destination_channel_id": 1,
"base_token": "0x7562626e",
"quote_token": "0xe53dcec07d16d88e386ae0710e86d9a400f83c31"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 5,
"destination_channel_id": 3,
"base_token": "0x000f889c0216e7ed5eb5b8696a341d48ee41acca",
"quote_token": "0x18d5380a513d6215b4afaaefaa8f6525ac86a4e1"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 5,
"destination_channel_id": 3,
"base_token": "0x0f9da6d142781da4648f473e54cb48e775e6a24d",
"quote_token": "0x95e2b0031e05d347040ec01f9208bfdebc54e94f"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 5,
"destination_channel_id": 3,
"base_token": "0x73af31c9d096a2e12665f60d562601bcea115167",
"quote_token": "0xaa72ffcf89588749e68e7496153065e2f7c40fa0"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 5,
"destination_channel_id": 3,
"base_token": "0x92b3bc0bc3ac0ee60b04a0bbc4a09deb3914c886",
"quote_token": "0x9b52acc15d8effcc465181e083c685bcd6d33c57"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 5,
"destination_channel_id": 3,
"base_token": "0xc26a55487b98b5d1060ed00cffbc358618b1a739",
"quote_token": "0x8ae005dc9faf1d89e2e2b55c88c74abf764325fb"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 5,
"destination_channel_id": 3,
"base_token": "0xd45aebbbdf044f98ffece2656eded61feede2ef6",
"quote_token": "0x153ba0f01b505f545b43fa3be972938152750b50"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 5,
"destination_channel_id": 3,
"base_token": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"quote_token": "0xe86bed5b0813430df660d17363b89fe9bd8232d8"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e313237396a70327a7265337239646d73346437747074793363796e397a65796b656b37766637676c637563346a6d6a773968327773347663366866",
"quote_token": "0x3267250064bec4787954fd96216487960fdf8d26"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e3133383730686b76653671383375327434796134336338646e326c70307871686b6766736137307479307733303034726c786d6e7361666c6c7938",
"quote_token": "0xb86d3633e9edc66e8ef1521df63ba07aa0eb9c68"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e313472386b6a7472727a37793973746a6e35617068706537636c7733666868376833376a776a36753868717663786c357865726771336532657532",
"quote_token": "0x543d21a4da28268703cd7b6c5777774d6208db32"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e313639686e61396c7a7474797067343765686175303468353465786d756c30723079396a37706c6178737767356e33646537666e716438776e7579",
"quote_token": "0x5a8f4d442c440b53b04d8491e3ff6990170e9d5b"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e313837656178666171656d67336e7466656e356a6b73656c77706b367636357a353438393266327070746c78356733703971736d73633967683463",
"quote_token": "0xa72294039dfffdff0012e5d1a02c1579fad8df78"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e316770763730376c643665383875776e6e7972756e7463716861753633773363703363666563356136346e63656a386830673970736b7267747376",
"quote_token": "0x854be77cba915cbc219b2498f1eda79a7c05ea1a"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e31686e756470353336706d7134726d32666a357a68366635737264646c32353366767a7a357470306d6b6b68707738726b7733757170786b6c336b",
"quote_token": "0x6c55c47d7c2d094597c2659a926973139e7e4e70"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e316c6670706c6e66716c7264727a6435703534796132387039397639386d3961743572736b6373723468653667636d74306766347171336c753339",
"quote_token": "0x6fa9adb851bb338670c5f60c8190796d3c2eb108"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e3170397a68377032667866337471766b306d64716e613273706b6a6c3030713230616a77656a34386d7a6d38327a6e61356e74377339707732706c",
"quote_token": "0x28f15a71127334fd9a255d063eccf0124e3ac4f0"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e31706b6d34376c3230656e73793538787877386e633774726b343670303870756c376468727661326135777938326773366e737071713338663463",
"quote_token": "0x727b6112ea9abd4596f906d7ad1ef27ad1176045"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e31737837346a3838706a6b326a6a6e6534323934726e396532643075377663366b637875673537363636796661636b747278743073733037326b63",
"quote_token": "0x79821ebaeffcdcb6112d68e3598dca34718e4862"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e31756e72687463373530743734713532306d326a617432686b6d37327175356478777a663734716c673274683765357234327335717a716c776163",
"quote_token": "0xf53040fd275e5f81709727a5dd3a4ca95dd428a6"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e317579797a71776e787135686d7234647267383836717a37777977376d6e78613836703979746d6b397a646b6375357a7230393573647164373537",
"quote_token": "0x9b86d9ef35131f6defe828ee51e8f86d4d2c1a1b"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e3179703965796d39723835333676703876686375716e356765687735677868776775717a6a3072397778337979776c61346467737170336d366a39",
"quote_token": "0x7da7c6dfedb14da6e4a82b9e15762812c03b8a1e"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e317a6a6a7168787276783363717378743436746638636a7a736b6a6679707665326675366b33706e743766376c6665726639397371707870617379",
"quote_token": "0xfadc1262f094b112b464045f759f35b3414f56f6"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x62626e317a7372763233616b6b6778646e77756c3732736674677632786a74356b68736e743377776a687030666668363833687a7035617135613068366e",
"quote_token": "0xc75aa280ec4a8c66fed434ce587980ae3a5c0a24"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "in",
"source_channel_id": 7,
"destination_channel_id": 1,
"base_token": "0x7562626e",
"quote_token": "0xe53dcec07d16d88e386ae0710e86d9a400f83c31"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 7,
"base_token": "0x337610d27c682e347c9cd60bd4b3b107c9d34ddd",
"quote_token": "0x62626e31326c676c6a343871616466636b376b71387a6d68723530766b74396177756b766a3732636b7030387a616a746373323935363873347a61767964"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 7,
"base_token": "0x64544969ed7ebf5f083679233325356ebe738930",
"quote_token": "0x62626e317073796c6c397361667879706a777a72686b72736a3337326c666571397068746530386b3567706479733865637a767532387171307878387737"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 7,
"base_token": "0xec5dcb5dbf4b114c9d0f65bccab49ec54f6a0867",
"quote_token": "0x62626e31363778757861756a3576636b3268353977686b73707778396a7139737a346c6e306e326672706b6e353033716e7464776465717164397837717a"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 7,
"base_token": "0xed24fc36d5ee211ea25a80239fb8c4cfd80f12ee",
"quote_token": "0x62626e31386e73646a366c6c776d7878636d3363767932757972356b3278716677336872726d3861336d36686a657861616b303030687973363973677273"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 7,
"base_token": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"quote_token": "0x62626e31633568666e6b766a64767439376670733835396b72686538617772777a33666d736a343436633465337a78713530773666756773326b6d633479"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0x337610d27c682e347c9cd60bd4b3b107c9d34ddd",
"quote_token": "0x6d584d1bc61272881c3f065c9f36345085ed4506"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0x64544969ed7ebf5f083679233325356ebe738930",
"quote_token": "0xd595af123824da8864823563d330e69b8f333ae2"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0x727b6112ea9abd4596f906d7ad1ef27ad1176045",
"quote_token": "0x933c2a331f2c8a64f3b64954f47d18154c2bef4f"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0xc75aa280ec4a8c66fed434ce587980ae3a5c0a24",
"quote_token": "0x43da31f28b68c6afbcac37b01f32f4a9b03f7032"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0xe53dcec07d16d88e386ae0710e86d9a400f83c31",
"quote_token": "0xed089a1a08095b1ddfbab903393129408cd2359e"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0xec5dcb5dbf4b114c9d0f65bccab49ec54f6a0867",
"quote_token": "0x766fb3f8c99dc13c3ba22a9b8f484085bda0814d"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0xed24fc36d5ee211ea25a80239fb8c4cfd80f12ee",
"quote_token": "0x19a2920cfc7008ff37f0b79d8da5fb12148b325e"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"quote_token": "0x4caf05080814e6ef3ee625fa664014309ba3327c"
},
{
"wrapped_universal_chain_id": "bsc.97",
"direction": "out",
"source_channel_id": 3,
"destination_channel_id": 5,
"base_token": "0xf53040fd275e5f81709727a5dd3a4ca95dd428a6",
"quote_token": "0x247eeb03613e1cb02bdb0d6b4bb10981aedb5e5f"
},
{
"wrapped_universal_chain_id": "corn.21000000",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 1,
"base_token": "0x6962632f36354430424543364441443936433746353034334431453534453534423642423544354233414543334646364345424237354239453035394633353830454133",
"quote_token": "0x92e8e45d2a47b65fcaf3ed4491beac2c6bc2cc3c"
},
{
"wrapped_universal_chain_id": "corn.21000000",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 1,
"base_token": "0x7562626e",
"quote_token": "0xe53dcec07d16d88e386ae0710e86d9a400f83c31"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x000f889c0216e7ed5eb5b8696a341d48ee41acca",
"quote_token": "0x18d5380a513d6215b4afaaefaa8f6525ac86a4e1"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x028454af7cb2679727ac4460fe638f38c91822cc",
"quote_token": "0xad4855960ed953fa6dc0bead260c4dff80628338"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x0f9da6d142781da4648f473e54cb48e775e6a24d",
"quote_token": "0x95e2b0031e05d347040ec01f9208bfdebc54e94f"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x2c83f8436cb29914504b12ea41733217934e4cac",
"quote_token": "0xe9f9fe771f0ec27d7676e2f7bd4ea557c31276d1"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x3a8de3b72fb7372e2c0df41171bf0adfb77539d7",
"quote_token": "0xcc9809828bfd5807d7b3132195d458eff3183936"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x41d631235d51cf47e1cafe5b14b4cac3045773c8",
"quote_token": "0xc1e1e3b9d2455800a3bc3f94e56bace439b40bc7"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x46103d47249b871273153a555af3e101359de4f6",
"quote_token": "0xa5145d441b97d06872865ef6d7afac2a87dfd9f2"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x4caf05080814e6ef3ee625fa664014309ba3327c",
"quote_token": "0x6030b18fb63b01f8c0579b19d4522079d5cdf938"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x7565dbcce313ad8b0d5fd47d3d32a602f8558505",
"quote_token": "0x840fe1ab480e198eca653580896f283c768c0bee"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0x8c640e81e5257e2d9257b39e3c1f9c61c239f88b",
"quote_token": "0x0c3a3fd325d2029ada01b4ce61774d64da29372b"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0xc20b0b8527d81ad5237f2f6b1d1ac82845b9b9cc",
"quote_token": "0x80f1efc7f277248907d3dd551abeb9ebf48b1265"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0xc26a55487b98b5d1060ed00cffbc358618b1a739",
"quote_token": "0x8ae005dc9faf1d89e2e2b55c88c74abf764325fb"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0xe8d58aead97aadfc0d661a8bf58aac42907795e2",
"quote_token": "0x2bbc964c5d9fe36ea2899894fe2a73fc52adc50d"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 2,
"destination_channel_id": 3,
"base_token": "0xeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee",
"quote_token": "0xe86bed5b0813430df660d17363b89fe9bd8232d8"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31326c676c6a343871616466636b376b71387a6d68723530766b74396177756b766a3732636b7030387a616a746373323935363873347a61767964",
"quote_token": "0xb8db179b325a8775a001b4f0206d386a897757e2"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e3133383730686b76653671383375327434796134336338646e326c70307871686b6766736137307479307733303034726c786d6e7361666c6c7938",
"quote_token": "0xb86d3633e9edc66e8ef1521df63ba07aa0eb9c68"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e313472386b6a7472727a37793973746a6e35617068706537636c7733666868376833376a776a36753868717663786c357865726771336532657532",
"quote_token": "0x543d21a4da28268703cd7b6c5777774d6208db32"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e313639686e61396c7a7474797067343765686175303468353465786d756c30723079396a37706c6178737767356e33646537666e716438776e7579",
"quote_token": "0x5a8f4d442c440b53b04d8491e3ff6990170e9d5b"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e313837656178666171656d67336e7466656e356a6b73656c77706b367636357a353438393266327070746c78356733703971736d73633967683463",
"quote_token": "0xa72294039dfffdff0012e5d1a02c1579fad8df78"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e313839737471737472776135677433346333613872686e6e656d633278323939386d6c65686b6d783773306b6476387266686b7771723966686375",
"quote_token": "0x947f91a78e6aa5358179ff5897c26c1a1f6babfc"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31386c776d63617a676e36673736383465617279773370306137783730786c61796b663473786a756a36366472763570726d6b377377643975786e",
"quote_token": "0x0dc4040589cc376f26633dee58dd6076902a091b"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31386e73646a366c6c776d7878636d3363767932757972356b3278716677336872726d3861336d36686a657861616b303030687973363973677273",
"quote_token": "0x433c92b70851f6d21a788e30d62a2aad9370e840"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31613364396d6432337537766475756739746773726379656a7630616d7a326a35653772767271347a716e70777964613670396471717a61667630",
"quote_token": "0x98e338c5e225099f0d279446e725d0afea11f09a"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31633568666e6b766a64767439376670733835396b72686538617772777a33666d736a343436633465337a78713530773666756773326b6d633479",
"quote_token": "0xdaca1ff74ca40da263722c2894e2800f6ff2c924"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e3164373935617437616e75366d72617538756736396a6c776138706d777175383863726b7363657168377665363879756d37683671636e3468637a",
"quote_token": "0x2e7b6fd249f753c30fb120490aebbf1ca6f8d989"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e3166376461743772703237396d306e3734347267386b743575616e3834753830377434766665727564737568746766337463763371673076786b30",
"quote_token": "0x2c9152ef8af622acd007b0dfab68f6e47b3a9ef3"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31676638643368396e71647a76637266647930686e7976746c6b68666e3079366439737173636c6a6e756663307234386b34733571616e646a396d",
"quote_token": "0x0307f121184a4c5420f6577e53487efbf7559c3a"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e316770763730376c643665383875776e6e7972756e7463716861753633773363703363666563356136346e63656a386830673970736b7267747376",
"quote_token": "0x854be77cba915cbc219b2498f1eda79a7c05ea1a"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31686e756470353336706d7134726d32666a357a68366635737264646c32353366767a7a357470306d6b6b68707738726b7733757170786b6c336b",
"quote_token": "0x6c55c47d7c2d094597c2659a926973139e7e4e70"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e3168786b34346b6a667a7170753832363379337738746637396c717737366573766b707a64366c6b6a65736b747734393734643071737767733961",
"quote_token": "0x8c9239c89e434f5e5fe454260b539ed08dbe9ea5"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e316a746e396e6e6b37336e736e6777676630616e6b6e7632746d706c617966707738367339336b7a6779656e386878687675667871386730636e71",
"quote_token": "0x91343ead3dac9438273212c73d5013baa4d0c2b6"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e316a7678766d716e747461616d36757536776577336533326d61646e323971676c676d6c6473326e6a363375636b75373766707673347a74356e37",
"quote_token": "0x4df0316a15a6884596e8083ff049f14f5b14bd2f"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e316c6670706c6e66716c7264727a6435703534796132387039397639386d3961743572736b6373723468653667636d74306766347171336c753339",
"quote_token": "0x6fa9adb851bb338670c5f60c8190796d3c2eb108"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e316e7365797568637a306a7371633075323737343473726d6c65666763336461386c6a6e6d656d33337a6c7275613575357372747176377a776d71",
"quote_token": "0x4e06bcf765e687b7632271e13fb61bca68120c33"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31706b6d34376c3230656e73793538787877386e633774726b343670303870756c376468727661326135777938326773366e737071713338663463",
"quote_token": "0x727b6112ea9abd4596f906d7ad1ef27ad1176045"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e317073796c6c397361667879706a777a72686b72736a3337326c666571397068746530386b3567706479733865637a767532387171307878387737",
"quote_token": "0x27a2479db874ae2459075fd87c695cc37f4644c3"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e3172397068746a68686470726d6675756c663578706a766871777a743875736a79656b636e6e307471616b337a6365356736353571366e33713572",
"quote_token": "0x71cebdc2db7764659b21af2d132f0c0fdb91feaa"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31737837346a3838706a6b326a6a6e6534323934726e396532643075377663366b637875673537363636796661636b747278743073733037326b63",
"quote_token": "0x79821ebaeffcdcb6112d68e3598dca34718e4862"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31746a66366c6b6363616438757576776d73787032796a676a3871637375356a6535653430767472726a326c3771707a397a677a7334777a643768",
"quote_token": "0x245ffda2d50ec66f68b1036aab7346fe159fd902"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31747737377279677a63647a6c7837717735637233756c306e7867357a653937376e306335657878796b7378717564757364793371636776613738",
"quote_token": "0x3192e9b73a3295564e68b99d208ec98485b84bd5"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e31756e72687463373530743734713532306d326a617432686b6d37327175356478777a663734716c673274683765357234327335717a716c776163",
"quote_token": "0xf53040fd275e5f81709727a5dd3a4ca95dd428a6"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e317579797a71776e787135686d7234647267383836717a37777977376d6e78613836703979746d6b397a646b6375357a7230393573647164373537",
"quote_token": "0x9b86d9ef35131f6defe828ee51e8f86d4d2c1a1b"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e3179703965796d39723835333676703876686375716e356765687735677868776775717a6a3072397778337979776c61346467737170336d366a39",
"quote_token": "0x7da7c6dfedb14da6e4a82b9e15762812c03b8a1e"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e317a67757271687a79766e767a687a776b616176337033636a6366667237656a32376763347a36303471753470337a686167767671356875667566",
"quote_token": "0x1f3951f73ce13a24a52fd9c229f250ad3cb9c79d"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e317a6a6a7168787276783363717378743436746638636a7a736b6a6679707665326675366b33706e743766376c6665726639397371707870617379",
"quote_token": "0xfadc1262f094b112b464045f759f35b3414f56f6"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x62626e317a7372763233616b6b6778646e77756c3732736674677632786a74356b68736e743377776a687030666668363833687a7035617135613068366e",
"quote_token": "0xc75aa280ec4a8c66fed434ce587980ae3a5c0a24"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 1,
"base_token": "0x7562626e",
"quote_token": "0xe53dcec07d16d88e386ae0710e86d9a400f83c31"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x6962632f31334232433533364242303537414337394435363136423845413142393534304543314632313730373138434146463646303038334339363646464645443042",
"quote_token": "0x36ca71245cc2cb21648ab21522b85bbd0be1092a"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x6962632f36343930413745414236313035394246433143444445423035393137444437304244463341363131363534313632413141343744423933304434304438414634",
"quote_token": "0x66e6e0b309ae5e359017ae2509f9c3cb1a726b0c"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x7578696f6e",
"quote_token": "0xe6636c002bb978ef54f881a76e54c281151da1f0"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e3130306a6a35377534726e61347763646e6e387078766e616378766d306678367a61617a6a357871713535357379767661653277737173756d3079",
"quote_token": "0x312dd28ead5ce9306477a05db247d6a4f95b9878"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e3130397a7a366c677836746661386763306e7a6b3673777a6b6a727566676a7778367271726d64676d6b6b7635726d336833777173396d387a6d71",
"quote_token": "0x274e243468c2d2cd904dd0a386c464675e1359d7"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e3132766b3361386c7a3637646530357a6c7176713530707670643270636a66777674777a74356676647437357a3875333279326571686466323976",
"quote_token": "0x64d6560c3a194114e7641dbe95d09ccf7d869eb6"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e313565366e717770686a65676d666c706733386b65306864323630686c70667876346575746778677a76796d6467766a3530327773346a37336877",
"quote_token": "0x69e01493efe3c6235f3888a22e8e6ed0a2126cfb"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31357336723530657563757a7a3374327271336e376778396a7a7a643268753475676d3464646d6a746a7770786b79706a35616771356472776332",
"quote_token": "0x86207513c7cd6c839380a78e973cbef356ad8e4f"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e3138307065713565757135646630796c336b73717830776c36666c7532706661663463336d716c706734357a756a70336a743435737a646d78386d",
"quote_token": "0xdd73de62cab71e227603ede951a174d78e9f0e11"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31387838757a74646b36306a7434616e776e7332746a737a663779673276716a6b326867717973357061746d6c6e656665676b7571356b65646371",
"quote_token": "0x08af5a4d9bca3d781c346e62d762f31aaf86f318"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e313968396766643237616b6375777161646736646e39346132327063376877777a756b613738666c736e6475666a71676a73637873766b766b7679",
"quote_token": "0xcc8a38e1c1c2a4a951f4c03353ad71602a4b6657"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31397539736178366c61683635636e75377465763766396474776a716a6532736d72616579337a32366578326870306d6a7368787333636d676774",
"quote_token": "0xee9cbb7c13b51b5a303a8bd23e450d26c0c1e432"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31613866707239383530617a707868646a66787a7a786e6b6b3564736c36387436646d747279377572657661387271307273326473337233727770",
"quote_token": "0xb48da49ab9ca2fe304b39df2864b9089a946ffa4"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e316764647278686367307037616838617374616a78776c6a656838346e737074366734783338756b686c30766c347174667a71337364616477676b",
"quote_token": "0xe7e5d674e0a1079e2d549e73cbf26b791f71999c"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e316a30687036717a7467617a6137743079386476633232656176767671796473336b7a653538646c716b756c79733872326b633873396d7030736d",
"quote_token": "0x23394cf3a76f2dc8dc2e1724289e94de345bf410"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e316a32617775347533676c306332646539327033656863333065686a3874386d30617230756866686c6c6b76767978743972377671783973753373",
"quote_token": "0x5414a52ef8904d52f9857db4512385de7c1f6762"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e316a7671327a7737646e737a347a6371763463366a72677a6e796771766a613876346b727977727074783436346d706b3337377a7165763068646c",
"quote_token": "0xca5eb9b9112fd0e1da5a62fd9404b13873306091"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e316b76377a7278686364723537363261727732327734716b6871726c307164783574746d6673687978746739346e356b6b6d376773363332763266",
"quote_token": "0x9580b490e947f4bf8dcef17d4251e15cbadea65a"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e316d6d68796a3779656130366d3539776d30726e707664666a7966637037386d71347470633974673478736d747434657235637471757365386534",
"quote_token": "0xdaa6bb99b11ac97baa38e1136a4d604b1d169b7f"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e316e3436637175343673366c39787936763839346a707066616c6664376e3330733567613436777936746b7078766539347968377161636d793436",
"quote_token": "0x85c16ec1dd17b1158216e4d4850ee0532f58e26c"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31703863656167737466616c30797330716c3967666564707138393572676a717779616d686c6c30796b76773472366a70356c6c733570346c7763",
"quote_token": "0x5dc233b6c82f2f19d78e7f809810240637083165"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e317463307468336766636e33746a387830746c33307575633478687770357479656671637273306c65786573747737793430646173367165726739",
"quote_token": "0x20f57078ba042b1ccc50055f758bab016c44b02a"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31746d733932636d33346c786c6e346b76787732786473676e63756d7a6570723565326575673930766d74797735357a38646a757176776e656537",
"quote_token": "0xd9b73bd1174928caafbc0ee728c24a7a7f4f3221"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31753374643434726a63396b706b786779786b383263323768796c79633565646e766d36746e74617633646d797775376c66666c7134713075366e",
"quote_token": "0x9a6672ab5c33ebb1f2d49f3be1b1617f86578729"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31756839757a656e756539746674346570383963656461707a65386c6833616b76346575613532767a793770686b66336e676d7573773770366a77",
"quote_token": "0x4c0daa121ffc9f7d6e75c1326a77db1c60c6efb0"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e3175746b687939756e6d33396d75346a716b7371337738777a737535366a6b707239383579786a6c7a6d64366c65787a37706d717177786b617672",
"quote_token": "0x699a85ca9851c0de80fe9cffa2b6188be210489e"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e317761796c77373373383861756e33377732766a7376676b6e337672766a356c6e666768706c677835667564347070346e30386871393776357a70",
"quote_token": "0xca69dd52e1693d2a338e8b44af90f96a6a4d61c1"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e31796d32676c687264666835386d65726e3434333870796a753377686a3074717367706b6e686864676a78716c71303770686a7173306432367430",
"quote_token": "0xb15b284760f19dc680d4f842a6e10087e4ac35de"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "in",
"source_channel_id": 3,
"destination_channel_id": 2,
"base_token": "0x78696f6e3179746b3535676e6576667871337a3030326a64686b686778356c6d6e396b34376a6167366d647a7478786e3035673838643464737a7767617778",
"quote_token": "0xf4e570961c544fffb5f7fdb1b1abf2c7d4b6d591"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 3,
"base_token": "0x20f57078ba042b1ccc50055f758bab016c44b02a",
"quote_token": "0x62626e31736138363776386c3772356661787033753074726e706e7274767779636d63616a39716e6379337763726a3065366d3838373473657434373778"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 3,
"base_token": "0x23394cf3a76f2dc8dc2e1724289e94de345bf410",
"quote_token": "0x62626e31747a653865786579757175647234767073616374687a6535656b7537366877396c3475667a326575636d38686574356377303871787339766e70"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 3,
"base_token": "0x6030b18fb63b01f8c0579b19d4522079d5cdf938",
"quote_token": "0x62626e316e39766c6c3836666536686368306a346e667873667679376b7868763565657763767530327a6d32757a6861737238337066797372757a386732"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 3,
"base_token": "0x66e6e0b309ae5e359017ae2509f9c3cb1a726b0c",
"quote_token": "0x62626e313237396a70327a7265337239646d73346437747074793363796e397a65796b656b37766637676c637563346a6d6a773968327773347663366866"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 3,
"base_token": "0x840fe1ab480e198eca653580896f283c768c0bee",
"quote_token": "0x62626e3166386a786b39377738367a727a68346867636b6b36736335687a79666b6d6561363479736b3370717a39356e32617964733877716d6b736b796b"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 3,
"base_token": "0x85c16ec1dd17b1158216e4d4850ee0532f58e26c",
"quote_token": "0x62626e31777178706e6467777032706465356e386b65346a67636e763865746679647774306d383668793661326561646b74366d6d366c73746a6b687163"
},
{
"wrapped_universal_chain_id": "corn.21000001",
"direction": "out",
"source_channel_id": 1,
"destination_channel_id": 3,
"base_token": "0xb15b284760f19dc680d4f842a6e10087e4ac35de",
"quote_token": "0x62626e31653467656b6b397a793679386d397578667274643974637a35727836667938616d3766326d326a786e74326432766d3835726a73677265727773"