Skip to content

Commit c80fc88

Browse files
committed
build 🛠 build-20251029-023926
1 parent f611d38 commit c80fc88

File tree

14 files changed

+228
-5
lines changed

14 files changed

+228
-5
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const info: Chain = {
1616
feeTokens: [{
1717
denom: 'ucnho',
1818
fixedMinGasPrice: 0.000005,
19-
lowGasPrice: 0.000001,
19+
lowGasPrice: 0.000005,
2020
averageGasPrice: 0.00001,
2121
highGasPrice: 0.025
2222
}]

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

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,35 @@ const info: AssetList = {
307307
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/pengu.int3.png'
308308
}],
309309
typeAsset: 'sdk.coin'
310+
},
311+
{
312+
description: 'Zcash on Int3face',
313+
denomUnits: [{
314+
denom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/zcash-zec',
315+
exponent: 0
316+
}, {
317+
denom: 'zec',
318+
exponent: 8
319+
}],
320+
base: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/zcash-zec',
321+
name: 'Zcash',
322+
display: 'zec',
323+
symbol: 'ZEC',
324+
traces: [{
325+
type: 'bridge',
326+
counterparty: {
327+
chainName: 'zcash',
328+
baseDenom: 'zatoshi'
329+
},
330+
provider: 'Int3face'
331+
}],
332+
logoURIs: {
333+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/zec.int3.png'
334+
},
335+
images: [{
336+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/zec.int3.png'
337+
}],
338+
typeAsset: 'sdk.coin'
310339
}
311340
]
312341
};

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

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17363,6 +17363,44 @@ const info: AssetList = {
1736317363
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/ltc.int3.svg'
1736417364
}]
1736517365
},
17366+
{
17367+
description: 'Native ZEC from Zcash blockchain bridged via Int3face bridge',
17368+
denomUnits: [{
17369+
denom: 'ibc/18A91A3DDFD9776A247AE1B4B3298D754D1627B85F288DCEA473B7239F7B7A0E',
17370+
exponent: 0,
17371+
aliases: ['factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/zcash-zec']
17372+
}, {
17373+
denom: 'zec',
17374+
exponent: 8
17375+
}],
17376+
typeAsset: 'ics20',
17377+
base: 'ibc/18A91A3DDFD9776A247AE1B4B3298D754D1627B85F288DCEA473B7239F7B7A0E',
17378+
name: 'Zcash',
17379+
display: 'zec',
17380+
symbol: 'ZEC',
17381+
traces: [{
17382+
type: 'ibc',
17383+
counterparty: {
17384+
chainName: 'int3face',
17385+
baseDenom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/zcash-zec',
17386+
channelId: 'channel-0'
17387+
},
17388+
chain: {
17389+
channelId: 'channel-82819',
17390+
path: 'transfer/channel-82819/factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/zcash-zec'
17391+
}
17392+
}],
17393+
logoURIs: {
17394+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/zec.int3.png'
17395+
},
17396+
images: [{
17397+
imageSync: {
17398+
chainName: 'int3face',
17399+
baseDenom: 'factory/int31zlefkpe3g0vvm9a4h0jf9000lmqutlh99h7fsd/zcash-zec'
17400+
},
17401+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/int3face/images/zec.int3.png'
17402+
}]
17403+
},
1736617404
{
1736717405
description: 'Tether\'s USD stablecoin from Arbitrum on Axelar',
1736817406
denomUnits: [{

v2/packages/chain-registry/src/noncosmos/asset-lists.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ import * as _stellar from './stellar';
2929
import * as _sui from './sui';
3030
import * as _tinkernet from './tinkernet';
3131
import * as _xrpl from './xrpl';
32+
import * as _zcash from './zcash';
3233
import * as _zilliqa from './zilliqa';
3334
import * as _berachain from './berachain';
3435
import * as _hall from './hall';
@@ -46,6 +47,7 @@ import * as _polygontestnet from './polygontestnet';
4647
import * as _solanatestnet from './solanatestnet';
4748
import * as _tontestnet from './tontestnet';
4849
import * as _xrpltestnet from './xrpltestnet';
50+
import * as _zcashtestnet from './zcashtestnet';
4951
import * as _ojotestnet from './ojotestnet';
5052
import * as _tsc from './tsc';
5153

@@ -79,6 +81,7 @@ const assetList: AssetList[] = [
7981
_sui.assetList,
8082
_tinkernet.assetList,
8183
_xrpl.assetList,
84+
_zcash.assetList,
8285
_zilliqa.assetList,
8386
_berachain.assetList,
8487
_hall.assetList,
@@ -96,6 +99,7 @@ const assetList: AssetList[] = [
9699
_solanatestnet.assetList,
97100
_tontestnet.assetList,
98101
_xrpltestnet.assetList,
102+
_zcashtestnet.assetList,
99103
_ojotestnet.assetList,
100104
_tsc.assetList
101105
];
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
import { AssetList } from '@chain-registry/types';
2+
const info: AssetList = {
3+
$schema: '../../assetlist.schema.json',
4+
chainName: 'zcash',
5+
assets: [{
6+
description: 'Zcash is a privacy-focused cryptocurrency that uses advanced cryptography to provide enhanced transaction privacy.',
7+
extendedDescription: 'Zcash (ZEC) is a decentralized cryptocurrency focused on privacy and selective transparency of transactions. It uses zero-knowledge proofs (zk-SNARKs) to enable users to transact privately while maintaining a secure blockchain. Zcash offers users the choice between transparent transactions (similar to Bitcoin) and shielded transactions that hide sender, receiver, and amount information.',
8+
denomUnits: [{
9+
denom: 'zatoshi',
10+
exponent: 0
11+
}, {
12+
denom: 'zec',
13+
exponent: 8
14+
}],
15+
typeAsset: 'bitcoin-like',
16+
base: 'zatoshi',
17+
name: 'Zcash',
18+
display: 'zec',
19+
symbol: 'ZEC',
20+
coingeckoId: 'zcash',
21+
images: [{
22+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/zcash/images/zec.png',
23+
theme: {
24+
circle: true
25+
}
26+
}],
27+
socials: {
28+
website: 'https://z.cash/',
29+
twitter: 'https://x.com/zcash'
30+
}
31+
}]
32+
};
33+
export default info;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import _assetList from './asset-list';
2+
3+
export const assetList = _assetList;
Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
import { AssetList } from '@chain-registry/types';
2+
const info: AssetList = {
3+
$schema: '../../../assetlist.schema.json',
4+
chainName: 'zcashtestnet',
5+
assets: [{
6+
description: 'The testnet version of Zcash.',
7+
denomUnits: [{
8+
denom: 'zatoshi',
9+
exponent: 0
10+
}, {
11+
denom: 'zec',
12+
exponent: 8
13+
}],
14+
typeAsset: 'bitcoin-like',
15+
base: 'zatoshi',
16+
name: 'Zcash',
17+
display: 'zec',
18+
symbol: 'ZEC',
19+
traces: [{
20+
type: 'test-mintage',
21+
counterparty: {
22+
chainName: 'zcash',
23+
baseDenom: 'zatoshi'
24+
},
25+
provider: 'Zcash'
26+
}],
27+
images: [{
28+
imageSync: {
29+
chainName: 'zcash',
30+
baseDenom: 'zatoshi'
31+
},
32+
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/zcash/images/zec.png'
33+
}],
34+
coingeckoId: 'zcash'
35+
}]
36+
};
37+
export default info;
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import _assetList from './asset-list';
2+
3+
export const assetList = _assetList;

v2/packages/chain-registry/src/testnet/daodiseotestnet/chain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ const info: Chain = {
1717
feeTokens: [{
1818
denom: 'uodis',
1919
fixedMinGasPrice: 0.025,
20-
lowGasPrice: 0.01,
20+
lowGasPrice: 0.025,
2121
averageGasPrice: 0.025,
2222
highGasPrice: 0.04
2323
}]

0 commit comments

Comments
 (0)