Working with Accounts (v8.0.0)
Working with Accounts
Section titled “Working with Accounts”This guide covers how to create, manage, and use Algorand accounts with AlgoKit Utils for TypeScript v8.0.0.
Creating Accounts
Section titled “Creating Accounts”import { AlgorandClient } from '@algorandfoundation/algokit-utils';
const algorand = AlgorandClient.defaultLocalNet();
// Create a random accountconst account = algorand.account.random();Note: This is the v8.0.0 documentation. Some APIs may differ from the latest version.