@chain-registry/assets 1.42.7 → 1.42.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (73) hide show
  1. package/esm/mainnet/acrechain.js +2 -2
  2. package/esm/mainnet/agoric.js +2 -2
  3. package/esm/mainnet/archway.js +8 -0
  4. package/esm/mainnet/axelar.js +42 -2
  5. package/esm/mainnet/bandchain.js +8 -0
  6. package/esm/mainnet/bitsong.js +8 -0
  7. package/esm/mainnet/carbon.js +10 -2
  8. package/esm/mainnet/celestia.js +2 -2
  9. package/esm/mainnet/composable.js +26 -2
  10. package/esm/mainnet/coreum.js +2 -2
  11. package/esm/mainnet/cosmoshub.js +50 -2
  12. package/esm/mainnet/crescent.js +2 -2
  13. package/esm/mainnet/cryptoorgchain.js +2 -2
  14. package/esm/mainnet/doravota.js +8 -0
  15. package/esm/mainnet/dydx.js +10 -2
  16. package/esm/mainnet/dymension.js +2 -2
  17. package/esm/mainnet/evmos.js +24 -0
  18. package/esm/mainnet/gateway.js +2 -2
  19. package/esm/mainnet/gravitybridge.js +42 -2
  20. package/esm/mainnet/injective.js +2 -2
  21. package/esm/mainnet/juno.js +24 -0
  22. package/esm/mainnet/kava.js +10 -2
  23. package/esm/mainnet/kujira.js +42 -2
  24. package/esm/mainnet/migaloo.js +16 -0
  25. package/esm/mainnet/neutron.js +18 -2
  26. package/esm/mainnet/noble.js +10 -2
  27. package/esm/mainnet/oraichain.js +32 -0
  28. package/esm/mainnet/osmosis.js +116 -4
  29. package/esm/mainnet/persistence.js +16 -0
  30. package/esm/mainnet/saga.js +78 -0
  31. package/esm/mainnet/secretnetwork.js +112 -2
  32. package/esm/mainnet/stargaze.js +18 -2
  33. package/esm/mainnet/stride.js +20 -4
  34. package/esm/mainnet/terra.js +16 -0
  35. package/esm/mainnet/terra2.js +32 -0
  36. package/esm/mainnet/tgrade.js +2 -2
  37. package/mainnet/acrechain.js +2 -2
  38. package/mainnet/agoric.js +2 -2
  39. package/mainnet/archway.js +8 -0
  40. package/mainnet/axelar.js +42 -2
  41. package/mainnet/bandchain.js +8 -0
  42. package/mainnet/bitsong.js +8 -0
  43. package/mainnet/carbon.js +10 -2
  44. package/mainnet/celestia.js +2 -2
  45. package/mainnet/composable.js +26 -2
  46. package/mainnet/coreum.js +2 -2
  47. package/mainnet/cosmoshub.js +50 -2
  48. package/mainnet/crescent.js +2 -2
  49. package/mainnet/cryptoorgchain.js +2 -2
  50. package/mainnet/doravota.js +8 -0
  51. package/mainnet/dydx.js +10 -2
  52. package/mainnet/dymension.js +2 -2
  53. package/mainnet/evmos.js +24 -0
  54. package/mainnet/gateway.js +2 -2
  55. package/mainnet/gravitybridge.js +42 -2
  56. package/mainnet/injective.js +2 -2
  57. package/mainnet/juno.js +24 -0
  58. package/mainnet/kava.js +10 -2
  59. package/mainnet/kujira.js +42 -2
  60. package/mainnet/migaloo.js +16 -0
  61. package/mainnet/neutron.js +18 -2
  62. package/mainnet/noble.js +10 -2
  63. package/mainnet/oraichain.js +32 -0
  64. package/mainnet/osmosis.js +116 -4
  65. package/mainnet/persistence.js +16 -0
  66. package/mainnet/saga.js +78 -0
  67. package/mainnet/secretnetwork.js +112 -2
  68. package/mainnet/stargaze.js +18 -2
  69. package/mainnet/stride.js +20 -4
  70. package/mainnet/terra.js +16 -0
  71. package/mainnet/terra2.js +32 -0
  72. package/mainnet/tgrade.js +2 -2
  73. package/package.json +5 -5
@@ -26,6 +26,10 @@ const assets = {
26
26
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
27
27
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
28
28
  }],
