Authentication Chain
Many actions in the Decentraland protocol either require or benefit from authorization with a signature from the user’s Ethereum account. For example:
- Upload a new version of any Entity they own (such as their profile).
- Authenticate themselves to 3rd-party services.
- Authorize delegates to act on their behalf.
To perform these actions, users and delegates must sign payloads describing their intent and produce an authentication chain.
Introduction #
Authentication chains encapsulate a series of verification steps, with each step depending on the succcessful verification of the previous one. All steps must be deemed valid by the verifier for any restricted action to take place.
Every chain begins by identifying the user, and ends with a signed payload representing the requested action. The smallest chain thus contains two elements, which indicate:
1. The authority is the Ethereum account <user-address>
2. The payload is <payload>, authorized by <user-signature>
This basic chain can be evaluated by verifying that the signature’s public key corresponds to the address. In this case, it’s equivalent to a plain signature.
When users authorize delegates to act on their behalf, intermediate steps appear in the chain. For example, a chain with a single delegation would indicate:
1. The authority is the Ethereum account <user-address>
2. The delegate is <delegate-address>, authorized by <user-signature> until <date>
3. The payload is <payload>, authorized by <delegate-signature>
Chains are longer when delegates authorize their own delegates. In other words, authorization is transitive.
This single-delegate chain is the most common form of authorization used in Decentraland, since users authorize a key for their World Explorer to avoid having to sign every individual action with their Ethereum account.
Constructing a Chain #
Each step in the authentication chain contains three pieces of information: a type
, a payload
and a corresponding signature
.
Field | Value |
---|---|
type |
The name of a type (see below). |
payload |
A type-dependent string. |
signature |
The hex-encoded Ethereum signature of payload , beginning with 0x . |
First Step: Identification #
The first step, which identifies the original authority (i.e the user), must meet these conditions:
- The
type
isSIGNER
- The
payload
is the encoded Ethereum account. - The
signature
is empty.
For example:
// First step in any authentication chain:
{
"type": "SIGNER",
"payload": "0xdB055877e6c13b6A6B25aBcAA29B393777dD0a73",
"signature": ""
}
The second step must carry a signature
from this account for its payload
.
Intermediate Steps: Delegation #
When delegates are acting on the user’s behalf, an item is added to the middle of the chain for each of them. The conditions for these steps are:
- The type is
ECDSA_EPHEMERAL
- The
payload
is a specially crafted text (see below).
The payload
is designed to be easy to read and easy to parse, since both humans (when using their wallet UI) and programs (when crafting and validating) must work with it. It contains exactly 3 lines of case-sensitive plain text:
<purpose>
Ephemeral address: <delegate-address>
Expiration: <date>
For example, this is a typical payload used by World Explorers during login, when they generate their temporary delegate key for the user to approve:
Decentraland Login
Ephemeral address: 0xBB9aDF0183b1742196A4Aa55622D5838f4f483a7
Expiration: 2023-02-25T13:00:19.730Z
Note that:
-
The
Ephemeral address
doesn’t need to be an actual Ethereum account with funds in the blockchain. The field may only represent a temporary public key. -
The
Expiration
is a serialized datetime in ISO-8601 form. It doesn’t need to be UTC. -
The delegate key must be periodically renewed with a fresh signature from the user, due to this expiration date.
An example delegation step (values abbreviated for clarity):
{
"type": "ECDSA_EPHEMERAL",
"payload": "Decentraland Login\nEphemeral address: 0xBBa7...\nExpiration: 2021-01-25T...",
"signature": "0x1370a4120a7cb0d2f6e4a5..."
}
The next step, whether it’s another delegation or the final authorization, carries a signature from this delegate’s key.
Last Step: Authorization #
After the SIGNER
has been specified and all ECDSA_EPHEMERAL
delegate keys were validated by verifying the chain of intermediate signatures, the final step is the actual action that needs to be authorized.
The payload
is dependent on the type
of the step. For example, if a user is uploading a new profile (or any entity they own) to a content server, the last element will have this form:
{
// The type indicates that `payload` is an entity ID (details in the Content section):
"type": "ECDSA_SIGNED_ENTITY",
// The payload is the raw ID string:
"payload": "bafkreicfbg7ybpuoslkcf6x2vfnvzl5vwgqtb2pnheqiut2i4sgpblicqi",
// The signature is produced by the account in the previous step (user or delegate):
"signature": "0x7e71dbbab..."
}
If this last signature is also valid, the action can proceed.
Transmitting a Chain #
As mentioned above, the most common serialization of an authentication chain is a JSON array. This is the recommended approach.
However, the protocol does not impose this. Developers are allowed to use an alternative serialization strategy if it’s more convenient for a particular use-case, such as YAML, CSV files, optimized binary formats or simple strings with delimited fields.
An example of alternative serialization from within the protocol itself can be found in the SignedFetch
module, which uses a sequence of HTTP headers instead of a JSON array.
Choosing an Expiration Date #
When selecting the valid duration for a delegate key, there’s a tradeoff: shorter expirations increase security, but longer expirations improve user experience (since delegates have to be renewed with human interaction at a lower frequency).
There is no universal strategy to decide what the valid time window should be. The Foundation’s World Explorer, for reference, requests authorization for its delegate key for one month.
Formalization #
What follows is a more formal and precise definition of the processes involved. Follow these instructions to successfully handle authentication chains.
Creation #
Clients crafting an authentication chain for the user follow these steps:
-
Add the identification step:
- Set the
type
toSIGNER
. - Set the
payload
to the user’s Ethereum address. - Set the
signature
to an empty string.
- Set the
-
Add delegations steps:
- Generate or use an existing delegate private key (may require interaction).
- Calculate the delegate Etherum address derived from the corresponding public key.
- Set the
type
toECDSA_EPHEMERAL
. - Set the
expiration
to a date in the future. - Choose a
purpose
for this key. - Set the
payload
to this exact form:<purpose> Ephemeral address: <delegate-address> Expiration: <date>
- Set the
signature
field to thepayload
signature from the previous key (user or delegate). - Repeat for all successive delegates.
-
Add the action authorization step:
- Set the
type
to a valid value (see below) - Set the
payload
to the type-specific value (such as the entity ID). - Set the
signature
field to thepayload
signature from the previous key (user or delegate).
- Set the
-
Send the authentication chain to the verifier.
Verification #
Content servers and 3rd-party services implementing verification follow these steps:
-
Verify identification:
- Verify the
type
isSIGNER
. - Verify the
payload
is the Ethereum address of the user. - Verify the
signature
is an empty string.
- Verify the
-
Verify delegates:
- Verify the
type
isECDSA_EPHEMERAL
. - Verify the
payload
is in this form and extract the fields:<purpose> Ephemeral address: <delegate-address> Expiration: <date>
- Verify the
date
is still in the future. - Verify the
purpose
is supported by your service. - Verify the
signature
is valid for the givenpayload
and the previous public key. - Repeat for all successive delegates.
- Verify the
-
Verify action authorization:
- Verify the
type
is a valid value (see below). - Verify the
payload
is valid for thistype
. - Verify the
signature
is valid for the givenpayload
and the previous public key.
- Verify the
-
Accept the authentication chain.
Standard Action Types and Purposes #
The type
and payload
values for identification and delegation are standard and must be verified as laid out above, but clients and services can agree on any action type
, and its payload
structure, as well as set a purpose
for their delegate keys that they consider valid.
The protocol defines three standard types, and one standard purpose:
Type SIGNER
#
Must be the initial type
in the chain, where payload
is the user’s Ethereum address and signature
is an empty string.
Type ECDSA_EPHEMERAL
#
Must be the type
for intermediate steps in the chain, where payload
is in the form described above.
Type ECDSA_SIGNED_ENTITY
#
The final type
in the chain for authorizing entity deployments, where payload
is the ID of an entity owned by the user.
Purpose Decentraland Login
#
The usual purpose
for World Explorers, signed both when logging into the world and when renewing their delegate key.