6 releases

0.6.3 Aug 17, 2023
0.6.3-rc.1 Aug 3, 2023
0.6.2 Mar 9, 2023
0.6.1 Jun 30, 2022
0.1.0 Aug 8, 2020

#5 in Magic Beans

Download history 39/week @ 2024-02-16 33/week @ 2024-02-23 18/week @ 2024-03-01 10/week @ 2024-03-08 23/week @ 2024-03-15 9/week @ 2024-03-22 31/week @ 2024-03-29 23/week @ 2024-04-05 4/week @ 2024-04-12

71 downloads per month
Used in iota-identity

Apache-2.0

1MB
20K SLoC

IOTA Identity - Account

The Account is an interface for creating and managing identities on the IOTA Tangle, handling publishing and secure storage automatically. It provides convenience functions for:

  • Creating and publishing a new IOTA DID.
  • Updating DID Document contents:
    • Verification Methods.
    • Verification Relationships.
    • Services.
  • Managing private cryptographic keys securely.
  • Signing credentials.
  • Encrypting messages.

Account Creation

Creating an Account is done through the AccountBuilder.

let account: Account = Account::builder()
  .create_identity(IdentitySetup::default())
  .await?;

Update Operations

Updating a DID Document can be performed through the update_identity function on the Account. For example, adding a new verification method to the DID Document:

account
  .update_identity()
  .create_method()
  .content(MethodContent::GenerateEd25519)
  .fragment("my-next-key")
  .apply()
  .await?;

The above code generates a new Ed25519 keypair, writes it to Storage, embeds it in a new verification method, and publishes the updated DID Document to the Tangle.

See the IdentityUpdater for a list of provided update operations.

Dependencies

~21–60MB
~1M SLoC