当前页面已进入跨页知识网络层:不仅展示本页拓扑,还明确它在整站里的分类、被哪些页面引用、又继续指向哪些专题与证据页。
flowchart TD
classDef implemented fill:#dcfce7,stroke:#166534,color:#14532d,stroke-width:2px;
classDef partial fill:#ffedd5,stroke:#9a3412,color:#7c2d12,stroke-width:2px;
classDef planned fill:#dbeafe,stroke:#1d4ed8,color:#1e3a8a,stroke-width:2px,stroke-dasharray: 5 3;
classDef audit fill:#ede9fe,stroke:#6d28d9,color:#4c1d95,stroke-width:2px;
Demand["业务负载 / 交易增长"] --> Shard["pkg/p2p/sharding.go
动态分片 / 一致性哈希"]
Demand --> Parallel["pkg/quantum/parallel_validator.go
并行验证 / 批量处理"]
Demand --> Gas["pkg/vm/cosmwasm_gas_meter.go
WASM / 存储 / API / Crypto 计量"]
Shard --> P2P["p2p.html / p2p_nat.html
广播 / 拓扑 / Relay"]
Parallel --> Chain["blockchain.html
校验 / commit / sync"]
Gas --> Economy["economy.html / emission.html
Gas 分账 / 奖励换算"]
Chain --> Storage["storage.html
Badger / Snapshot / Archive"]
Storage --> NodeOps["nodeops.html
磁盘 / 观测 / 长期运行成本"]
Economy --> UserCost["用户侧成本
Gas / 延迟 / 查询路径"]
NodeOps --> NodeCost["节点侧成本
CPU / 内存 / 带宽 / 存储"]
UserCost --> ScaleVerdict["扩容与成本结论
已具扩容底座与成本构件,但仍缺统一 SLA / TPS 区间 / 全链成本指标"]
NodeCost --> ScaleVerdict
class Demand,Shard,Parallel,Gas,P2P,Chain,Economy,Storage,NodeOps implemented
class UserCost,NodeCost partial
class ScaleVerdict audit