Skip to content

Commit 0426b74

Browse files
committed
Add Epix mainnet to Cosmostation chainlist
- Add complete chain configuration (param_2.json) - Chain ID: epix_1916-1 (Cosmos) / 0x77c (EVM) - Ethermint-based chain with EIP-1559 support - Endpoints: gRPC, LCD, and EVM RPC - Explorer and social links configured - Add native EPIX token (assets_2.json) - Symbol: EPIX, Decimals: 18 - Brand color: #31bdc6 - Description highlighting decentralized internet vision - Add EPIX as IBC asset on Osmosis - IBC denom: ibc/776917313EC3252954ED622945D4979651ACD909A18E528283F46D7B166F20BF - Channel: epix channel-0 <-> osmosis channel-108456 - Add chain and asset images - Add empty ERC20 token list (erc20_2.json)
1 parent 45000e6 commit 0426b74

File tree

6 files changed

+124
-0
lines changed

6 files changed

+124
-0
lines changed

chain/epix/asset/epix.png

3.14 KB
Loading

chain/epix/assets_2.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
[
2+
{
3+
"type": "native",
4+
"denom": "aepix",
5+
"name": "Epix",
6+
"symbol": "EPIX",
7+
"description": "Epix is designed to power a completely decentralized internet, where websites are hosted by everyone and controlled by no one, making the web unstoppable.",
8+
"decimals": 18,
9+
"image": "https://raw.githubusercontent.com/cosmostation/chainlist/master/chain/epix/asset/epix.png",
10+
"coinGeckoId": "",
11+
"color": "#31bdc6"
12+
}
13+
]
14+

chain/epix/erc20_2.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[]
2+

chain/epix/param_2.json

Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
{
2+
"chain_id_cosmos" : "epix_1916-1",
3+
"chain_id_evm" : "0x77c",
4+
"chain_name": "Epix",
5+
"chain_image": "https://raw.githubusercontent.com/cosmostation/chainlist/master/chain/epix/resource/chain_epix.png",
6+
"staking_asset_denom" : "aepix",
7+
"staking_asset_symbol" : "EPIX",
8+
"staking_asset_image": "https://raw.githubusercontent.com/cosmostation/chainlist/master/chain/epix/asset/epix.png",
9+
"bech_account_prefix" : "epix",
10+
"bech_validator_prefix" : "epixvaloper",
11+
"origin_genesis_time" : "2024-01-01T00:00:00Z",
12+
"api_name": "epix",
13+
"is_support_mobile_wallet" : true,
14+
"is_support_extension_wallet" : true,
15+
"is_support_erc20" : true,
16+
"chain_type": [
17+
"cosmos",
18+
"evm"
19+
],
20+
"account_type" : [
21+
{
22+
"hd_path": "m/44'/60'/0'/0/X",
23+
"pubkey_style": "keccak256",
24+
"pubkey_type": "/ethermint.crypto.v1.ethsecp256k1.PubKey"
25+
}
26+
],
27+
"cosmos_fee_info" : {
28+
"base" : "1",
29+
"rate" : [
30+
"1000000000000aepix",
31+
"2000000000000aepix",
32+
"3000000000000aepix"
33+
],
34+
"is_simulable" : true,
35+
"simulated_gas_multiply" : 1.2,
36+
"init_gas_limit" : 300000,
37+
"fee_threshold" : ""
38+
},
39+
"evm_fee_info" : {
40+
"is_eip1559": true,
41+
"simulated_gas_multiply" : 1.2
42+
},
43+
"evm_multicall_info" : {
44+
"is_support_multicall": true,
45+
"multicall_address" : "0xcA11bde05977b3631167028862bE2a173976CA11"
46+
},
47+
"grpc_endpoint" : [
48+
{
49+
"provider": "Epix",
50+
"url": "grpc.epix.zone:15067"
51+
}
52+
],
53+
"lcd_endpoint" : [
54+
{
55+
"provider": "Epix",
56+
"url": "https://api.epix.zone/"
57+
}
58+
],
59+
"evm_rpc_endpoint" : [
60+
{
61+
"provider": "Epix",
62+
"url": "https://evmrpc.epix.zone/"
63+
}
64+
],
65+
"explorer" : {
66+
"name": "Epix Explorer",
67+
"url": "https://explorer.epix.zone/",
68+
"account": "https://explorer.epix.zone/epix/account/${address}",
69+
"tx": "https://explorer.epix.zone/epix/tx/${hash}",
70+
"proposal": "https://explorer.epix.zone/epix/gov/${id}"
71+
},
72+
"about" : {
73+
"website" : "https://epix.zone/",
74+
"docs": "https://docs.epix.zone/",
75+
"github" : "https://github.com/EpixZone/Epix",
76+
"twitter" : "https://x.com/zone_epix",
77+
"coingecko" : ""
78+
},
79+
"description" : {
80+
"ko" : "Epix는 모든 사람이 웹사이트를 호스팅하고 누구도 통제할 수 없는 완전히 분산된 인터넷을 구동하도록 설계되어 웹을 멈출 수 없게 만듭니다.",
81+
"en" : "Epix is designed to power a completely decentralized internet, where websites are hosted by everyone and controlled by no one, making the web unstoppable.",
82+
"ja" : "Epixは、誰もがウェブサイトをホストし、誰も制御できない完全に分散化されたインターネットを動かすように設計されており、ウェブを止められないものにします。"
83+
}
84+
}
85+

chain/epix/resource/chain_epix.png

3.14 KB
Loading

chain/osmosis/assets_2.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11215,5 +11215,28 @@
1121511215
"denom": "factory/migaloo1t862qdu9mj5hr3j727247acypym3ej47axu22rrapm4tqlcpuseqltxwq5/ophir"
1121611216
}
1121711217
}
11218+
},
11219+
{
11220+
"type": "ibc",
11221+
"denom": "ibc/776917313EC3252954ED622945D4979651ACD909A18E528283F46D7B166F20BF",
11222+
"name": "Epix",
11223+
"symbol": "EPIX",
11224+
"description": "Epix is designed to power a completely decentralized internet, where websites are hosted by everyone and controlled by no one, making the web unstoppable.",
11225+
"decimals": 18,
11226+
"image": "https://raw.githubusercontent.com/cosmostation/chainlist/master/chain/epix/asset/epix.png",
11227+
"coinGeckoId": "",
11228+
"ibc_info": {
11229+
"path": "epix>osmosis",
11230+
"client": {
11231+
"channel": "channel-108456",
11232+
"port": "transfer"
11233+
},
11234+
"counterparty": {
11235+
"channel": "channel-0",
11236+
"port": "transfer",
11237+
"chain": "epix",
11238+
"denom": "aepix"
11239+
}
11240+
}
1121811241
}
1121911242
]

0 commit comments

Comments
 (0)