docs: add scan, statescan, stats, treasury, governance subdomains to domains reference

This commit is contained in:
2026-01-08 11:16:37 +03:00
parent d57c314973
commit 0b4d413ee8
4 changed files with 9 additions and 0 deletions
+5
View File
@@ -18,6 +18,11 @@
| rpc | rpc.pezkuwichain.io | RPC endpoint |
| ws | ws.pezkuwichain.io | WebSocket endpoint |
| explorer | explorer.pezkuwichain.io | Block explorer |
| scan | scan.pezkuwichain.io | Blockchain scanner |
| statescan | statescan.pezkuwichain.io | State explorer |
| stats | stats.pezkuwichain.io | Validator stats |
| treasury | treasury.pezkuwichain.io | Treasury dashboard |
| governance | governance.pezkuwichain.io | Governance portal |
| docs | docs.pezkuwichain.io | Documentation |
| wiki | wiki.pezkuwichain.io | Wiki |
| wiki.network | wiki.network.pezkuwichain.io | Network wiki |
+2
View File
@@ -59,6 +59,8 @@ jobs:
timeout-minutes: 60
container:
image: ${{ needs.preflight.outputs.IMAGE }}
env:
SKIP_WASM_BUILD: 1
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4.1.7
+1
View File
@@ -41,6 +41,7 @@ web = [
"web-time",
]
std = [
"native",
"futures-util/std",
"getrandom?/std",
"serde/std",
+1
View File
@@ -12,6 +12,7 @@ mod wasm_platform;
#[cfg(all(feature = "web", not(feature = "native")))]
mod wasm_socket;
#[cfg(any(feature = "native", feature = "web"))]
pub use helpers::{build_platform, DefaultPlatform};
#[cfg(feature = "native")]