@arc76/algorand
v1.6.2026080407
Published
Deterministic ARC76 account derivation for Algorand. https://github.com/algorandfoundation/ARCs/blob/main/ARCs/arc-0076.md
Downloads
393
Maintainers
Readme
@arc76/algorand
Deterministic ARC76 account derivation for Algorand.
Renamed from the
arc76package (v1.x). See the migration guide if you're upgrading.
Usage
npm i @arc76/algorand --saveimport { getAccount, getEmailAccount } from "@arc76/algorand";
const account = await getAccount(password); // slot 0
const account1 = await getAccount(password, 1); // slot 1
const emailAccount = await getEmailAccount(email, password); // slot 0Both functions return an algosdk.Account ({ addr, sk }).
Please use a password of at least 50 characters for real accounts — the account's security is entirely the password's security.
⚠️ Same-curve chains share the literal same keypair.
@arc76/algorandand@arc76/solanaderive the identical Ed25519 keypair from the same password/email/slot — leaking the key on one of those chains leaks it on the other. Use a different password (orslot) per chain if you need isolation.
