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
17
18
# Auth

Unlike the majority of blockchains which rely on a caller identifier for access control,
the Auth system uses a more distributed "Proof" system. Before accessing a protected
method a caller must provide specific "Proofs" of resources they have access to. These proofs
must then match the requirements of the callee function or method.

The Access Control System is composed of four parts:

1. An [Access Control Blueprint Module]blueprint_module.md,
which defines function rules and roles available to use for a given blueprint in a package and which roles are able
to access which methods.
2. A [Role Assignment Object Module]role_assignment.md,
which assigns access rules for each role on object instantiation.
3. An [AuthZone Blueprint]authzone.md, which allows a caller to update the proofs in their authzone.
4. An [Access Control System Module]system_module.md, which creates a new AuthZone for every
new call frame and verifies that AuthZone proofs match the requirements of accessing an
object's method.