docs.rs failed to build hanzo-vm-1.1.21
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build:
hanzo-vm-1.1.20
Lux VM interface for the Hanzo L2.
This crate implements the VM engine that plugs into a Lux subnet, wrapping EVM execution behind the Snow consensus interface.
Architecture
Lux Consensus
|
HanzoVm (this crate)
|
+-----------+----------+-----------+
| EvmBackend | StateDb | Precompiles |
+-----------+----------+-----------+
|
+------+------+--------+
| Revm | Cevm | GoEvm |
+------+------+--------+
- [
vm::HanzoVm] -- main VM struct implementing [vm::VmEngine]. - [
evm_backend] -- pluggable EVM execution backends (revm, cevm, go-evm). - [
state::StateDb] -- account/storage persistence (SQLite for dev). - [
block::Block] -- block and transaction types. - [
precompiles::PrecompileRegistry] -- custom precompile contracts (PQ signatures, quasar queries, AI inference/embeddings).