Skip to content

Commit

Permalink
build 🛠 build-20241013-025624
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Oct 13, 2024
1 parent b0bbd09 commit 2d6e464
Show file tree
Hide file tree
Showing 10 changed files with 269 additions and 0 deletions.
2 changes: 2 additions & 0 deletions v2/packages/chain-registry/src/mainnet/asset-lists.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ import * as _dyson from './dyson';
import * as _echelon from './echelon';
import * as _emoney from './emoney';
import * as _empowerchain from './empowerchain';
import * as _epix from './epix';
import * as _ethos from './ethos';
import * as _evmos from './evmos';
import * as _fetchhub from './fetchhub';
Expand Down Expand Up @@ -257,6 +258,7 @@ const assetList: AssetList[] = [
_echelon.assetList,
_emoney.assetList,
_empowerchain.assetList,
_epix.assetList,
_ethos.assetList,
_evmos.assetList,
_fetchhub.assetList,
Expand Down
2 changes: 2 additions & 0 deletions v2/packages/chain-registry/src/mainnet/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ import * as _dyson from './dyson';
import * as _echelon from './echelon';
import * as _emoney from './emoney';
import * as _empowerchain from './empowerchain';
import * as _epix from './epix';
import * as _ethos from './ethos';
import * as _evmos from './evmos';
import * as _fetchhub from './fetchhub';
Expand Down Expand Up @@ -259,6 +260,7 @@ const chains: Chain[] = [
_echelon.chain,
_emoney.chain,
_empowerchain.chain,
_epix.chain,
_ethos.chain,
_evmos.chain,
_fetchhub.chain,
Expand Down
36 changes: 36 additions & 0 deletions v2/packages/chain-registry/src/mainnet/epix/asset-list.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import { AssetList } from '@chain-registry/v2-types';
const info: AssetList = {
$schema: '../assetlist.schema.json',
chainName: 'epix',
assets: [{
description: 'The EPIX coin, the lifeblood of the Epix network, providing the utility that powers every interaction and transaction within the ecosystem.',
denomUnits: [{
denom: 'aepix',
exponent: 0
}, {
denom: 'epix',
exponent: 18
}],
base: 'aepix',
name: 'Epix',
display: 'epix',
symbol: 'EPIX',
logoURIs: {
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
},
images: [{
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg',
theme: {
primaryColorHex: '#69e9f5'
}
}],
socials: {
website: 'https://epix.zone/',
twitter: 'https://x.com/zone_epix'
},
typeAsset: 'sdk.coin'
}]
};
export default info;
92 changes: 92 additions & 0 deletions v2/packages/chain-registry/src/mainnet/epix/chain.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,92 @@
import { Chain } from '@chain-registry/v2-types';
const info: Chain = {
$schema: '../chain.schema.json',
chainName: 'epix',
status: 'live',
networkType: 'mainnet',
website: 'https://epix.zone/',
prettyName: 'Epix',
chainType: 'cosmos',
chainId: 'epix_4242-1',
bech32Prefix: 'epix',
daemonName: 'epixd',
nodeHome: '$HOME/.epixd',
keyAlgos: ['ethsecp256k1'],
extraCodecs: ['ethermint'],
slip44: 60,
fees: {
feeTokens: [{
denom: 'aepix',
fixedMinGasPrice: 1000000000000,
lowGasPrice: 1000000000000,
averageGasPrice: 2000000000000,
highGasPrice: 3000000000000
}]
},
staking: {
stakingTokens: [{
denom: 'aepix'
}]
},
codebase: {
gitRepo: 'https://github.com/EpixZone/Epix',
recommendedVersion: 'v1.0.0',
compatibleVersions: ['v1.0.0'],
genesis: {
genesisUrl: 'https://raw.githubusercontent.com/EpixZone/Epix/refs/heads/main/Networks/Mainnet/epix_4242-0/genesis.json'
},
versions: [{
name: 'v1.0.0',
recommendedVersion: 'v1.0.0',
compatibleVersions: ['v1.0.0'],
nextVersionName: '',
sdk: {
type: 'cosmos',
version: '0.46'
},
consensus: {
type: 'tendermint',
version: '0.34'
},
ibc: {
type: 'go',
version: 'v6.1.0'
}
}]
},
logoURIs: {
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
},
apis: {
rpc: [{
address: 'https://epix.rpc.silknodes.io/',
provider: 'Silk Nodes'
}],
rest: [{
address: 'https://epix.api.silknodes.io',
provider: 'Silk Nodes'
}],
grpc: [{
address: 'https://epix.grpc.silknodes.io:443',
provider: 'Silk Nodes'
}],
evmHttpJsonrpc: [{
address: 'https://epix.emvrpc.silknodes.io/',
provider: 'Silk Nodes'
}]
},
explorers: [{
kind: 'Silk Nodes Explorer',
url: 'https://explorer.silknodes.io/epix',
txPage: 'https://explorer.silknodes.io/osmosis/tx/${txHash}'
}],
images: [{
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg',
theme: {
primaryColorHex: '#69e9f5'
}
}]
};
export default info;
5 changes: 5 additions & 0 deletions v2/packages/chain-registry/src/mainnet/epix/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import _assetList from './asset-list';
import _chain from './chain';

export const assetList = _assetList;
export const chain = _chain;
2 changes: 2 additions & 0 deletions v2/packages/chain-registry/src/testnet/asset-lists.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import * as _elystestnet from './elystestnet';
import * as _empetestnet from './empetestnet';
import * as _empowertestnet from './empowertestnet';
import * as _entrypointtestnet from './entrypointtestnet';
import * as _epixtestnet from './epixtestnet';
import * as _evmostestnet from './evmostestnet';
import * as _fetchhubtestnet from './fetchhubtestnet';
import * as _fiammatestnet from './fiammatestnet';
Expand Down Expand Up @@ -155,6 +156,7 @@ const assetList: AssetList[] = [
_empetestnet.assetList,
_empowertestnet.assetList,
_entrypointtestnet.assetList,
_epixtestnet.assetList,
_evmostestnet.assetList,
_fetchhubtestnet.assetList,
_fiammatestnet.assetList,
Expand Down
2 changes: 2 additions & 0 deletions v2/packages/chain-registry/src/testnet/chains.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ import * as _elystestnet from './elystestnet';
import * as _empetestnet from './empetestnet';
import * as _empowertestnet from './empowertestnet';
import * as _entrypointtestnet from './entrypointtestnet';
import * as _epixtestnet from './epixtestnet';
import * as _evmostestnet from './evmostestnet';
import * as _fetchhubtestnet from './fetchhubtestnet';
import * as _fiammatestnet from './fiammatestnet';
Expand Down Expand Up @@ -155,6 +156,7 @@ const chains: Chain[] = [
_empetestnet.chain,
_empowertestnet.chain,
_entrypointtestnet.chain,
_epixtestnet.chain,
_evmostestnet.chain,
_fetchhubtestnet.chain,
_fiammatestnet.chain,
Expand Down
36 changes: 36 additions & 0 deletions v2/packages/chain-registry/src/testnet/epixtestnet/asset-list.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
import { AssetList } from '@chain-registry/v2-types';
const info: AssetList = {
$schema: '../../assetlist.schema.json',
chainName: 'epixtestnet',
assets: [{
description: 'The EPIX coin, the lifeblood of the Epix network, providing the utility that powers every interaction and transaction within the ecosystem.',
denomUnits: [{
denom: 'aepix',
exponent: 0
}, {
denom: 'epix',
exponent: 18
}],
base: 'aepix',
name: 'Epix Testnet',
display: 'epix',
symbol: 'TEPIX',
logoURIs: {
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg'
},
images: [{
imageSync: {
chainName: 'epix',
baseDenom: 'aepix'
},
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg',
theme: {
primaryColorHex: '#69e9f5'
}
}],
typeAsset: 'sdk.coin'
}]
};
export default info;
87 changes: 87 additions & 0 deletions v2/packages/chain-registry/src/testnet/epixtestnet/chain.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
import { Chain } from '@chain-registry/v2-types';
const info: Chain = {
$schema: '../../chain.schema.json',
chainName: 'epixtestnet',
status: 'live',
networkType: 'testnet',
website: 'https://epix.zone/',
prettyName: 'Epix Testnet',
chainType: 'cosmos',
chainId: 'epix_4243-1',
bech32Prefix: 'epix',
daemonName: 'epixd',
nodeHome: '$HOME/.epixd',
keyAlgos: ['ethsecp256k1'],
extraCodecs: ['ethermint'],
slip44: 60,
fees: {
feeTokens: [{
denom: 'aepix',
lowGasPrice: 20000000000,
averageGasPrice: 25000000000,
highGasPrice: 40000000000
}]
},
staking: {
stakingTokens: [{
denom: 'aepix'
}]
},
codebase: {
gitRepo: 'https://github.com/EpixZone/Epix',
recommendedVersion: 'v12.0.0-rc4',
compatibleVersions: ['v12.0.0-rc4'],
genesis: {
genesisUrl: 'https://raw.githubusercontent.com/EpixZone/Epix/refs/heads/main/Networks/Testnet/epix_4243-0/genesis.json'
},
versions: [{
name: 'v1.0.0',
recommendedVersion: 'v1.0.0',
compatibleVersions: ['v1.0.0'],
nextVersionName: '',
sdk: {
type: 'cosmos',
version: '0.46'
},
consensus: {
type: 'tendermint',
version: '0.34'
},
ibc: {
type: 'go',
version: 'v6.1.0'
}
}]
},
apis: {
rpc: [{
address: 'https://rpc.testnet.epix.zone',
provider: 'Epix Testnet'
}],
rest: [{
address: 'https://api.testnet.epix.zone',
provider: 'Epix Testnet'
}],
grpc: [{
address: 'https://grpc.testnet.epix.zone:443',
provider: 'Epix Testnet'
}],
evmHttpJsonrpc: [{
address: 'https://evmrpc.testnet.epix.zone/',
provider: 'Epix Testnet'
}]
},
explorers: [{
kind: 'Silk Nodes Explorer',
url: 'https://https://testnet.epix.zone/epix',
txPage: 'https://https://testnet.epix.zone/epix/tx/${txHash}'
}],
images: [{
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.png',
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/epix/images/epix.svg',
theme: {
primaryColorHex: '#69e9f5'
}
}]
};
export default info;
5 changes: 5 additions & 0 deletions v2/packages/chain-registry/src/testnet/epixtestnet/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import _assetList from './asset-list';
import _chain from './chain';

export const assetList = _assetList;
export const chain = _chain;

0 comments on commit 2d6e464

Please sign in to comment.