-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b0bbd09
commit 2d6e464
Showing
10 changed files
with
269 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
36 changes: 36 additions & 0 deletions
36
v2/packages/chain-registry/src/testnet/epixtestnet/asset-list.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
87
v2/packages/chain-registry/src/testnet/epixtestnet/chain.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |