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
# Actor

An actor is the acting entity currently executing and determines what state can be directly read.

There are five types of actors:

| Actor Name    | Description                                                                                           |
|---------------|-------------------------------------------------------------------------------------------------------|
| Root          | The initial application of all transactions.                                                          |
| Method        | A call on an object. Has direct access to state of the running object.                                |
| Function      | A stateless function call. Has no direct access to any state.                                         |
| Method Hook   | A callback call on an object defined by the system. Has direct access to state of the running object. |
| Function Hook | A callback stateless function call defined by the system. Has no direct access to any state.          |