Skip to content

Commit 4692b95

Browse files
committed
Additional testnets
1 parent 52675f0 commit 4692b95

File tree

4 files changed

+82
-3
lines changed

4 files changed

+82
-3
lines changed

Makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,11 @@ config/kylin: codegen/clean
9595
config/telos: codegen/clean
9696
cp ./configs/.env.telos .env.local
9797

98+
config/telostestnet: codegen/clean
99+
cp ./configs/.env.telostestnet .env.local
100+
98101
config/wax: codegen/clean
99102
cp ./configs/.env.wax .env.local
100-
103+
104+
config/waxtestnet: codegen/clean
105+
cp ./configs/.env.waxtestnet .env.local

configs/.env.telostestnet

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
PUBLIC_CHAIN_ID="1eaa0824707c8c16bd25145493bf062aecddfeb56c736f6ba6397f3195f33c9f"
2+
PUBLIC_CHAIN_SHORT="telostestnet"
3+
PUBLIC_SYSTEM_TOKEN_CONTRACT="eosio.token"
4+
PUBLIC_SYSTEM_TOKEN_SYMBOL="4,TLOS"
5+
PUBLIC_SYSTEM_TOKEN_SYMBOL_ALT=
6+
PUBLIC_SYSTEM_TOKEN_LOCKED_SUPPLY=
7+
8+
PUBLIC_API_CHAIN="https://telostestnet.greymass.com"
9+
PUBLIC_API_HISTORY="https://telostestnet.greymass.com"
10+
11+
PUBLIC_FEATURE_COINBASE_APPID=
12+
PUBLIC_FEATURE_COINBASE_ASSETS=
13+
PUBLIC_FEATURE_DELPHIHELPER=false
14+
PUBLIC_FEATURE_DELPHIORACLE=true
15+
PUBLIC_FEATURE_DIRECTFUNDING=false
16+
PUBLIC_FEATURE_EOSNTIME=false
17+
PUBLIC_FEATURE_GIFTEDRAM=false
18+
PUBLIC_FEATURE_LIGHTAPI=false
19+
PUBLIC_FEATURE_METAMASK_PRODUCT_NAME=
20+
PUBLIC_FEATURE_METAMASK_SERVICE_URL=
21+
PUBLIC_FEATURE_METAMASK_SNAP_ORIGIN=
22+
PUBLIC_FEATURE_METAMASK=false
23+
PUBLIC_FEATURE_POWERUP=false
24+
PUBLIC_FEATURE_RAMMARKET=true
25+
PUBLIC_FEATURE_RENTREX=false
26+
PUBLIC_FEATURE_REX=true
27+
PUBLIC_FEATURE_ROBO=true
28+
PUBLIC_FEATURE_STAKERESOURCE=true
29+
PUBLIC_FEATURE_STAKING=false
30+
PUBLIC_FEATURE_TIMESERIES=false
31+
PUBLIC_FEATURE_UNICOVECONTRACTS=false
32+
33+
BACKEND_API_CHAIN="https://telostestnet.greymass.com"
34+
BACKEND_API_HISTORY="https://telostestnet.greymass.com"
35+
BACKEND_API_LIGHTAPI=
36+
BACKEND_API_METRICS=

configs/.env.waxtestnet

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
PUBLIC_CHAIN_ID="f16b1833c747c43682f4386fca9cbb327929334a762755ebec17f6f23c9b8a12"
2+
PUBLIC_CHAIN_SHORT="waxtestnet"
3+
PUBLIC_SYSTEM_TOKEN_CONTRACT="eosio.token"
4+
PUBLIC_SYSTEM_TOKEN_SYMBOL="8,WAX"
5+
PUBLIC_SYSTEM_TOKEN_SYMBOL_ALT="8,WAXP"
6+
PUBLIC_SYSTEM_TOKEN_LOCKED_SUPPLY=
7+
8+
PUBLIC_API_CHAIN="https://waxtestnet.greymass.com"
9+
PUBLIC_API_HISTORY="https://waxtestnet.greymass.com"
10+
11+
PUBLIC_FEATURE_COINBASE_APPID=
12+
PUBLIC_FEATURE_COINBASE_ASSETS=
13+
PUBLIC_FEATURE_DELPHIHELPER=false
14+
PUBLIC_FEATURE_DELPHIORACLE=true
15+
PUBLIC_FEATURE_DIRECTFUNDING=false
16+
PUBLIC_FEATURE_EOSNTIME=false
17+
PUBLIC_FEATURE_GIFTEDRAM=false
18+
PUBLIC_FEATURE_LIGHTAPI=false
19+
PUBLIC_FEATURE_METAMASK_PRODUCT_NAME=
20+
PUBLIC_FEATURE_METAMASK_SERVICE_URL=
21+
PUBLIC_FEATURE_METAMASK_SNAP_ORIGIN=
22+
PUBLIC_FEATURE_METAMASK=false
23+
PUBLIC_FEATURE_POWERUP=false
24+
PUBLIC_FEATURE_RAMMARKET=true
25+
PUBLIC_FEATURE_RENTREX=false
26+
PUBLIC_FEATURE_REX=false
27+
PUBLIC_FEATURE_ROBO=true
28+
PUBLIC_FEATURE_STAKERESOURCE=true
29+
PUBLIC_FEATURE_STAKING=false
30+
PUBLIC_FEATURE_TIMESERIES=false
31+
PUBLIC_FEATURE_UNICOVECONTRACTS=false
32+
33+
BACKEND_API_CHAIN="https://waxtestnet.greymass.com"
34+
BACKEND_API_HISTORY="https://waxtestnet.greymass.com"
35+
BACKEND_API_LIGHTAPI=
36+
BACKEND_API_METRICS=

src/hooks.server.ts

+4-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,12 @@ type HandleParams = Parameters<Handle>[0];
1313
// TODO: Find a better home for this data
1414
const mappings: Record<string, string> = {
1515
eos: 'https://unicove.com',
16+
jungle4: 'https://jungle4.unicove.com',
17+
kylin: 'https://kylin.unicove.com',
1618
telos: 'https://telos.unicove.com',
19+
telostestnet: 'https://telostestnet.unicove.com',
1720
wax: 'https://wax.unicove.com',
18-
jungle4: 'https://jungle4.unicove.com',
19-
kylin: 'https://kylin.unicove.com'
21+
waxtestnet: 'https://waxtestnet.unicove.com'
2022
};
2123

2224
export function getHeaderLang(event: RequestEvent) {

0 commit comments

Comments
 (0)