Skip to content

Commit

Permalink
build 🛠 build-20241013-022407
Browse files Browse the repository at this point in the history
  • Loading branch information
pyramation committed Oct 13, 2024
1 parent b30de63 commit 0e3d46c
Show file tree
Hide file tree
Showing 13 changed files with 226 additions and 1 deletion.
2 changes: 2 additions & 0 deletions v1/packages/chain-registry/src/mainnet/assets.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 assets: AssetList[] = [
_echelon.assets,
_emoney.assets,
_empowerchain.assets,
_epix.assets,
_ethos.assets,
_evmos.assets,
_fetchhub.assets,
Expand Down
2 changes: 2 additions & 0 deletions v1/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 v1/packages/chain-registry/src/mainnet/epix/assets.ts
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;
69 changes: 69 additions & 0 deletions v1/packages/chain-registry/src/mainnet/epix/chain.ts
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;
5 changes: 5 additions & 0 deletions v1/packages/chain-registry/src/mainnet/epix/index.ts
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;
1 change: 1 addition & 0 deletions v1/packages/chain-registry/src/mainnet/named.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ export * as dyson from './dyson';
export * as echelon from './echelon';
export * as emoney from './emoney';
export * as empowerchain from './empowerchain';
export * as epix from './epix';
export * as ethos from './ethos';
export * as evmos from './evmos';
export * as fetchhub from './fetchhub';
Expand Down
2 changes: 2 additions & 0 deletions v1/packages/chain-registry/src/testnet/assets.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 assets: AssetList[] = [
_empetestnet.assets,
_empowertestnet.assets,
_entrypointtestnet.assets,
_epixtestnet.assets,
_evmostestnet.assets,
_fetchhubtestnet.assets,
_fiammatestnet.assets,
Expand Down
2 changes: 2 additions & 0 deletions v1/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 v1/packages/chain-registry/src/testnet/epixtestnet/assets.ts
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 v1/packages/chain-registry/src/testnet/epixtestnet/chain.ts
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;
5 changes: 5 additions & 0 deletions v1/packages/chain-registry/src/testnet/epixtestnet/index.ts
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;
1 change: 1 addition & 0 deletions v1/packages/chain-registry/src/testnet/named.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ export * as elystestnet from './elystestnet';
export * as empetestnet from './empetestnet';
export * as empowertestnet from './empowertestnet';
export * as entrypointtestnet from './entrypointtestnet';
export * as epixtestnet from './epixtestnet';
export * as evmostestnet from './evmostestnet';
export * as fetchhubtestnet from './fetchhubtestnet';
export * as fiammatestnet from './fiammatestnet';
Expand Down

0 comments on commit 0e3d46c

Please sign in to comment.