Skip to content
This repository was archived by the owner on Jan 9, 2026. It is now read-only.
Merged
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
2 changes: 1 addition & 1 deletion .env.example.kadena
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ NEXT_PUBLIC_APP_PORT=${PROXY_UI_PORT}
NEXT_PUBLIC_API_PORT=${PROXY_UI_PORT}
BACKEND_HOST=${EXPLORER_MAIN_URL}:${NEXT_PUBLIC_API_PORT}
NEXT_PUBLIC_STATS_API_HOST=http://${BACKEND_HOST}
NEXT_PUBLIC_STATS_API_BASE_PATH=/stats
NEXT_PUBLIC_STATS_API_BASE_PATH=/stats-service
NEXT_PUBLIC_VISUALIZE_API_HOST=http://${BACKEND_HOST}
NEXT_PUBLIC_VISUALIZE_API_BASE_PATH=/visualizer
NEXT_PUBLIC_API_HOST=${EXPLORER_MAIN_URL}
Expand Down
4 changes: 2 additions & 2 deletions nextjs/rewrites.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ const proxyToTestnet = (cid) => [
destination: `https://chain-${ cid }.evm-testnet-blockscout.chainweb.com/socket/:path*`,
},
{
source: '/stats/:path*',
destination: `https://chain-${ cid }.evm-testnet-blockscout.chainweb.com/stats/:path*`,
source: '/stats-service/:path*',
destination: `https://chain-${ cid }.evm-testnet-blockscout.chainweb.com/stats-service/:path*`,
},
{
source: '/visualizer/:path*',
Expand Down
Loading