├── .github └── workflows │ └── project.yml ├── 00-introduction.md ├── 01-architecture.md ├── 02-state-of-the-art.md ├── 03-impl-notes.md ├── 04-evm-mapping.md ├── 05-use-cases.md ├── 06-scalability-considerations.md ├── 07-errors.md ├── 08-syscalls.md ├── LICENSE-APACHE ├── LICENSE-MIT ├── README.md └── img ├── current-vm-arch.png ├── fvm-domains-boundaries.png ├── fvm-exec-arch.png └── proposed-vm-arch.png /.github/workflows/project.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/.github/workflows/project.yml -------------------------------------------------------------------------------- /00-introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/00-introduction.md -------------------------------------------------------------------------------- /01-architecture.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/01-architecture.md -------------------------------------------------------------------------------- /02-state-of-the-art.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/02-state-of-the-art.md -------------------------------------------------------------------------------- /03-impl-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/03-impl-notes.md -------------------------------------------------------------------------------- /04-evm-mapping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/04-evm-mapping.md -------------------------------------------------------------------------------- /05-use-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/05-use-cases.md -------------------------------------------------------------------------------- /06-scalability-considerations.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /07-errors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/07-errors.md -------------------------------------------------------------------------------- /08-syscalls.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/08-syscalls.md -------------------------------------------------------------------------------- /LICENSE-APACHE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/LICENSE-APACHE -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/README.md -------------------------------------------------------------------------------- /img/current-vm-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/img/current-vm-arch.png -------------------------------------------------------------------------------- /img/fvm-domains-boundaries.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/img/fvm-domains-boundaries.png -------------------------------------------------------------------------------- /img/fvm-exec-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/img/fvm-exec-arch.png -------------------------------------------------------------------------------- /img/proposed-vm-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/filecoin-project/fvm-specs/HEAD/img/proposed-vm-arch.png --------------------------------------------------------------------------------