-
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
b30de63
commit 0e3d46c
Showing
13 changed files
with
226 additions
and
1 deletion.
There are no files selected for viewing
Submodule chain-registry
updated
6 files
+41 −0 | epix/assetlist.json | |
+120 −0 | epix/chain.json | |
+ − | epix/images/epix.png | |
+7 −0 | epix/images/epix.svg | |
+41 −0 | testnets/epixtestnet/assetlist.json | |
+115 −0 | testnets/epixtestnet/chain.json |
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/types'; | ||
const info: AssetList = { | ||
$schema: '../assetlist.schema.json', | ||
chain_name: 'epix', | ||
assets: [{ | ||
description: 'The EPIX coin, the lifeblood of the Epix network, providing the utility that powers every interaction and transaction within the ecosystem.', | ||
denom_units: [{ | ||
denom: 'aepix', | ||
exponent: 0 | ||
}, { | ||
denom: 'epix', | ||
exponent: 18 | ||
}], | ||
base: 'aepix', | ||
name: 'Epix', | ||
display: 'epix', | ||
symbol: 'EPIX', | ||
logo_URIs: { | ||
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: { | ||
primary_color_hex: '#69e9f5' | ||
} | ||
}], | ||
socials: { | ||
website: 'https://epix.zone/', | ||
twitter: 'https://x.com/zone_epix' | ||
}, | ||
type_asset: '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,69 @@ | ||
import { Chain } from '@chain-registry/types'; | ||
const info: Chain = { | ||
$schema: '../chain.schema.json', | ||
chain_name: 'epix', | ||
status: 'live', | ||
network_type: 'mainnet', | ||
website: 'https://epix.zone/', | ||
pretty_name: 'Epix', | ||
chain_type: 'cosmos', | ||
chain_id: 'epix_4242-1', | ||
bech32_prefix: 'epix', | ||
daemon_name: 'epixd', | ||
node_home: '$HOME/.epixd', | ||
key_algos: ['ethsecp256k1'], | ||
extra_codecs: ['ethermint'], | ||
slip44: 60, | ||
fees: { | ||
fee_tokens: [{ | ||
denom: 'aepix', | ||
fixed_min_gas_price: 1000000000000, | ||
low_gas_price: 1000000000000, | ||
average_gas_price: 2000000000000, | ||
high_gas_price: 3000000000000 | ||
}] | ||
}, | ||
staking: { | ||
staking_tokens: [{ | ||
denom: 'aepix' | ||
}] | ||
}, | ||
codebase: { | ||
|
||
}, | ||
logo_URIs: { | ||
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' | ||
}], | ||
"evm-http-jsonrpc": [{ | ||
address: 'https://epix.emvrpc.silknodes.io/', | ||
provider: 'Silk Nodes' | ||
}] | ||
}, | ||
explorers: [{ | ||
kind: 'Silk Nodes Explorer', | ||
url: 'https://explorer.silknodes.io/epix', | ||
tx_page: '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: { | ||
primary_color_hex: '#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 _assets from './assets'; | ||
import _chain from './chain'; | ||
|
||
export const assets = _assets; | ||
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
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
v1/packages/chain-registry/src/testnet/epixtestnet/assets.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/types'; | ||
const info: AssetList = { | ||
$schema: '../../assetlist.schema.json', | ||
chain_name: 'epixtestnet', | ||
assets: [{ | ||
description: 'The EPIX coin, the lifeblood of the Epix network, providing the utility that powers every interaction and transaction within the ecosystem.', | ||
denom_units: [{ | ||
denom: 'aepix', | ||
exponent: 0 | ||
}, { | ||
denom: 'epix', | ||
exponent: 18 | ||
}], | ||
base: 'aepix', | ||
name: 'Epix Testnet', | ||
display: 'epix', | ||
symbol: 'TEPIX', | ||
logo_URIs: { | ||
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: [{ | ||
image_sync: { | ||
chain_name: 'epix', | ||
base_denom: '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: { | ||
primary_color_hex: '#69e9f5' | ||
} | ||
}], | ||
type_asset: 'sdk.coin' | ||
}] | ||
}; | ||
export default info; |
64 changes: 64 additions & 0 deletions
64
v1/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,64 @@ | ||
import { Chain } from '@chain-registry/types'; | ||
const info: Chain = { | ||
$schema: '../../chain.schema.json', | ||
chain_name: 'epixtestnet', | ||
status: 'live', | ||
network_type: 'testnet', | ||
website: 'https://epix.zone/', | ||
pretty_name: 'Epix Testnet', | ||
chain_type: 'cosmos', | ||
chain_id: 'epix_4243-1', | ||
bech32_prefix: 'epix', | ||
daemon_name: 'epixd', | ||
node_home: '$HOME/.epixd', | ||
key_algos: ['ethsecp256k1'], | ||
extra_codecs: ['ethermint'], | ||
slip44: 60, | ||
fees: { | ||
fee_tokens: [{ | ||
denom: 'aepix', | ||
low_gas_price: 20000000000, | ||
average_gas_price: 25000000000, | ||
high_gas_price: 40000000000 | ||
}] | ||
}, | ||
staking: { | ||
staking_tokens: [{ | ||
denom: 'aepix' | ||
}] | ||
}, | ||
codebase: { | ||
|
||
}, | ||
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' | ||
}], | ||
"evm-http-jsonrpc": [{ | ||
address: 'https://evmrpc.testnet.epix.zone/', | ||
provider: 'Epix Testnet' | ||
}] | ||
}, | ||
explorers: [{ | ||
kind: 'Silk Nodes Explorer', | ||
url: 'https://https://testnet.epix.zone/epix', | ||
tx_page: '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: { | ||
primary_color_hex: '#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 _assets from './assets'; | ||
import _chain from './chain'; | ||
|
||
export const assets = _assets; | ||
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