@chain-registry/assets 1.64.26 → 1.64.27
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/esm/mainnet/acrechain.js +2 -2
- package/esm/mainnet/assets.js +2 -1
- package/esm/mainnet/aura.js +2 -2
- package/esm/mainnet/carbon.js +2 -2
- package/esm/mainnet/celestia.js +2 -2
- package/esm/mainnet/composable.js +2 -2
- package/esm/mainnet/cosmoshub.js +2 -2
- package/esm/mainnet/crescent.js +2 -2
- package/esm/mainnet/evmos.js +2 -2
- package/esm/mainnet/firmachain.js +182 -0
- package/esm/mainnet/gateway.js +2 -2
- package/esm/mainnet/index.js +1 -0
- package/esm/mainnet/juno.js +2 -2
- package/esm/mainnet/kujira.js +2 -2
- package/esm/mainnet/migaloo.js +2 -2
- package/esm/mainnet/neutron.js +2 -2
- package/esm/mainnet/noble.js +2 -2
- package/esm/mainnet/nois.js +2 -2
- package/esm/mainnet/osmosis.js +78 -2
- package/esm/mainnet/persistence.js +2 -2
- package/esm/mainnet/quicksilver.js +2 -2
- package/esm/mainnet/secretnetwork.js +2 -2
- package/esm/mainnet/stride.js +2 -2
- package/esm/mainnet/terra2.js +2 -2
- package/mainnet/acrechain.js +2 -2
- package/mainnet/assets.js +2 -1
- package/mainnet/aura.js +2 -2
- package/mainnet/carbon.js +2 -2
- package/mainnet/celestia.js +2 -2
- package/mainnet/composable.js +2 -2
- package/mainnet/cosmoshub.js +2 -2
- package/mainnet/crescent.js +2 -2
- package/mainnet/evmos.js +2 -2
- package/mainnet/firmachain.d.ts +3 -0
- package/mainnet/firmachain.js +184 -0
- package/mainnet/gateway.js +2 -2
- package/mainnet/index.d.ts +1 -0
- package/mainnet/index.js +4 -3
- package/mainnet/juno.js +2 -2
- package/mainnet/kujira.js +2 -2
- package/mainnet/migaloo.js +2 -2
- package/mainnet/neutron.js +2 -2
- package/mainnet/noble.js +2 -2
- package/mainnet/nois.js +2 -2
- package/mainnet/osmosis.js +78 -2
- package/mainnet/persistence.js +2 -2
- package/mainnet/quicksilver.js +2 -2
- package/mainnet/secretnetwork.js +2 -2
- package/mainnet/stride.js +2 -2
- package/mainnet/terra2.js +2 -2
- package/package.json +5 -5
package/mainnet/osmosis.js
CHANGED
|
@@ -2660,6 +2660,44 @@ const assets = {
|
|
|
2660
2660
|
}
|
|
2661
2661
|
}]
|
|
2662
2662
|
},
|
|
2663
|
+
{
|
|
2664
|
+
description: 'The native token of FirmaChain',
|
|
2665
|
+
denom_units: [{
|
|
2666
|
+
denom: 'ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839',
|
|
2667
|
+
exponent: 0,
|
|
2668
|
+
aliases: ['ufct']
|
|
2669
|
+
}, {
|
|
2670
|
+
denom: 'fct',
|
|
2671
|
+
exponent: 6
|
|
2672
|
+
}],
|
|
2673
|
+
base: 'ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839',
|
|
2674
|
+
name: 'FirmaChain',
|
|
2675
|
+
display: 'fct',
|
|
2676
|
+
symbol: 'FCT',
|
|
2677
|
+
logo_URIs: {
|
|
2678
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png',
|
|
2679
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg'
|
|
2680
|
+
},
|
|
2681
|
+
coingecko_id: 'firmachain',
|
|
2682
|
+
images: [{
|
|
2683
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png',
|
|
2684
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg',
|
|
2685
|
+
theme: {
|
|
2686
|
+
primary_color_hex: '#1c1c1c'
|
|
2687
|
+
}
|
|
2688
|
+
}],
|
|
2689
|
+
traces: [{
|
|
2690
|
+
type: 'ibc',
|
|
2691
|
+
counterparty: {
|
|
2692
|
+
channel_id: 'channel-1',
|
|
2693
|
+
base_denom: 'ufct',
|
|
2694
|
+
chain_name: 'firmachain'
|
|
2695
|
+
},
|
|
2696
|
+
chain: {
|
|
2697
|
+
channel_id: 'channel-79241'
|
|
2698
|
+
}
|
|
2699
|
+
}]
|
|
2700
|
+
},
|
|
2663
2701
|
{
|
|
2664
2702
|
description: 'The native token of Furya',
|
|
2665
2703
|
denom_units: [{
|
|
@@ -7783,6 +7821,44 @@ const assets = {
|
|
|
7783
7821
|
}
|
|
7784
7822
|
}]
|
|
7785
7823
|
},
|
|
7824
|
+
{
|
|
7825
|
+
description: 'The native token of FirmaChain',
|
|
7826
|
+
denom_units: [{
|
|
7827
|
+
denom: 'ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839',
|
|
7828
|
+
exponent: 0,
|
|
7829
|
+
aliases: ['ufct']
|
|
7830
|
+
}, {
|
|
7831
|
+
denom: 'fct',
|
|
7832
|
+
exponent: 6
|
|
7833
|
+
}],
|
|
7834
|
+
base: 'ibc/E43ABCC7E80E99E4E6E1226AE5695DDE0F83CB5C257CD04D47C36B8B90C1C839',
|
|
7835
|
+
name: 'FirmaChain',
|
|
7836
|
+
display: 'fct',
|
|
7837
|
+
symbol: 'FCT',
|
|
7838
|
+
logo_URIs: {
|
|
7839
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png',
|
|
7840
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg'
|
|
7841
|
+
},
|
|
7842
|
+
coingecko_id: 'firmachain',
|
|
7843
|
+
images: [{
|
|
7844
|
+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.png',
|
|
7845
|
+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/firmachain/images/fct.svg',
|
|
7846
|
+
theme: {
|
|
7847
|
+
primary_color_hex: '#1c1c1c'
|
|
7848
|
+
}
|
|
7849
|
+
}],
|
|
7850
|
+
traces: [{
|
|
7851
|
+
type: 'ibc',
|
|
7852
|
+
counterparty: {
|
|
7853
|
+
channel_id: 'channel-1',
|
|
7854
|
+
base_denom: 'ufct',
|
|
7855
|
+
chain_name: 'firmachain'
|
|
7856
|
+
},
|
|
7857
|
+
chain: {
|
|
7858
|
+
channel_id: 'channel-79241'
|
|
7859
|
+
}
|
|
7860
|
+
}]
|
|
7861
|
+
},
|
|
7786
7862
|
{
|
|
7787
7863
|
description: 'The native token of Furya',
|
|
7788
7864
|
denom_units: [{
|
|
@@ -11678,7 +11754,7 @@ const assets = {
|
|
|
11678
11754
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
11679
11755
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
11680
11756
|
theme: {
|
|
11681
|
-
primary_color_hex: '#
|
|
11757
|
+
primary_color_hex: '#db2777'
|
|
11682
11758
|
}
|
|
11683
11759
|
}],
|
|
11684
11760
|
socials: {
|
|
@@ -14544,7 +14620,7 @@ const assets = {
|
|
|
14544
14620
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
14545
14621
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
14546
14622
|
theme: {
|
|
14547
|
-
primary_color_hex: '#
|
|
14623
|
+
primary_color_hex: '#db2777'
|
|
14548
14624
|
}
|
|
14549
14625
|
}],
|
|
14550
14626
|
socials: {
|
package/mainnet/persistence.js
CHANGED
|
@@ -3197,7 +3197,7 @@ const assets = {
|
|
|
3197
3197
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
3198
3198
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
3199
3199
|
theme: {
|
|
3200
|
-
primary_color_hex: '#
|
|
3200
|
+
primary_color_hex: '#db2777'
|
|
3201
3201
|
}
|
|
3202
3202
|
}],
|
|
3203
3203
|
socials: {
|
|
@@ -3604,7 +3604,7 @@ const assets = {
|
|
|
3604
3604
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
3605
3605
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
3606
3606
|
theme: {
|
|
3607
|
-
primary_color_hex: '#
|
|
3607
|
+
primary_color_hex: '#db2777'
|
|
3608
3608
|
}
|
|
3609
3609
|
}],
|
|
3610
3610
|
socials: {
|
package/mainnet/quicksilver.js
CHANGED
|
@@ -674,7 +674,7 @@ const assets = {
|
|
|
674
674
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
675
675
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
676
676
|
theme: {
|
|
677
|
-
primary_color_hex: '#
|
|
677
|
+
primary_color_hex: '#db2777'
|
|
678
678
|
}
|
|
679
679
|
}],
|
|
680
680
|
socials: {
|
|
@@ -876,7 +876,7 @@ const assets = {
|
|
|
876
876
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
877
877
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
878
878
|
theme: {
|
|
879
|
-
primary_color_hex: '#
|
|
879
|
+
primary_color_hex: '#db2777'
|
|
880
880
|
}
|
|
881
881
|
}],
|
|
882
882
|
socials: {
|
package/mainnet/secretnetwork.js
CHANGED
|
@@ -3922,7 +3922,7 @@ const assets = {
|
|
|
3922
3922
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
3923
3923
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
3924
3924
|
theme: {
|
|
3925
|
-
primary_color_hex: '#
|
|
3925
|
+
primary_color_hex: '#db2777'
|
|
3926
3926
|
}
|
|
3927
3927
|
}],
|
|
3928
3928
|
socials: {
|
|
@@ -5264,7 +5264,7 @@ const assets = {
|
|
|
5264
5264
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
5265
5265
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
5266
5266
|
theme: {
|
|
5267
|
-
primary_color_hex: '#
|
|
5267
|
+
primary_color_hex: '#db2777'
|
|
5268
5268
|
}
|
|
5269
5269
|
}],
|
|
5270
5270
|
socials: {
|
package/mainnet/stride.js
CHANGED
|
@@ -1804,7 +1804,7 @@ const assets = {
|
|
|
1804
1804
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
1805
1805
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
1806
1806
|
theme: {
|
|
1807
|
-
primary_color_hex: '#
|
|
1807
|
+
primary_color_hex: '#db2777'
|
|
1808
1808
|
}
|
|
1809
1809
|
}],
|
|
1810
1810
|
socials: {
|
|
@@ -3624,7 +3624,7 @@ const assets = {
|
|
|
3624
3624
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
3625
3625
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
3626
3626
|
theme: {
|
|
3627
|
-
primary_color_hex: '#
|
|
3627
|
+
primary_color_hex: '#db2777'
|
|
3628
3628
|
}
|
|
3629
3629
|
}],
|
|
3630
3630
|
socials: {
|
package/mainnet/terra2.js
CHANGED
|
@@ -1968,7 +1968,7 @@ const assets = {
|
|
|
1968
1968
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
1969
1969
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
1970
1970
|
theme: {
|
|
1971
|
-
primary_color_hex: '#
|
|
1971
|
+
primary_color_hex: '#db2777'
|
|
1972
1972
|
}
|
|
1973
1973
|
}],
|
|
1974
1974
|
socials: {
|
|
@@ -5054,7 +5054,7 @@ const assets = {
|
|
|
5054
5054
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.png',
|
|
5055
5055
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stargaze/images/stars.svg',
|
|
5056
5056
|
theme: {
|
|
5057
|
-
primary_color_hex: '#
|
|
5057
|
+
primary_color_hex: '#db2777'
|
|
5058
5058
|
}
|
|
5059
5059
|
}],
|
|
5060
5060
|
socials: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@chain-registry/assets",
|
|
3
|
-
"version": "1.64.
|
|
3
|
+
"version": "1.64.27",
|
|
4
4
|
"description": "Chain Registry Asset Lists",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/cosmology-tech/chain-registry",
|
|
@@ -29,11 +29,11 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@chain-registry/utils": "^1.46.
|
|
33
|
-
"chain-registry": "^1.63.
|
|
32
|
+
"@chain-registry/utils": "^1.46.23",
|
|
33
|
+
"chain-registry": "^1.63.27"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@chain-registry/types": "^0.45.
|
|
36
|
+
"@chain-registry/types": "^0.45.23"
|
|
37
37
|
},
|
|
38
38
|
"keywords": [
|
|
39
39
|
"chain-registry",
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"interchain",
|
|
44
44
|
"tokens"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "12a4d3208647b42433ba59b80c78ec7472af41b2"
|
|
47
47
|
}
|