@chain-registry/juno 1.65.4 → 1.65.6
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/asset_list.js +122 -0
- package/assets.js +10 -5
- package/esm/asset_list.js +122 -0
- package/esm/assets.js +10 -5
- package/esm/testnet_assets.js +4 -2
- package/package.json +4 -4
- package/testnet_assets.js +4 -2
package/esm/assets.js
CHANGED
|
@@ -30,7 +30,8 @@ const assets = {
|
|
|
30
30
|
socials: {
|
|
31
31
|
website: 'https://junonetwork.io/',
|
|
32
32
|
twitter: 'https://twitter.com/JunoNetwork'
|
|
33
|
-
}
|
|
33
|
+
},
|
|
34
|
+
type_asset: 'sdk.coin'
|
|
34
35
|
},
|
|
35
36
|
{
|
|
36
37
|
denom_units: [{
|
|
@@ -1699,7 +1700,8 @@ const assets = {
|
|
|
1699
1700
|
theme: {
|
|
1700
1701
|
primary_color_hex: '#040405'
|
|
1701
1702
|
}
|
|
1702
|
-
}]
|
|
1703
|
+
}],
|
|
1704
|
+
type_asset: 'sdk.coin'
|
|
1703
1705
|
},
|
|
1704
1706
|
{
|
|
1705
1707
|
denom_units: [{
|
|
@@ -1722,7 +1724,8 @@ const assets = {
|
|
|
1722
1724
|
theme: {
|
|
1723
1725
|
primary_color_hex: '#dfe0e0'
|
|
1724
1726
|
}
|
|
1725
|
-
}]
|
|
1727
|
+
}],
|
|
1728
|
+
type_asset: 'sdk.coin'
|
|
1726
1729
|
},
|
|
1727
1730
|
{
|
|
1728
1731
|
description: 'ERIS liquid staked JUNO',
|
|
@@ -2030,7 +2033,8 @@ const assets = {
|
|
|
2030
2033
|
theme: {
|
|
2031
2034
|
primary_color_hex: '#122b4d'
|
|
2032
2035
|
}
|
|
2033
|
-
}]
|
|
2036
|
+
}],
|
|
2037
|
+
type_asset: 'sdk.coin'
|
|
2034
2038
|
},
|
|
2035
2039
|
{
|
|
2036
2040
|
description: 'Airdrop For All [AFA - New Name on Cosmos Ecosystem, A4A - Old Name on TurtleNetwork] is a token from turtleNetwork towards cosmos ecosystem.',
|
|
@@ -2099,7 +2103,8 @@ const assets = {
|
|
|
2099
2103
|
},
|
|
2100
2104
|
images: [{
|
|
2101
2105
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/wind.ash.png'
|
|
2102
|
-
}]
|
|
2106
|
+
}],
|
|
2107
|
+
type_asset: 'sdk.coin'
|
|
2103
2108
|
}
|
|
2104
2109
|
]
|
|
2105
2110
|
};
|
package/esm/testnet_assets.js
CHANGED
|
@@ -23,7 +23,8 @@ const testnet_assets = {
|
|
|
23
23
|
images: [{
|
|
24
24
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png',
|
|
25
25
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg'
|
|
26
|
-
}]
|
|
26
|
+
}],
|
|
27
|
+
type_asset: 'sdk.coin'
|
|
27
28
|
},
|
|
28
29
|
{
|
|
29
30
|
description: 'The native token of NEXX GEN AI',
|
|
@@ -43,7 +44,8 @@ const testnet_assets = {
|
|
|
43
44
|
},
|
|
44
45
|
images: [{
|
|
45
46
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png'
|
|
46
|
-
}]
|
|
47
|
+
}],
|
|
48
|
+
type_asset: 'sdk.coin'
|
|
47
49
|
},
|
|
48
50
|
{
|
|
49
51
|
type_asset: 'sdk.coin',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/juno",
|
|
3
|
-
"version": "1.65.
|
|
3
|
+
"version": "1.65.6",
|
|
4
4
|
"description": "Chain Registry info for Juno",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"chain-registry": "^1.64.
|
|
32
|
+
"chain-registry": "^1.64.6"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@chain-registry/types": "^0.46.
|
|
35
|
+
"@chain-registry/types": "^0.46.6"
|
|
36
36
|
},
|
|
37
37
|
"keywords": [
|
|
38
38
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"tokens",
|
|
44
44
|
"juno"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "8244da9505593b26d16f70479d7fea0434db6ac4"
|
|
47
47
|
}
|
package/testnet_assets.js
CHANGED
|
@@ -25,7 +25,8 @@ const testnet_assets = {
|
|
|
25
25
|
images: [{
|
|
26
26
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png',
|
|
27
27
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg'
|
|
28
|
-
}]
|
|
28
|
+
}],
|
|
29
|
+
type_asset: 'sdk.coin'
|
|
29
30
|
},
|
|
30
31
|
{
|
|
31
32
|
description: 'The native token of NEXX GEN AI',
|
|
@@ -45,7 +46,8 @@ const testnet_assets = {
|
|
|
45
46
|
},
|
|
46
47
|
images: [{
|
|
47
48
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/nexx.png'
|
|
48
|
-
}]
|
|
49
|
+
}],
|
|
50
|
+
type_asset: 'sdk.coin'
|
|
49
51
|
},
|
|
50
52
|
{
|
|
51
53
|
type_asset: 'sdk.coin',
|