Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
"build": "./scripts/build.sh",
"export": "echo deprecated",
"build2": "./scripts/build.sh",
"next-build": "next build",
"start": "next start",
"serve": "serve out"
},
Expand Down
130 changes: 0 additions & 130 deletions pages/zh/chain/[chain].js

This file was deleted.

82 changes: 0 additions & 82 deletions pages/zh/index.js

This file was deleted.

2 changes: 1 addition & 1 deletion scripts/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ if [ -n "$ONLY_LIST_FILE" ]; then
exit 0
fi

next build 2>&1 | tee build.log
yarn next-build 2>&1 | tee build.log
BUILD_STATUS=${PIPESTATUS[0]}

BUILD_TIME_SEC=$(($(date -u +"%s") - $START_TIME_TS))
Expand Down
1 change: 0 additions & 1 deletion utils/fetch.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import allExtraRpcs from "../constants/extraRpcs.js";
import chainIds from "../constants/chainIds.js";
import fetch from "node-fetch";
import { overwrittenChains } from "../constants/additionalChainRegistry/list.js";

export const fetcher = (...args) => fetch(...args).then((res) => res.json());
Expand Down
Loading