Accounts

Define a customer wallet state

The account contains complete information about a user's private wallet. It is linked by the intermediate key η\eta derived from the spending key σ\sigmaowned by the user. The holder of the spending key is called an account owner.

The account holds the current balance value and spent offset which separates all notes into spent and unspent. This is sufficient data to retrieve a wallet state.

An account is a tuple (d,Pd,i,b,e)(d, P_d, i, b, e) where:

  • dd (10 bytes) is a random diversifier which is updated every time an account is updated. It acts like a salt.

  • PdP_d (32 bytes) is diversified public key (a value derived from the dd and intermediate key η\eta): Pd=ηToSubGroupHashE(Fr)(d)P_d = \eta * \text{ToSubGroupHash}_{E(F_r)}(d)

  • ii(6 bytes) is the spent offset. It separates used (spent) and unused notes in the Merkle tree . Note that indexes below ii are considered to be spent.

  • bb(8 bytes) is the current account balance

  • ee(8 bytes) is an energy(XP) unit ("integral" account balance)

The raw account size is 64 bytes.

Account transaction data never appears unencrypted in a public field. Only the account owner can decrypt it.

Last updated

Was this helpful?