radix-engine 1.3.1

Reference implementation of Radix Engine, from the Radix DLT project.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# Architecture

Radix Engine is organized into 5 layers. Each layer has specific responsibilities and
provides an API to the layer above. Middle layers also provide a Callback API which the
layer above must implement.

| Layer Name                           | Responsibilities                                                                                                                                                  |
|--------------------------------------|-------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [Application]application/README.md | Defines Blueprint Application Logic                                                                                                                               |
| [VM]vm/README.md                   | Executes Application Code                                                                                                                                         |
| [System]system/README.md           | Defines Actor abstraction (Memory Protection)<br>Defines Package, Blueprint, Object abstractions<br>Defines System Standards such as Authorization and Versioning |
| [Kernel]kernel/README.md           | Defines Node, Partition, Substate abstractions<br>Maintains Call Frame Stack<br>Maintains Ownership/Reference invariants                                          |
| [Database]database/README.md       | Defines PartitionKey, SortKey abstractions                                                                                                                        |