Skip to main content

Accounts

An Aleo account is composed of an account private key, account view key, and an account address.

The account private key is used to authorize a transaction, which updates the global state of account records. The account view key is used to decrypt account records, which are encrypted under the user's account address. Lastly, the account address enables users to interact with one another, sending and receiving records that encode values and application data.

To protect user assets and record data, one should never disclose their account private key to any third parties. For real-world applications on Aleo, users should derive a compute key from their account private key to allow third parties to trustlessly run applications and generate transactions on a user's behalf.

Generate a new Aleo account here.

Account Private Key

An account private key is constructed from a randomly-sampled account seed. This account seed is used to generate:

  • a secret key for the account signature scheme,
  • a pseudorandom function seed for transaction serial numbers, and
  • a commitment randomness for the account commitment scheme.

Private Key Format

APrivateKey1zkp4X9ApjTb7Rv8EABfZRugXBhbPzCL245GyNtYJP5GYY2k

An account private key is formatted as a Base58 string, comprised of 59 characters. The account private key is encoded with a private key prefix that reads APrivateKey1, indicating that it is a private key and should not be shared with other users.

Account View Key

An Aleo account view key is derived from an account private key and enables users to decrypt their records from the global ledger. As account view keys are able to access every record in a user's account, this key can be used by third-party auditors to verify the complete history of an account.

The account view key is comprised of:

  • a secret key for the account encryption scheme.

View Key Format

AViewKey1nKB4qr9b5gK8wQvmM5sTPEuBwshtDdkCZB1SPWppAG9Y

An account view key is formatted as a Base58 string, comprised of 53 characters. The account view key is encoded with a view key prefix that reads AViewKey1, indicating that it is a view key and should only be shared with authorized parties.

Account Address

An Aleo account address is a unique identifier that allows users to transfer value and record data to one another in transactions.

The account address is comprised of:

  • a public key for the account encryption scheme.

Address Format

aleo1dg722m22fzpz6xjdrvl9tzu5t68zmypj5p74khlqcac0gvednygqxaax0j

An account address is formatted as a Bech32 string, comprised of 63 characters. The account address is encoded with an address prefix that reads aleo1.

Advanced Topics

Account Prefixes

TypeHuman-Readable PrefixPrefix Bytes
Account Private KeybytesAPrivateKey1[ 127, 134, 189, 116, 210, 221, 210, 137, 144 ]
Account View KeybytesAViewKey1[ 14, 138, 223, 204, 247, 224, 122 ]
Account Addressstringaleo1aleo1

Offline Accounts

In many instances such as enterprise settings, it is advisable to handle sensitive keys and data on isolated, offline machines. An Aleo account can be created on an offline machine and available for immediate use. In conjunction with account proving keys, a user can ensure their private key remains offline even for creating transactions.

While no solution is perfect, it is advisable to create a new Aleo account on a disconnected device to minimize the risk of leaking one's account private key to unintended parties.

Account Commitment Outputs

The account commitment output is used to create an account view key, which is comprised of an encryption secret key. This encryption secret key is a scalar field element derived from the account commitment output. To ensure the validity of the account view key, the account commitment output should be representable in the scalar field.

Create an Account

Given global instantiated Aleo parameters and subroutines.

Generate a Private Key

  1. Sample a 32 byte seed from random

  2. Construct private key components

    • sk_sig = BLAKE2s(seed | 0)
    • sk_prf = BLAKE2s(seed | 1)
    • r_pk = BLAKE2s(seed | counter)

    where | denotes concatenation, and where BLAKE2s denotes unkeyed BLAKE2s-256, as defined in RFC 7693.

3.private_key = (seed, sk_sig, sk_prf, r_pk)

The 0 and 1 used to calculate sk_sig and sk_prf are each encoded as an unsigned 16-bit integer and turned into two bytes in little endian order before being concatenated to the right of the seed, then the resulting byte sequence is passed to BLAKE2s. The counter used to calculate r_pk is an unsigned 16-bit integer that is turned into two bytes in little endian order before being concatenated to the right of the seed, then the resulting byte sequence is passed to BLAKE2s; the counter is iterated on, starting from 2, until a valid view_key (see below) can be derived from the private key.

Learn more about BLAKE2s here.

Generate a View Key

  1. Construct pk_sig = AccountSignature.GeneratePublicKey(ppaccount_sig, sk_sig)

  2. view_key = AccountCommitment.Commit(ppaccount_cm, (pk_sig, sk_prf), r_pk)

Generate an Address

  1. address = AccountEncryption.GeneratePublicKey(ppaccount_enc, view_key)

Account Diagram

graph TD
A["Seed (32 Bytes)"]
A --> |"BLAKE2s(Seed, 0)" | B(sk_sig)
A --> |"BLAKE2s(Seed, 1)" | C(sk_prf)
A --> |"BLAKE2s(Seed, counter)" | D(r_pk)

B --> E(Account Private Key)
C --> E(Account Private Key)
D --> E(Account Private Key)

E --> F(Account View Key)
F --> G(Account Address)