Skip to content
This repository was archived by the owner on Aug 7, 2025. It is now read-only.

Commit 9e66447

Browse files
committed
fix domain push
1 parent 7b99d5f commit 9e66447

File tree

6 files changed

+46
-50
lines changed

6 files changed

+46
-50
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,4 +46,4 @@ jobs:
4646
with:
4747
github_token: ${{ secrets.GITHUB_TOKEN }}
4848
publish_dir: ./.vitepress/dist
49-
cname: rollkit.dev
49+
cname: ev.xyz

.vitepress/components/rosm.json

Lines changed: 41 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -1,46 +1,42 @@
11
{
2-
"rpc":"https://rpc.rosm.rollkit.dev",
3-
"rest":"https://api.rosm.rollkit.dev",
4-
"chainId":"rosm",
5-
"chainName":"Rollkit Cosmwasm Testnet",
6-
"stakeCurrency":{
7-
"coinDenom":"ROSM",
8-
"coinMinimalDenom":"urosm",
9-
"coinDecimals":6
10-
},
11-
"bech32Config":{
12-
"bech32PrefixAccAddr":"wasm",
13-
"bech32PrefixAccPub":"wasmpub",
14-
"bech32PrefixValAddr":"wasmvaloper",
15-
"bech32PrefixValPub":"wasmvaloperpub",
16-
"bech32PrefixConsAddr":"wasmvalcons",
17-
"bech32PrefixConsPub":"wasmvalconspub"
18-
},
19-
"bip44":{
20-
"coinType":118
21-
},
22-
"currencies":[
23-
{
24-
"coinDenom":"ROSM",
25-
"coinMinimalDenom":"urosm",
26-
"coinDecimals":6
27-
}
28-
],
29-
"feeCurrencies":[
30-
{
31-
"coinDenom":"ROSM",
32-
"coinMinimalDenom":"urosm",
33-
"coinDecimals":6
34-
}
35-
],
36-
"gasPriceStep":{
37-
"low":0.05,
38-
"average":0.125,
39-
"high":0.2
40-
},
41-
"features":[
42-
"stargate",
43-
"no-legacy-stdTx",
44-
"ibc-transfer"
45-
]
46-
}
2+
"rpc": "https://rpc.rosm.ev.xyz",
3+
"rest": "https://api.rosm.ev.xyz",
4+
"chainId": "rosm",
5+
"chainName": "Rollkit Cosmwasm Testnet",
6+
"stakeCurrency": {
7+
"coinDenom": "ROSM",
8+
"coinMinimalDenom": "urosm",
9+
"coinDecimals": 6
10+
},
11+
"bech32Config": {
12+
"bech32PrefixAccAddr": "wasm",
13+
"bech32PrefixAccPub": "wasmpub",
14+
"bech32PrefixValAddr": "wasmvaloper",
15+
"bech32PrefixValPub": "wasmvaloperpub",
16+
"bech32PrefixConsAddr": "wasmvalcons",
17+
"bech32PrefixConsPub": "wasmvalconspub"
18+
},
19+
"bip44": {
20+
"coinType": 118
21+
},
22+
"currencies": [
23+
{
24+
"coinDenom": "ROSM",
25+
"coinMinimalDenom": "urosm",
26+
"coinDecimals": 6
27+
}
28+
],
29+
"feeCurrencies": [
30+
{
31+
"coinDenom": "ROSM",
32+
"coinMinimalDenom": "urosm",
33+
"coinDecimals": 6
34+
}
35+
],
36+
"gasPriceStep": {
37+
"low": 0.05,
38+
"average": 0.125,
39+
"high": 0.2
40+
},
41+
"features": ["stargate", "no-legacy-stdTx", "ibc-transfer"]
42+
}

.vitepress/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default withMermaid({
5555
"script",
5656
{
5757
src: "https://plausible.celestia.org/js/plausible.js",
58-
"data-domain": "rollkit.dev",
58+
"data-domain": "ev.xyz",
5959
defer: true,
6060
},
6161
],

learn/specs/block-manager.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,4 +596,4 @@ See [tutorial] for running a multi-node network with both sequencer and non-sequ
596596
[block-sync]: https://github.com/evstack/ev-node/blob/main/pkg/sync/sync_service.go
597597
[full-node]: https://github.com/evstack/ev-node/blob/main/node/full.go
598598
[block-manager]: https://github.com/evstack/ev-node/blob/main/block/manager.go
599-
[tutorial]: https://rollkit.dev/guides/full-node
599+
[tutorial]: https://ev.xyz/guides/full-node

public/install-go.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ fi
1313
# if jq is not installed then install it using the script
1414
if ! command -v jq &> /dev/null; then
1515
echo "jq is not installed. Downloading and executing the script to install jq..."
16-
curl -sSL https://rollkit.dev/install-jq.sh | bash
16+
curl -sSL https://ev.xyz/install-jq.sh | bash
1717
fi
1818

1919
# Define the Go binary path

public/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ echo -e " Required Go version: ${BOLD}${formatted_go_version}${RESET}\n"
6666
print_header "Checking if Go is installed..."
6767
if ! which go > /dev/null; then
6868
print_warning "Go is not installed. Attempting to install Go..."
69-
curl -sL "https://rollkit.dev/install-go.sh" | sh -s "$formatted_go_version"
69+
curl -sL "https://ev.xyz/install-go.sh" | sh -s "$formatted_go_version"
7070
fi
7171

7272
installed_version=$(go version | awk '{print $3}' | sed 's/go//')

0 commit comments

Comments
 (0)