29
+ socials: {
30
+ website: 'https://arable.finance/',
31
+ twitter: 'https://twitter.com/ArableProtocol'
32
+ },
29
33
  traces: [{
30
34
  type: 'ibc',
31
35
  counterparty: {
@@ -61,6 +65,10 @@ const assets = {
61
65
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
62
66
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
63
67
  }],
68
+ socials: {
69
+ website: 'https://arable.finance/',
70
+ twitter: 'https://twitter.com/ArableProtocol'
71
+ },
64
72
  traces: [{
65
73
  type: 'ibc',
66
74
  counterparty: {
@@ -292,6 +300,10 @@ const assets = {
292
300
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
293
301
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
294
302
  }],
303
+ socials: {
304
+ website: 'https://www.coreum.com/',
305
+ twitter: 'https://twitter.com/CoreumOfficial'
306
+ },
295
307
  traces: [{
296
308
  type: 'ibc',
297
309
  counterparty: {
@@ -437,7 +449,7 @@ const assets = {
437
449
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
438
450
  }],
439
451
  socials: {
440
- webiste: 'https://www.neokingdom.org/',
452
+ website: 'https://www.neokingdom.org/',
441
453
  twitter: 'https://twitter.com/NEOKingdomDAO'
442
454
  },
443
455
  traces: [{
@@ -547,6 +559,10 @@ const assets = {
547
559
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
548
560
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
549
561
  }],
562
+ socials: {
563
+ website: 'https://arable.finance/',
564
+ twitter: 'https://twitter.com/ArableProtocol'
565
+ },
550
566
  traces: [{
551
567
  type: 'ibc',
552
568
  counterparty: {
@@ -582,6 +598,10 @@ const assets = {
582
598
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
583
599
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
584
600
  }],
601
+ socials: {
602
+ website: 'https://arable.finance/',
603
+ twitter: 'https://twitter.com/ArableProtocol'
604
+ },
585
605
  traces: [{
586
606
  type: 'ibc',
587
607
  counterparty: {
@@ -813,6 +833,10 @@ const assets = {
813
833
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
814
834
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
815
835
  }],
836
+ socials: {
837
+ website: 'https://www.coreum.com/',
838
+ twitter: 'https://twitter.com/CoreumOfficial'
839
+ },
816
840
  traces: [{
817
841
  type: 'ibc',
818
842
  counterparty: {
@@ -958,7 +982,7 @@ const assets = {
958
982
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
959
983
  }],
960
984
  socials: {
961
- webiste: 'https://www.neokingdom.org/',
985
+ website: 'https://www.neokingdom.org/',
962
986
  twitter: 'https://twitter.com/NEOKingdomDAO'
963
987
  },
964
988
  traces: [{
@@ -2155,6 +2179,10 @@ const assets = {
2155
2179
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
2156
2180
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
2157
2181
  }],
2182
+ socials: {
2183
+ website: 'http://alter.network/',
2184
+ twitter: 'https://twitter.com/AlterDapp'
2185
+ },
2158
2186
  traces: [{
2159
2187
  type: 'ibc-cw20',
2160
2188
  counterparty: {
@@ -2193,6 +2221,10 @@ const assets = {
2193
2221
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
2194
2222
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
2195
2223
  }],
2224
+ socials: {
2225
+ website: 'http://amber.money/',
2226
+ twitter: 'https://twitter.com/AmberDAO_'
2227
+ },
2196
2228
  traces: [{
2197
2229
  type: 'ibc-cw20',
2198
2230
  counterparty: {
@@ -2499,6 +2531,10 @@ const assets = {
2499
2531
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
2500
2532
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
2501
2533
  }],
2534
+ socials: {
2535
+ website: 'http://alter.network/',
2536
+ twitter: 'https://twitter.com/AlterDapp'
2537
+ },
2502
2538
  traces: [{
2503
2539
  type: 'ibc-cw20',
2504
2540
  counterparty: {
@@ -2537,6 +2573,10 @@ const assets = {
2537
2573
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
2538
2574
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
2539
2575
  }],
2576
+ socials: {
2577
+ website: 'http://amber.money/',
2578
+ twitter: 'https://twitter.com/AmberDAO_'
2579
+ },
2540
2580
  traces: [{
2541
2581
  type: 'ibc-cw20',
2542
2582
  counterparty: {
@@ -321,7 +321,7 @@ const assets = {
321
321
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
322
322
  }],
323
323
  socials: {
324
- webiste: 'https://www.neokingdom.org/',
324
+ website: 'https://www.neokingdom.org/',
325
325
  twitter: 'https://twitter.com/NEOKingdomDAO'
326
326
  },
327
327
  traces: [{
@@ -782,7 +782,7 @@ const assets = {
782
782
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
783
783
  }],
784
784
  socials: {
785
- webiste: 'https://www.neokingdom.org/',
785
+ website: 'https://www.neokingdom.org/',
786
786
  twitter: 'https://twitter.com/NEOKingdomDAO'
787
787
  },
788
788
  traces: [{
package/mainnet/juno.js CHANGED
@@ -143,6 +143,10 @@ const assets = {
143
143
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png',
144
144
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg'
145
145
  }],
146
+ socials: {
147
+ website: 'http://www.bitcanna.io/',
148
+ twitter: 'https://twitter.com/BitCannaGlobal'
149
+ },
146
150
  traces: [{
147
151
  type: 'ibc',
148
152
  counterparty: {
@@ -869,6 +873,10 @@ const assets = {
869
873
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.png',
870
874
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/bitcanna/images/bcna.svg'
871
875
  }],
876
+ socials: {
877
+ website: 'http://www.bitcanna.io/',
878
+ twitter: 'https://twitter.com/BitCannaGlobal'
879
+ },
872
880
  traces: [{
873
881
  type: 'ibc',
874
882
  counterparty: {
@@ -4897,6 +4905,10 @@ const assets = {
4897
4905
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
4898
4906
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
4899
4907
  }],
4908
+ socials: {
4909
+ website: 'http://alter.network/',
4910
+ twitter: 'https://twitter.com/AlterDapp'
4911
+ },
4900
4912
  traces: [{
4901
4913
  type: 'ibc-cw20',
4902
4914
  counterparty: {
@@ -4935,6 +4947,10 @@ const assets = {
4935
4947
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
4936
4948
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
4937
4949
  }],
4950
+ socials: {
4951
+ website: 'http://amber.money/',
4952
+ twitter: 'https://twitter.com/AmberDAO_'
4953
+ },
4938
4954
  traces: [{
4939
4955
  type: 'ibc-cw20',
4940
4956
  counterparty: {
@@ -5241,6 +5257,10 @@ const assets = {
5241
5257
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
5242
5258
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
5243
5259
  }],
5260
+ socials: {
5261
+ website: 'http://alter.network/',
5262
+ twitter: 'https://twitter.com/AlterDapp'
5263
+ },
5244
5264
  traces: [{
5245
5265
  type: 'ibc-cw20',
5246
5266
  counterparty: {
@@ -5279,6 +5299,10 @@ const assets = {
5279
5299
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
5280
5300
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
5281
5301
  }],
5302
+ socials: {
5303
+ website: 'http://amber.money/',
5304
+ twitter: 'https://twitter.com/AmberDAO_'
5305
+ },
5282
5306
  traces: [{
5283
5307
  type: 'ibc-cw20',
5284
5308
  counterparty: {
package/mainnet/kava.js CHANGED
@@ -108,6 +108,10 @@ const assets = {
108
108
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
109
109
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
110
110
  }],
111
+ socials: {
112
+ website: 'https://www.coreum.com/',
113
+ twitter: 'https://twitter.com/CoreumOfficial'
114
+ },
111
115
  traces: [{
112
116
  type: 'ibc',
113
117
  counterparty: {
@@ -305,7 +309,7 @@ const assets = {
305
309
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
306
310
  }],
307
311
  socials: {
308
- webiste: 'https://www.neokingdom.org/',
312
+ website: 'https://www.neokingdom.org/',
309
313
  twitter: 'https://twitter.com/NEOKingdomDAO'
310
314
  },
311
315
  traces: [{
@@ -635,6 +639,10 @@ const assets = {
635
639
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
636
640
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
637
641
  }],
642
+ socials: {
643
+ website: 'https://www.coreum.com/',
644
+ twitter: 'https://twitter.com/CoreumOfficial'
645
+ },
638
646
  traces: [{
639
647
  type: 'ibc',
640
648
  counterparty: {
@@ -832,7 +840,7 @@ const assets = {
832
840
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
833
841
  }],
834
842
  socials: {
835
- webiste: 'https://www.neokingdom.org/',
843
+ website: 'https://www.neokingdom.org/',
836
844
  twitter: 'https://twitter.com/NEOKingdomDAO'
837
845
  },
838
846
  traces: [{
package/mainnet/kujira.js CHANGED
@@ -26,6 +26,10 @@ const assets = {
26
26
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
27
27
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
28
28
  }],
29
+ socials: {
30
+ website: 'https://arable.finance/',
31
+ twitter: 'https://twitter.com/ArableProtocol'
32
+ },
29
33
  traces: [{
30
34
  type: 'ibc',
31
35
  counterparty: {
@@ -61,6 +65,10 @@ const assets = {
61
65
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
62
66
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
63
67
  }],
68
+ socials: {
69
+ website: 'https://arable.finance/',
70
+ twitter: 'https://twitter.com/ArableProtocol'
71
+ },
64
72
  traces: [{
65
73
  type: 'ibc',
66
74
  counterparty: {
@@ -621,6 +629,10 @@ const assets = {
621
629
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
622
630
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
623
631
  }],
632
+ socials: {
633
+ website: 'https://www.coreum.com/',
634
+ twitter: 'https://twitter.com/CoreumOfficial'
635
+ },
624
636
  traces: [{
625
637
  type: 'ibc',
626
638
  counterparty: {
@@ -888,7 +900,7 @@ const assets = {
888
900
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
889
901
  }],
890
902
  socials: {
891
- webiste: 'https://www.neokingdom.org/',
903
+ website: 'https://www.neokingdom.org/',
892
904
  twitter: 'https://twitter.com/NEOKingdomDAO'
893
905
  },
894
906
  traces: [{
@@ -1493,6 +1505,10 @@ const assets = {
1493
1505
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
1494
1506
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
1495
1507
  }],
1508
+ socials: {
1509
+ website: 'https://arable.finance/',
1510
+ twitter: 'https://twitter.com/ArableProtocol'
1511
+ },
1496
1512
  traces: [{
1497
1513
  type: 'ibc',
1498
1514
  counterparty: {
@@ -1528,6 +1544,10 @@ const assets = {
1528
1544
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
1529
1545
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
1530
1546
  }],
1547
+ socials: {
1548
+ website: 'https://arable.finance/',
1549
+ twitter: 'https://twitter.com/ArableProtocol'
1550
+ },
1531
1551
  traces: [{
1532
1552
  type: 'ibc',
1533
1553
  counterparty: {
@@ -2088,6 +2108,10 @@ const assets = {
2088
2108
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
2089
2109
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
2090
2110
  }],
2111
+ socials: {
2112
+ website: 'https://www.coreum.com/',
2113
+ twitter: 'https://twitter.com/CoreumOfficial'
2114
+ },
2091
2115
  traces: [{
2092
2116
  type: 'ibc',
2093
2117
  counterparty: {
@@ -2355,7 +2379,7 @@ const assets = {
2355
2379
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
2356
2380
  }],
2357
2381
  socials: {
2358
- webiste: 'https://www.neokingdom.org/',
2382
+ website: 'https://www.neokingdom.org/',
2359
2383
  twitter: 'https://twitter.com/NEOKingdomDAO'
2360
2384
  },
2361
2385
  traces: [{
@@ -5339,6 +5363,10 @@ const assets = {
5339
5363
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
5340
5364
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
5341
5365
  }],
5366
+ socials: {
5367
+ website: 'http://alter.network/',
5368
+ twitter: 'https://twitter.com/AlterDapp'
5369
+ },
5342
5370
  traces: [{
5343
5371
  type: 'ibc-cw20',
5344
5372
  counterparty: {
@@ -5377,6 +5405,10 @@ const assets = {
5377
5405
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
5378
5406
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
5379
5407
  }],
5408
+ socials: {
5409
+ website: 'http://amber.money/',
5410
+ twitter: 'https://twitter.com/AmberDAO_'
5411
+ },
5380
5412
  traces: [{
5381
5413
  type: 'ibc-cw20',
5382
5414
  counterparty: {
@@ -6661,6 +6693,10 @@ const assets = {
6661
6693
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
6662
6694
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
6663
6695
  }],
6696
+ socials: {
6697
+ website: 'http://alter.network/',
6698
+ twitter: 'https://twitter.com/AlterDapp'
6699
+ },
6664
6700
  traces: [{
6665
6701
  type: 'ibc-cw20',
6666
6702
  counterparty: {
@@ -6699,6 +6735,10 @@ const assets = {
6699
6735
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
6700
6736
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
6701
6737
  }],
6738
+ socials: {
6739
+ website: 'http://amber.money/',
6740
+ twitter: 'https://twitter.com/AmberDAO_'
6741
+ },
6702
6742
  traces: [{
6703
6743
  type: 'ibc-cw20',
6704
6744
  counterparty: {
@@ -2083,6 +2083,10 @@ const assets = {
2083
2083
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
2084
2084
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
2085
2085
  }],
2086
+ socials: {
2087
+ website: 'http://alter.network/',
2088
+ twitter: 'https://twitter.com/AlterDapp'
2089
+ },
2086
2090
  traces: [{
2087
2091
  type: 'ibc-cw20',
2088
2092
  counterparty: {
@@ -2121,6 +2125,10 @@ const assets = {
2121
2125
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
2122
2126
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
2123
2127
  }],
2128
+ socials: {
2129
+ website: 'http://amber.money/',
2130
+ twitter: 'https://twitter.com/AmberDAO_'
2131
+ },
2124
2132
  traces: [{
2125
2133
  type: 'ibc-cw20',
2126
2134
  counterparty: {
@@ -9940,6 +9948,10 @@ const assets = {
9940
9948
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
9941
9949
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
9942
9950
  }],
9951
+ socials: {
9952
+ website: 'http://alter.network/',
9953
+ twitter: 'https://twitter.com/AlterDapp'
9954
+ },
9943
9955
  traces: [{
9944
9956
  type: 'ibc-cw20',
9945
9957
  counterparty: {
@@ -9978,6 +9990,10 @@ const assets = {
9978
9990
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
9979
9991
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
9980
9992
  }],
9993
+ socials: {
9994
+ website: 'http://amber.money/',
9995
+ twitter: 'https://twitter.com/AmberDAO_'
9996
+ },
9981
9997
  traces: [{
9982
9998
  type: 'ibc-cw20',
9983
9999
  counterparty: {
@@ -1628,7 +1628,7 @@ const assets = {
1628
1628
  }
1629
1629
  }],
1630
1630
  socials: {
1631
- webiste: 'https://www.saga.xyz/',
1631
+ website: 'https://www.saga.xyz/',
1632
1632
  twitter: 'https://twitter.com/Sagaxyz__'
1633
1633
  },
1634
1634
  traces: [{
@@ -2207,7 +2207,7 @@ const assets = {
2207
2207
  }
2208
2208
  }],
2209
2209
  socials: {
2210
- webiste: 'https://www.saga.xyz/',
2210
+ website: 'https://www.saga.xyz/',
2211
2211
  twitter: 'https://twitter.com/Sagaxyz__'
2212
2212
  },
2213
2213
  traces: [{
@@ -2849,6 +2849,10 @@ const assets = {
2849
2849
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
2850
2850
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
2851
2851
  }],
2852
+ socials: {
2853
+ website: 'http://alter.network/',
2854
+ twitter: 'https://twitter.com/AlterDapp'
2855
+ },
2852
2856
  traces: [{
2853
2857
  type: 'ibc-cw20',
2854
2858
  counterparty: {
@@ -2887,6 +2891,10 @@ const assets = {
2887
2891
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
2888
2892
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
2889
2893
  }],
2894
+ socials: {
2895
+ website: 'http://amber.money/',
2896
+ twitter: 'https://twitter.com/AmberDAO_'
2897
+ },
2890
2898
  traces: [{
2891
2899
  type: 'ibc-cw20',
2892
2900
  counterparty: {
@@ -4171,6 +4179,10 @@ const assets = {
4171
4179
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
4172
4180
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
4173
4181
  }],
4182
+ socials: {
4183
+ website: 'http://alter.network/',
4184
+ twitter: 'https://twitter.com/AlterDapp'
4185
+ },
4174
4186
  traces: [{
4175
4187
  type: 'ibc-cw20',
4176
4188
  counterparty: {
@@ -4209,6 +4221,10 @@ const assets = {
4209
4221
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
4210
4222
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
4211
4223
  }],
4224
+ socials: {
4225
+ website: 'http://amber.money/',
4226
+ twitter: 'https://twitter.com/AmberDAO_'
4227
+ },
4212
4228
  traces: [{
4213
4229
  type: 'ibc-cw20',
4214
4230
  counterparty: {
package/mainnet/noble.js CHANGED
@@ -188,6 +188,10 @@ const assets = {
188
188
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
189
189
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
190
190
  }],
191
+ socials: {
192
+ website: 'https://www.coreum.com/',
193
+ twitter: 'https://twitter.com/CoreumOfficial'
194
+ },
191
195
  traces: [{
192
196
  type: 'ibc',
193
197
  counterparty: {
@@ -455,7 +459,7 @@ const assets = {
455
459
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
456
460
  }],
457
461
  socials: {
458
- webiste: 'https://www.neokingdom.org/',
462
+ website: 'https://www.neokingdom.org/',
459
463
  twitter: 'https://twitter.com/NEOKingdomDAO'
460
464
  },
461
465
  traces: [{
@@ -1225,6 +1229,10 @@ const assets = {
1225
1229
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.png',
1226
1230
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/coreum/images/coreum.svg'
1227
1231
  }],
1232
+ socials: {
1233
+ website: 'https://www.coreum.com/',
1234
+ twitter: 'https://twitter.com/CoreumOfficial'
1235
+ },
1228
1236
  traces: [{
1229
1237
  type: 'ibc',
1230
1238
  counterparty: {
@@ -1492,7 +1500,7 @@ const assets = {
1492
1500
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/evmos/images/neok.svg'
1493
1501
  }],
1494
1502
  socials: {
1495
- webiste: 'https://www.neokingdom.org/',
1503
+ website: 'https://www.neokingdom.org/',
1496
1504
  twitter: 'https://twitter.com/NEOKingdomDAO'
1497
1505
  },
1498
1506
  traces: [{
@@ -26,6 +26,10 @@ const assets = {
26
26
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
27
27
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
28
28
  }],
29
+ socials: {
30
+ website: 'https://arable.finance/',
31
+ twitter: 'https://twitter.com/ArableProtocol'
32
+ },
29
33
  traces: [{
30
34
  type: 'ibc',
31
35
  counterparty: {
@@ -61,6 +65,10 @@ const assets = {
61
65
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
62
66
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
63
67
  }],
68
+ socials: {
69
+ website: 'https://arable.finance/',
70
+ twitter: 'https://twitter.com/ArableProtocol'
71
+ },
64
72
  traces: [{
65
73
  type: 'ibc',
66
74
  counterparty: {
@@ -272,6 +280,10 @@ const assets = {
272
280
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.png',
273
281
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/acre.svg'
274
282
  }],
283
+ socials: {
284
+ website: 'https://arable.finance/',
285
+ twitter: 'https://twitter.com/ArableProtocol'
286
+ },
275
287
  traces: [{
276
288
  type: 'ibc',
277
289
  counterparty: {
@@ -307,6 +319,10 @@ const assets = {
307
319
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.png',
308
320
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/acrechain/images/arusd.svg'
309
321
  }],
322
+ socials: {
323
+ website: 'https://arable.finance/',
324
+ twitter: 'https://twitter.com/ArableProtocol'
325
+ },
310
326
  traces: [{
311
327
  type: 'ibc',
312
328
  counterparty: {
@@ -989,6 +1005,10 @@ const assets = {
989
1005
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
990
1006
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
991
1007
  }],
1008
+ socials: {
1009
+ website: 'http://alter.network/',
1010
+ twitter: 'https://twitter.com/AlterDapp'
1011
+ },
992
1012
  traces: [{
993
1013
  type: 'ibc-cw20',
994
1014
  counterparty: {
@@ -1027,6 +1047,10 @@ const assets = {
1027
1047
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
1028
1048
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
1029
1049
  }],
1050
+ socials: {
1051
+ website: 'http://amber.money/',
1052
+ twitter: 'https://twitter.com/AmberDAO_'
1053
+ },
1030
1054
  traces: [{
1031
1055
  type: 'ibc-cw20',
1032
1056
  counterparty: {
@@ -1333,6 +1357,10 @@ const assets = {
1333
1357
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.png',
1334
1358
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/alter.svg'
1335
1359
  }],
1360
+ socials: {
1361
+ website: 'http://alter.network/',
1362
+ twitter: 'https://twitter.com/AlterDapp'
1363
+ },
1336
1364
  traces: [{
1337
1365
  type: 'ibc-cw20',
1338
1366
  counterparty: {
@@ -1371,6 +1399,10 @@ const assets = {
1371
1399
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.png',
1372
1400
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/secretnetwork/images/amber.svg'
1373
1401
  }],
1402
+ socials: {
1403
+ website: 'http://amber.money/',
1404
+ twitter: 'https://twitter.com/AmberDAO_'
1405
+ },
1374
1406
  traces: [{
1375
1407
  type: 'ibc-cw20',
1376
1408
  counterparty: {