chain-registry 1.69.51 → 1.69.53
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.
- package/devnet/kyvedevnet/chain.js +5 -4
- package/esm/devnet/kyvedevnet/chain.js +5 -4
- package/esm/mainnet/assets.js +4 -0
- package/esm/mainnet/axelar/ibc.js +29 -0
- package/esm/mainnet/canto/ibc.js +29 -0
- package/esm/mainnet/celestia/ibc.js +29 -0
- package/esm/mainnet/chains.js +4 -0
- package/esm/mainnet/cosmoshub/ibc.js +29 -0
- package/esm/mainnet/ibc.js +4 -0
- package/esm/mainnet/injective/ibc.js +29 -0
- package/esm/mainnet/kyve/chain.js +14 -2
- package/esm/mainnet/milkyway/assets.js +248 -0
- package/esm/mainnet/milkyway/chain.js +89 -0
- package/esm/mainnet/milkyway/ibc.js +59 -0
- package/esm/mainnet/milkyway/index.js +6 -0
- package/esm/mainnet/named.js +2 -0
- package/esm/mainnet/noble/ibc.js +29 -0
- package/esm/mainnet/osmosis/assets.js +40 -0
- package/esm/mainnet/osmosis/ibc.js +59 -0
- package/esm/mainnet/pryzm/assets.js +417 -3
- package/esm/mainnet/xion/assets.js +34 -0
- package/esm/mainnet/xion/chain.js +100 -0
- package/esm/mainnet/xion/ibc.js +119 -0
- package/esm/mainnet/xion/index.js +6 -0
- package/esm/testnet/cosmosicsprovidertestnet/chain.js +14 -14
- package/esm/testnet/kyvetestnet/chain.js +7 -2
- package/esm/testnet/xiontestnet/assets.js +1 -0
- package/esm/testnet/xiontestnet/chain.js +22 -18
- package/mainnet/assets.js +4 -0
- package/mainnet/axelar/ibc.js +29 -0
- package/mainnet/canto/ibc.js +29 -0
- package/mainnet/celestia/ibc.js +29 -0
- package/mainnet/chains.js +4 -0
- package/mainnet/cosmoshub/ibc.js +29 -0
- package/mainnet/ibc.js +4 -0
- package/mainnet/injective/ibc.js +29 -0
- package/mainnet/kyve/chain.js +14 -2
- package/mainnet/milkyway/assets.d.ts +3 -0
- package/mainnet/milkyway/assets.js +250 -0
- package/mainnet/milkyway/chain.d.ts +3 -0
- package/mainnet/milkyway/chain.js +91 -0
- package/mainnet/milkyway/ibc.d.ts +3 -0
- package/mainnet/milkyway/ibc.js +61 -0
- package/mainnet/milkyway/index.d.ts +3 -0
- package/mainnet/milkyway/index.js +12 -0
- package/mainnet/named.d.ts +2 -0
- package/mainnet/named.js +4 -2
- package/mainnet/noble/ibc.js +29 -0
- package/mainnet/osmosis/assets.js +40 -0
- package/mainnet/osmosis/ibc.js +59 -0
- package/mainnet/pryzm/assets.js +417 -3
- package/mainnet/xion/assets.d.ts +3 -0
- package/mainnet/xion/assets.js +36 -0
- package/mainnet/xion/chain.d.ts +3 -0
- package/mainnet/xion/chain.js +102 -0
- package/mainnet/xion/ibc.d.ts +3 -0
- package/mainnet/xion/ibc.js +121 -0
- package/mainnet/xion/index.d.ts +3 -0
- package/mainnet/xion/index.js +12 -0
- package/package.json +4 -4
- package/testnet/cosmosicsprovidertestnet/chain.js +14 -14
- package/testnet/kyvetestnet/chain.js +7 -2
- package/testnet/xiontestnet/assets.js +1 -0
- package/testnet/xiontestnet/chain.js +22 -18
|
@@ -787,6 +787,29 @@ const info = {
|
|
|
787
787
|
}],
|
|
788
788
|
type_asset: 'sdk.coin'
|
|
789
789
|
},
|
|
790
|
+
{
|
|
791
|
+
description: 'Pryzm\'s refracted principal token for ATOM with maturity of 31Dec2026',
|
|
792
|
+
denom_units: [{
|
|
793
|
+
denom: 'p:uatom:31Dec2026',
|
|
794
|
+
exponent: 0
|
|
795
|
+
}, {
|
|
796
|
+
denom: 'pATOM31Dec2026',
|
|
797
|
+
exponent: 6
|
|
798
|
+
}],
|
|
799
|
+
base: 'p:uatom:31Dec2026',
|
|
800
|
+
name: 'pAtom (31Dec2026)',
|
|
801
|
+
display: 'pATOM31Dec2026',
|
|
802
|
+
symbol: 'pATOM-31Dec2026',
|
|
803
|
+
logo_URIs: {
|
|
804
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.png',
|
|
805
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.svg'
|
|
806
|
+
},
|
|
807
|
+
images: [{
|
|
808
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.png',
|
|
809
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAtom.svg'
|
|
810
|
+
}],
|
|
811
|
+
type_asset: 'sdk.coin'
|
|
812
|
+
},
|
|
790
813
|
{
|
|
791
814
|
description: 'Pryzm\'s refracted principal token for OSMO with maturity of 30Sep2024',
|
|
792
815
|
denom_units: [{
|
|
@@ -856,6 +879,29 @@ const info = {
|
|
|
856
879
|
}],
|
|
857
880
|
type_asset: 'sdk.coin'
|
|
858
881
|
},
|
|
882
|
+
{
|
|
883
|
+
description: 'Pryzm\'s refracted principal token for OSMO with maturity of 31Dec2026',
|
|
884
|
+
denom_units: [{
|
|
885
|
+
denom: 'p:uosmo:31Dec2026',
|
|
886
|
+
exponent: 0
|
|
887
|
+
}, {
|
|
888
|
+
denom: 'pOSMO31Dec2026',
|
|
889
|
+
exponent: 6
|
|
890
|
+
}],
|
|
891
|
+
base: 'p:uosmo:31Dec2026',
|
|
892
|
+
name: 'pOsmo (31Dec2026)',
|
|
893
|
+
display: 'pOSMO31Dec2026',
|
|
894
|
+
symbol: 'pOSMO-31Dec2026',
|
|
895
|
+
logo_URIs: {
|
|
896
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.png',
|
|
897
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.svg'
|
|
898
|
+
},
|
|
899
|
+
images: [{
|
|
900
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.png',
|
|
901
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pOsmo.svg'
|
|
902
|
+
}],
|
|
903
|
+
type_asset: 'sdk.coin'
|
|
904
|
+
},
|
|
859
905
|
{
|
|
860
906
|
description: 'Pryzm\'s refracted principal token for INJ with maturity of 30Sep2024',
|
|
861
907
|
denom_units: [{
|
|
@@ -925,6 +971,29 @@ const info = {
|
|
|
925
971
|
}],
|
|
926
972
|
type_asset: 'sdk.coin'
|
|
927
973
|
},
|
|
974
|
+
{
|
|
975
|
+
description: 'Pryzm\'s refracted principal token for INJ with maturity of 31Dec2026',
|
|
976
|
+
denom_units: [{
|
|
977
|
+
denom: 'p:inj:31Dec2026',
|
|
978
|
+
exponent: 0
|
|
979
|
+
}, {
|
|
980
|
+
denom: 'pINJ31Dec2026',
|
|
981
|
+
exponent: 18
|
|
982
|
+
}],
|
|
983
|
+
base: 'p:inj:31Dec2026',
|
|
984
|
+
name: 'pInj (31Dec2026)',
|
|
985
|
+
display: 'pINJ31Dec2026',
|
|
986
|
+
symbol: 'pINJ-31Dec2026',
|
|
987
|
+
logo_URIs: {
|
|
988
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.png',
|
|
989
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.svg'
|
|
990
|
+
},
|
|
991
|
+
images: [{
|
|
992
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.png',
|
|
993
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pInj.svg'
|
|
994
|
+
}],
|
|
995
|
+
type_asset: 'sdk.coin'
|
|
996
|
+
},
|
|
928
997
|
{
|
|
929
998
|
description: 'Pryzm\'s refracted principal token for LUNA with maturity of 30Sep2024',
|
|
930
999
|
denom_units: [{
|
|
@@ -971,6 +1040,29 @@ const info = {
|
|
|
971
1040
|
}],
|
|
972
1041
|
type_asset: 'sdk.coin'
|
|
973
1042
|
},
|
|
1043
|
+
{
|
|
1044
|
+
description: 'Pryzm\'s refracted principal token for LUNA with maturity of 31Dec2026',
|
|
1045
|
+
denom_units: [{
|
|
1046
|
+
denom: 'p:uluna:31Dec2026',
|
|
1047
|
+
exponent: 0
|
|
1048
|
+
}, {
|
|
1049
|
+
denom: 'pLUNA31Dec2026',
|
|
1050
|
+
exponent: 6
|
|
1051
|
+
}],
|
|
1052
|
+
base: 'p:uluna:31Dec2026',
|
|
1053
|
+
name: 'pLuna (31Dec2026)',
|
|
1054
|
+
display: 'pLUNA31Dec2026',
|
|
1055
|
+
symbol: 'pLUNA-31Dec2026',
|
|
1056
|
+
logo_URIs: {
|
|
1057
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.png',
|
|
1058
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.svg'
|
|
1059
|
+
},
|
|
1060
|
+
images: [{
|
|
1061
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.png',
|
|
1062
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pLuna.svg'
|
|
1063
|
+
}],
|
|
1064
|
+
type_asset: 'sdk.coin'
|
|
1065
|
+
},
|
|
974
1066
|
{
|
|
975
1067
|
description: 'Pryzm\'s refracted principal token for LUNA with maturity of 31Dec2025',
|
|
976
1068
|
denom_units: [{
|
|
@@ -1063,6 +1155,29 @@ const info = {
|
|
|
1063
1155
|
}],
|
|
1064
1156
|
type_asset: 'sdk.coin'
|
|
1065
1157
|
},
|
|
1158
|
+
{
|
|
1159
|
+
description: 'Pryzm\'s refracted principal token for AUUU with maturity of 31Dec2026',
|
|
1160
|
+
denom_units: [{
|
|
1161
|
+
denom: 'p:uauuu:31Dec2026',
|
|
1162
|
+
exponent: 0
|
|
1163
|
+
}, {
|
|
1164
|
+
denom: 'pAUUU31Dec2026',
|
|
1165
|
+
exponent: 6
|
|
1166
|
+
}],
|
|
1167
|
+
base: 'p:uauuu:31Dec2026',
|
|
1168
|
+
name: 'pAuuu (31Dec2026)',
|
|
1169
|
+
display: 'pAUUU31Dec2026',
|
|
1170
|
+
symbol: 'pAUUU-31Dec2026',
|
|
1171
|
+
logo_URIs: {
|
|
1172
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.png',
|
|
1173
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.svg'
|
|
1174
|
+
},
|
|
1175
|
+
images: [{
|
|
1176
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.png',
|
|
1177
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pAuuu.svg'
|
|
1178
|
+
}],
|
|
1179
|
+
type_asset: 'sdk.coin'
|
|
1180
|
+
},
|
|
1066
1181
|
{
|
|
1067
1182
|
description: 'Pryzm\'s refracted principal token for stTIA with maturity of 30Sep2024',
|
|
1068
1183
|
denom_units: [{
|
|
@@ -1132,6 +1247,29 @@ const info = {
|
|
|
1132
1247
|
}],
|
|
1133
1248
|
type_asset: 'sdk.coin'
|
|
1134
1249
|
},
|
|
1250
|
+
{
|
|
1251
|
+
description: 'Pryzm\'s refracted principal token for stTIA with maturity of 31Dec2026',
|
|
1252
|
+
denom_units: [{
|
|
1253
|
+
denom: 'p:stutia:31Dec2026',
|
|
1254
|
+
exponent: 0
|
|
1255
|
+
}, {
|
|
1256
|
+
denom: 'pstTIA31Dec2026',
|
|
1257
|
+
exponent: 6
|
|
1258
|
+
}],
|
|
1259
|
+
base: 'p:stutia:31Dec2026',
|
|
1260
|
+
name: 'pstTia (31Dec2026)',
|
|
1261
|
+
display: 'pstTIA31Dec2026',
|
|
1262
|
+
symbol: 'pstTIA-31Dec2026',
|
|
1263
|
+
logo_URIs: {
|
|
1264
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.png',
|
|
1265
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.svg'
|
|
1266
|
+
},
|
|
1267
|
+
images: [{
|
|
1268
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.png',
|
|
1269
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstTia.svg'
|
|
1270
|
+
}],
|
|
1271
|
+
type_asset: 'sdk.coin'
|
|
1272
|
+
},
|
|
1135
1273
|
{
|
|
1136
1274
|
description: 'Pryzm\'s refracted principal token for stDYDX with maturity of 30Sep2024',
|
|
1137
1275
|
denom_units: [{
|
|
@@ -1201,6 +1339,29 @@ const info = {
|
|
|
1201
1339
|
}],
|
|
1202
1340
|
type_asset: 'sdk.coin'
|
|
1203
1341
|
},
|
|
1342
|
+
{
|
|
1343
|
+
description: 'Pryzm\'s refracted principal token for stDYDX with maturity of 31Dec2026',
|
|
1344
|
+
denom_units: [{
|
|
1345
|
+
denom: 'p:stadydx:31Dec2026',
|
|
1346
|
+
exponent: 0
|
|
1347
|
+
}, {
|
|
1348
|
+
denom: 'pstDYDX31Dec2026',
|
|
1349
|
+
exponent: 18
|
|
1350
|
+
}],
|
|
1351
|
+
base: 'p:stadydx:31Dec2026',
|
|
1352
|
+
name: 'pstDydx (31Dec2026)',
|
|
1353
|
+
display: 'pstDYDX31Dec2026',
|
|
1354
|
+
symbol: 'pstDYDX-31Dec2026',
|
|
1355
|
+
logo_URIs: {
|
|
1356
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.png',
|
|
1357
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.svg'
|
|
1358
|
+
},
|
|
1359
|
+
images: [{
|
|
1360
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.png',
|
|
1361
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pstDydx.svg'
|
|
1362
|
+
}],
|
|
1363
|
+
type_asset: 'sdk.coin'
|
|
1364
|
+
},
|
|
1204
1365
|
{
|
|
1205
1366
|
description: 'Pryzm\'s refracted principal token for dATOM with maturity of 31Dec2024',
|
|
1206
1367
|
denom_units: [{
|
|
@@ -1270,6 +1431,29 @@ const info = {
|
|
|
1270
1431
|
}],
|
|
1271
1432
|
type_asset: 'sdk.coin'
|
|
1272
1433
|
},
|
|
1434
|
+
{
|
|
1435
|
+
description: 'Pryzm\'s refracted principal token for dATOM with maturity of 31Dec2026',
|
|
1436
|
+
denom_units: [{
|
|
1437
|
+
denom: 'p:udatom:31Dec2026',
|
|
1438
|
+
exponent: 0
|
|
1439
|
+
}, {
|
|
1440
|
+
denom: 'pdATOM31Dec2026',
|
|
1441
|
+
exponent: 6
|
|
1442
|
+
}],
|
|
1443
|
+
base: 'p:udatom:31Dec2026',
|
|
1444
|
+
name: 'pdAtom (31Dec2026)',
|
|
1445
|
+
display: 'pdATOM31Dec2026',
|
|
1446
|
+
symbol: 'pdATOM-31Dec2026',
|
|
1447
|
+
logo_URIs: {
|
|
1448
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.png',
|
|
1449
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.svg'
|
|
1450
|
+
},
|
|
1451
|
+
images: [{
|
|
1452
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.png',
|
|
1453
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pdAtom.svg'
|
|
1454
|
+
}],
|
|
1455
|
+
type_asset: 'sdk.coin'
|
|
1456
|
+
},
|
|
1273
1457
|
{
|
|
1274
1458
|
description: 'Pryzm\'s refracted principal token for TIA with maturity of 31Dec2024',
|
|
1275
1459
|
denom_units: [{
|
|
@@ -1316,6 +1500,29 @@ const info = {
|
|
|
1316
1500
|
}],
|
|
1317
1501
|
type_asset: 'sdk.coin'
|
|
1318
1502
|
},
|
|
1503
|
+
{
|
|
1504
|
+
description: 'Pryzm\'s refracted principal token for TIA with maturity of 31Dec2026',
|
|
1505
|
+
denom_units: [{
|
|
1506
|
+
denom: 'p:utia:31Dec2026',
|
|
1507
|
+
exponent: 0
|
|
1508
|
+
}, {
|
|
1509
|
+
denom: 'pTIA31Dec2026',
|
|
1510
|
+
exponent: 6
|
|
1511
|
+
}],
|
|
1512
|
+
base: 'p:utia:31Dec2026',
|
|
1513
|
+
name: 'pTia (31Dec2026)',
|
|
1514
|
+
display: 'pTIA31Dec2026',
|
|
1515
|
+
symbol: 'pTIA-31Dec2026',
|
|
1516
|
+
logo_URIs: {
|
|
1517
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.png',
|
|
1518
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.svg'
|
|
1519
|
+
},
|
|
1520
|
+
images: [{
|
|
1521
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.png',
|
|
1522
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/pTia.svg'
|
|
1523
|
+
}],
|
|
1524
|
+
type_asset: 'sdk.coin'
|
|
1525
|
+
},
|
|
1319
1526
|
{
|
|
1320
1527
|
description: 'Pryzm\'s refracted yield token for ATOM with maturity of 30Sep2024',
|
|
1321
1528
|
denom_units: [{
|
|
@@ -1385,6 +1592,29 @@ const info = {
|
|
|
1385
1592
|
}],
|
|
1386
1593
|
type_asset: 'sdk.coin'
|
|
1387
1594
|
},
|
|
1595
|
+
{
|
|
1596
|
+
description: 'Pryzm\'s refracted yield token for ATOM with maturity of 31Dec2026',
|
|
1597
|
+
denom_units: [{
|
|
1598
|
+
denom: 'y:uatom:31Dec2026',
|
|
1599
|
+
exponent: 0
|
|
1600
|
+
}, {
|
|
1601
|
+
denom: 'yATOM31Dec2026',
|
|
1602
|
+
exponent: 6
|
|
1603
|
+
}],
|
|
1604
|
+
base: 'y:uatom:31Dec2026',
|
|
1605
|
+
name: 'yAtom (31Dec2026)',
|
|
1606
|
+
display: 'yATOM31Dec2026',
|
|
1607
|
+
symbol: 'yATOM-31Dec2026',
|
|
1608
|
+
logo_URIs: {
|
|
1609
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.png',
|
|
1610
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.svg'
|
|
1611
|
+
},
|
|
1612
|
+
images: [{
|
|
1613
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.png',
|
|
1614
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAtom.svg'
|
|
1615
|
+
}],
|
|
1616
|
+
type_asset: 'sdk.coin'
|
|
1617
|
+
},
|
|
1388
1618
|
{
|
|
1389
1619
|
description: 'Pryzm\'s refracted yield token for OSMO with maturity of 30Sep2024',
|
|
1390
1620
|
denom_units: [{
|
|
@@ -1454,6 +1684,29 @@ const info = {
|
|
|
1454
1684
|
}],
|
|
1455
1685
|
type_asset: 'sdk.coin'
|
|
1456
1686
|
},
|
|
1687
|
+
{
|
|
1688
|
+
description: 'Pryzm\'s refracted yield token for OSMO with maturity of 31Dec2026',
|
|
1689
|
+
denom_units: [{
|
|
1690
|
+
denom: 'y:uosmo:31Dec2026',
|
|
1691
|
+
exponent: 0
|
|
1692
|
+
}, {
|
|
1693
|
+
denom: 'yOSMO31Dec2026',
|
|
1694
|
+
exponent: 6
|
|
1695
|
+
}],
|
|
1696
|
+
base: 'y:uosmo:31Dec2026',
|
|
1697
|
+
name: 'yOsmo (31Dec2026)',
|
|
1698
|
+
display: 'yOSMO31Dec2026',
|
|
1699
|
+
symbol: 'yOSMO-31Dec2026',
|
|
1700
|
+
logo_URIs: {
|
|
1701
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.png',
|
|
1702
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.svg'
|
|
1703
|
+
},
|
|
1704
|
+
images: [{
|
|
1705
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.png',
|
|
1706
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yOsmo.svg'
|
|
1707
|
+
}],
|
|
1708
|
+
type_asset: 'sdk.coin'
|
|
1709
|
+
},
|
|
1457
1710
|
{
|
|
1458
1711
|
description: 'Pryzm\'s refracted yield token for INJ with maturity of 30Sep2024',
|
|
1459
1712
|
denom_units: [{
|
|
@@ -1523,6 +1776,29 @@ const info = {
|
|
|
1523
1776
|
}],
|
|
1524
1777
|
type_asset: 'sdk.coin'
|
|
1525
1778
|
},
|
|
1779
|
+
{
|
|
1780
|
+
description: 'Pryzm\'s refracted yield token for INJ with maturity of 31Dec2026',
|
|
1781
|
+
denom_units: [{
|
|
1782
|
+
denom: 'y:inj:31Dec2026',
|
|
1783
|
+
exponent: 0
|
|
1784
|
+
}, {
|
|
1785
|
+
denom: 'yINJ31Dec2026',
|
|
1786
|
+
exponent: 18
|
|
1787
|
+
}],
|
|
1788
|
+
base: 'y:inj:31Dec2026',
|
|
1789
|
+
name: 'yInj (31Dec2026)',
|
|
1790
|
+
display: 'yINJ31Dec2026',
|
|
1791
|
+
symbol: 'yINJ-31Dec2026',
|
|
1792
|
+
logo_URIs: {
|
|
1793
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.png',
|
|
1794
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.svg'
|
|
1795
|
+
},
|
|
1796
|
+
images: [{
|
|
1797
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.png',
|
|
1798
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yInj.svg'
|
|
1799
|
+
}],
|
|
1800
|
+
type_asset: 'sdk.coin'
|
|
1801
|
+
},
|
|
1526
1802
|
{
|
|
1527
1803
|
description: 'Pryzm\'s refracted yield token for LUNA with maturity of 30Sep2024',
|
|
1528
1804
|
denom_units: [{
|
|
@@ -1592,6 +1868,29 @@ const info = {
|
|
|
1592
1868
|
}],
|
|
1593
1869
|
type_asset: 'sdk.coin'
|
|
1594
1870
|
},
|
|
1871
|
+
{
|
|
1872
|
+
description: 'Pryzm\'s refracted yield token for LUNA with maturity of 31Dec2026',
|
|
1873
|
+
denom_units: [{
|
|
1874
|
+
denom: 'y:uluna:31Dec2026',
|
|
1875
|
+
exponent: 0
|
|
1876
|
+
}, {
|
|
1877
|
+
denom: 'yLUNA31Dec2026',
|
|
1878
|
+
exponent: 6
|
|
1879
|
+
}],
|
|
1880
|
+
base: 'y:uluna:31Dec2026',
|
|
1881
|
+
name: 'yLuna (31Dec2026)',
|
|
1882
|
+
display: 'yLUNA31Dec2026',
|
|
1883
|
+
symbol: 'yLUNA-31Dec2026',
|
|
1884
|
+
logo_URIs: {
|
|
1885
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.png',
|
|
1886
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.svg'
|
|
1887
|
+
},
|
|
1888
|
+
images: [{
|
|
1889
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.png',
|
|
1890
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yLuna.svg'
|
|
1891
|
+
}],
|
|
1892
|
+
type_asset: 'sdk.coin'
|
|
1893
|
+
},
|
|
1595
1894
|
{
|
|
1596
1895
|
description: 'Pryzm\'s refracted yield token for AUUU with maturity of 30Sep2024',
|
|
1597
1896
|
denom_units: [{
|
|
@@ -1661,6 +1960,29 @@ const info = {
|
|
|
1661
1960
|
}],
|
|
1662
1961
|
type_asset: 'sdk.coin'
|
|
1663
1962
|
},
|
|
1963
|
+
{
|
|
1964
|
+
description: 'Pryzm\'s refracted yield token for AUUU with maturity of 31Dec2026',
|
|
1965
|
+
denom_units: [{
|
|
1966
|
+
denom: 'y:uauuu:31Dec2026',
|
|
1967
|
+
exponent: 0
|
|
1968
|
+
}, {
|
|
1969
|
+
denom: 'yAUUU31Dec2026',
|
|
1970
|
+
exponent: 6
|
|
1971
|
+
}],
|
|
1972
|
+
base: 'y:uauuu:31Dec2026',
|
|
1973
|
+
name: 'yAuuu (31Dec2026)',
|
|
1974
|
+
display: 'yAUUU31Dec2026',
|
|
1975
|
+
symbol: 'yAUUU-31Dec2026',
|
|
1976
|
+
logo_URIs: {
|
|
1977
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.png',
|
|
1978
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.svg'
|
|
1979
|
+
},
|
|
1980
|
+
images: [{
|
|
1981
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.png',
|
|
1982
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yAuuu.svg'
|
|
1983
|
+
}],
|
|
1984
|
+
type_asset: 'sdk.coin'
|
|
1985
|
+
},
|
|
1664
1986
|
{
|
|
1665
1987
|
description: 'Pryzm\'s refracted yield token for stTIA with maturity of 30Sep2024',
|
|
1666
1988
|
denom_units: [{
|
|
@@ -1730,6 +2052,29 @@ const info = {
|
|
|
1730
2052
|
}],
|
|
1731
2053
|
type_asset: 'sdk.coin'
|
|
1732
2054
|
},
|
|
2055
|
+
{
|
|
2056
|
+
description: 'Pryzm\'s refracted yield token for stTIA with maturity of 31Dec2026',
|
|
2057
|
+
denom_units: [{
|
|
2058
|
+
denom: 'y:stutia:31Dec2026',
|
|
2059
|
+
exponent: 0
|
|
2060
|
+
}, {
|
|
2061
|
+
denom: 'ystTIA31Dec2026',
|
|
2062
|
+
exponent: 6
|
|
2063
|
+
}],
|
|
2064
|
+
base: 'y:stutia:31Dec2026',
|
|
2065
|
+
name: 'ystTia (31Dec2026)',
|
|
2066
|
+
display: 'ystTIA31Dec2026',
|
|
2067
|
+
symbol: 'ystTIA-31Dec2026',
|
|
2068
|
+
logo_URIs: {
|
|
2069
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.png',
|
|
2070
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.svg'
|
|
2071
|
+
},
|
|
2072
|
+
images: [{
|
|
2073
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.png',
|
|
2074
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystTia.svg'
|
|
2075
|
+
}],
|
|
2076
|
+
type_asset: 'sdk.coin'
|
|
2077
|
+
},
|
|
1733
2078
|
{
|
|
1734
2079
|
description: 'Pryzm\'s refracted yield token for stDYDX with maturity of 30Sep2024',
|
|
1735
2080
|
denom_units: [{
|
|
@@ -1737,7 +2082,7 @@ const info = {
|
|
|
1737
2082
|
exponent: 0
|
|
1738
2083
|
}, {
|
|
1739
2084
|
denom: 'ystDYDX30Sep2024',
|
|
1740
|
-
exponent:
|
|
2085
|
+
exponent: 18
|
|
1741
2086
|
}],
|
|
1742
2087
|
base: 'y:stadydx:30Sep2024',
|
|
1743
2088
|
name: 'ystDydx (30Sep2024)',
|
|
@@ -1760,7 +2105,7 @@ const info = {
|
|
|
1760
2105
|
exponent: 0
|
|
1761
2106
|
}, {
|
|
1762
2107
|
denom: 'ystDYDX31Dec2024',
|
|
1763
|
-
exponent:
|
|
2108
|
+
exponent: 18
|
|
1764
2109
|
}],
|
|
1765
2110
|
base: 'y:stadydx:31Dec2024',
|
|
1766
2111
|
name: 'ystDydx (31Dec2024)',
|
|
@@ -1783,7 +2128,7 @@ const info = {
|
|
|
1783
2128
|
exponent: 0
|
|
1784
2129
|
}, {
|
|
1785
2130
|
denom: 'ystDYDX31Dec2025',
|
|
1786
|
-
exponent:
|
|
2131
|
+
exponent: 18
|
|
1787
2132
|
}],
|
|
1788
2133
|
base: 'y:stadydx:31Dec2025',
|
|
1789
2134
|
name: 'ystDydx (31Dec2025)',
|
|
@@ -1799,6 +2144,29 @@ const info = {
|
|
|
1799
2144
|
}],
|
|
1800
2145
|
type_asset: 'sdk.coin'
|
|
1801
2146
|
},
|
|
2147
|
+
{
|
|
2148
|
+
description: 'Pryzm\'s refracted yield token for stDYDX with maturity of 31Dec2026',
|
|
2149
|
+
denom_units: [{
|
|
2150
|
+
denom: 'y:stadydx:31Dec2026',
|
|
2151
|
+
exponent: 0
|
|
2152
|
+
}, {
|
|
2153
|
+
denom: 'ystDYDX31Dec2026',
|
|
2154
|
+
exponent: 18
|
|
2155
|
+
}],
|
|
2156
|
+
base: 'y:stadydx:31Dec2026',
|
|
2157
|
+
name: 'ystDydx (31Dec2026)',
|
|
2158
|
+
display: 'ystDYDX31Dec2026',
|
|
2159
|
+
symbol: 'ystDYDX-31Dec2026',
|
|
2160
|
+
logo_URIs: {
|
|
2161
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.png',
|
|
2162
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.svg'
|
|
2163
|
+
},
|
|
2164
|
+
images: [{
|
|
2165
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.png',
|
|
2166
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ystDydx.svg'
|
|
2167
|
+
}],
|
|
2168
|
+
type_asset: 'sdk.coin'
|
|
2169
|
+
},
|
|
1802
2170
|
{
|
|
1803
2171
|
description: 'Pryzm\'s refracted yield token for dATOM with maturity of 31Dec2024',
|
|
1804
2172
|
denom_units: [{
|
|
@@ -1868,6 +2236,29 @@ const info = {
|
|
|
1868
2236
|
}],
|
|
1869
2237
|
type_asset: 'sdk.coin'
|
|
1870
2238
|
},
|
|
2239
|
+
{
|
|
2240
|
+
description: 'Pryzm\'s refracted yield token for dATOM with maturity of 31Dec2026',
|
|
2241
|
+
denom_units: [{
|
|
2242
|
+
denom: 'y:udatom:31Dec2026',
|
|
2243
|
+
exponent: 0
|
|
2244
|
+
}, {
|
|
2245
|
+
denom: 'ydATOM31Dec2026',
|
|
2246
|
+
exponent: 6
|
|
2247
|
+
}],
|
|
2248
|
+
base: 'y:udatom:31Dec2026',
|
|
2249
|
+
name: 'ydAtom (31Dec2026)',
|
|
2250
|
+
display: 'ydATOM31Dec2026',
|
|
2251
|
+
symbol: 'ydATOM-31Dec2026',
|
|
2252
|
+
logo_URIs: {
|
|
2253
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.png',
|
|
2254
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.svg'
|
|
2255
|
+
},
|
|
2256
|
+
images: [{
|
|
2257
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.png',
|
|
2258
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/ydAtom.svg'
|
|
2259
|
+
}],
|
|
2260
|
+
type_asset: 'sdk.coin'
|
|
2261
|
+
},
|
|
1871
2262
|
{
|
|
1872
2263
|
description: 'Pryzm\'s refracted yield token for TIA with maturity of 31Dec2024',
|
|
1873
2264
|
denom_units: [{
|
|
@@ -1914,6 +2305,29 @@ const info = {
|
|
|
1914
2305
|
}],
|
|
1915
2306
|
type_asset: 'sdk.coin'
|
|
1916
2307
|
},
|
|
2308
|
+
{
|
|
2309
|
+
description: 'Pryzm\'s refracted yield token for TIA with maturity of 31Dec2026',
|
|
2310
|
+
denom_units: [{
|
|
2311
|
+
denom: 'y:utia:31Dec2026',
|
|
2312
|
+
exponent: 0
|
|
2313
|
+
}, {
|
|
2314
|
+
denom: 'yTIA31Dec2026',
|
|
2315
|
+
exponent: 6
|
|
2316
|
+
}],
|
|
2317
|
+
base: 'y:utia:31Dec2026',
|
|
2318
|
+
name: 'yTia (31Dec2026)',
|
|
2319
|
+
display: 'yTIA31Dec2026',
|
|
2320
|
+
symbol: 'yTIA-31Dec2026',
|
|
2321
|
+
logo_URIs: {
|
|
2322
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.png',
|
|
2323
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.svg'
|
|
2324
|
+
},
|
|
2325
|
+
images: [{
|
|
2326
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.png',
|
|
2327
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/pryzm/images/yTia.svg'
|
|
2328
|
+
}],
|
|
2329
|
+
type_asset: 'sdk.coin'
|
|
2330
|
+
},
|
|
1917
2331
|
{
|
|
1918
2332
|
description: 'Pryzm\'s LP token for USDC / USDC.axl pool',
|
|
1919
2333
|
denom_units: [{
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
const info = {
|
|
2
|
+
$schema: '../assetlist.schema.json',
|
|
3
|
+
chain_name: 'xion',
|
|
4
|
+
assets: [{
|
|
5
|
+
description: 'XION is the first walletless L1 blockchain purpose built for consumer adoption through chain abstraction.',
|
|
6
|
+
extended_description: 'XION is the first walletless L1 blockchain purpose built for consumer adoption through chain abstraction. Utilizing protocol-level implementations related to abstracted accounts, signatures, fees, interoperability, and more, XION empowers developers to build secure, intuitive, and seamless user experiences.',
|
|
7
|
+
denom_units: [{
|
|
8
|
+
denom: 'uxion',
|
|
9
|
+
exponent: 0,
|
|
10
|
+
aliases: ['microxion']
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'XION',
|
|
13
|
+
exponent: 6,
|
|
14
|
+
aliases: ['xion']
|
|
15
|
+
}],
|
|
16
|
+
base: 'uxion',
|
|
17
|
+
display: 'XION',
|
|
18
|
+
name: 'xion',
|
|
19
|
+
symbol: 'XION',
|
|
20
|
+
coingecko_id: 'xion-2',
|
|
21
|
+
type_asset: 'sdk.coin',
|
|
22
|
+
logo_URIs: {
|
|
23
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
|
|
24
|
+
},
|
|
25
|
+
images: [{
|
|
26
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/xion/images/burnt-round.png'
|
|
27
|
+
}],
|
|
28
|
+
socials: {
|
|
29
|
+
website: 'https://xion.burnt.com/',
|
|
30
|
+
twitter: 'https://twitter.com/burnt_xion'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
};
|
|
34
|
+
export default info;
|