Working with Accounts
Working with Accounts
Section titled “Working with Accounts”This guide covers how to create, manage, and use Algorand accounts with AlgoKit Utils for TypeScript.
Creating Accounts
Section titled “Creating Accounts”import { AlgorandClient } from '@algorandfoundation/algokit-utils';
const algorand = AlgorandClient.defaultLocalNet();
// Create a random accountconst account = algorand.account.random();
// Create from mnemonicconst fromMnemonic = algorand.account.fromMnemonic('your 25 word mnemonic...');Account Types
Section titled “Account Types”AlgoKit Utils supports several account types:
- Random accounts
- Mnemonic-based accounts
- Rekeyed accounts
- Multisig accounts