Skip to content

Commit 71bf376

Browse files
committed
build 🛠 build-20250905-023347
1 parent 3a68272 commit 71bf376

File tree

2 files changed

+109
-6
lines changed

2 files changed

+109
-6
lines changed

v2/packages/chain-registry/src/mainnet/intento/asset-list.ts

Lines changed: 86 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import { AssetList } from '@chain-registry/types';
22
const info: AssetList = {
33
$schema: '../assetlist.schema.json',
44
chainName: 'intento',
5-
assets: [{
5+
assets: [
6+
{
67
description: 'The native token of INTENTO',
78
denomUnits: [{
89
denom: 'uinto',
@@ -24,6 +25,89 @@ const info: AssetList = {
2425
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/intento/images/into.svg'
2526
}],
2627
typeAsset: 'sdk.coin'
27-
}]
28+
},
29+
{
30+
description: 'The staking token of the Cosmos Hub',
31+
extendedDescription: 'ATOM secures the Cosmos Hub and is one of the most widely used IBC tokens. It can be used for staking, governance, and gas across the Cosmos ecosystem.',
32+
denomUnits: [{
33+
denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
34+
exponent: 0,
35+
aliases: ['uatom']
36+
}, {
37+
denom: 'ATOM',
38+
exponent: 6
39+
}],
40+
typeAsset: 'ics20',
41+
base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
42+
name: 'Cosmos Hub',
43+
display: 'ATOM',
44+
symbol: 'ATOM',
45+
logoURIs: {
46+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
47+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
48+
},
49+
traces: [{
50+
type: 'ibc',
51+
counterparty: {
52+
chainName: 'cosmoshub',
53+
baseDenom: 'uatom',
54+
channelId: 'channel-1492'
55+
},
56+
chain: {
57+
channelId: 'channel-1',
58+
path: 'transfer/channel-1/uatom'
59+
}
60+
}],
61+
images: [{
62+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
63+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg',
64+
imageSync: {
65+
chainName: 'cosmoshub',
66+
baseDenom: 'uatom'
67+
}
68+
}]
69+
},
70+
{
71+
description: 'The native token of Osmosis',
72+
extendedDescription: 'OSMO is the staking and governance token of Osmosis, the leading interchain DEX. It is also widely used as an IBC gas token.',
73+
denomUnits: [{
74+
denom: 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23',
75+
exponent: 0,
76+
aliases: ['uosmo']
77+
}, {
78+
denom: 'OSMO',
79+
exponent: 6
80+
}],
81+
typeAsset: 'ics20',
82+
base: 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23',
83+
name: 'Osmosis',
84+
display: 'OSMO',
85+
symbol: 'OSMO',
86+
logoURIs: {
87+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
88+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
89+
},
90+
traces: [{
91+
type: 'ibc',
92+
counterparty: {
93+
chainName: 'osmosis',
94+
baseDenom: 'uosmo',
95+
channelId: 'channel-106076'
96+
},
97+
chain: {
98+
channelId: 'channel-3',
99+
path: 'transfer/channel-3/uosmo'
100+
}
101+
}],
102+
images: [{
103+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
104+
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
105+
imageSync: {
106+
chainName: 'osmosis',
107+
baseDenom: 'uosmo'
108+
}
109+
}]
110+
}
111+
]
28112
};
29113
export default info;

v2/packages/chain-registry/src/mainnet/intento/chain.ts

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,32 @@ const info: Chain = {
1111
daemonName: 'intentod',
1212
nodeHome: '$HOME/.intento',
1313
keyAlgos: ['secp256k1'],
14-
slip44: 118,
1514
fees: {
16-
feeTokens: [{
15+
feeTokens: [
16+
{
1717
denom: 'uinto',
18-
fixedMinGasPrice: 0
19-
}]
18+
fixedMinGasPrice: 0.01,
19+
lowGasPrice: 0.01,
20+
averageGasPrice: 0.02,
21+
highGasPrice: 0.03
22+
},
23+
{
24+
denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
25+
fixedMinGasPrice: 0.003,
26+
lowGasPrice: 0.003,
27+
averageGasPrice: 0.007,
28+
highGasPrice: 0.015
29+
},
30+
{
31+
denom: 'ibc/47BD209179859CDE4A2806763D7189B6E6FE13A17880FE2B42DE1E6C1E329E23',
32+
fixedMinGasPrice: 0.005,
33+
lowGasPrice: 0.005,
34+
averageGasPrice: 0.01,
35+
highGasPrice: 0.02
36+
}
37+
]
2038
},
39+
slip44: 118,
2140
staking: {
2241
stakingTokens: [{
2342
denom: 'uinto'

0 commit comments

Comments
 (0)