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
15
16
# Object Model

Unlike Ethereum where the ledger state is a flat mapping between addresses and account states, Radix
Engine organizes its state into a forest of *objects*. Child objects are exclusively owned by its
parent in the tree hierarchy. Each root object is assigned a *global address*.

![](object_model.drawio.svg)

Each object has:
* Static Type Information which includes:
  * A [BlueprintId]blueprint_id.md
  * An optional [Outer Object]inner_outer_objects.md
  * A list of [Features]features.md
  * A list of [Generic Substitutions]generic_substitutions.md
* Application State
* A set of [Object Modules]object_modules.md