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 Python.
Creating Accounts
Section titled “Creating Accounts”from algokit_utils import AlgorandClient
algorand = AlgorandClient.default_local_net()
# Create a random accountaccount = algorand.account.random()
# Create from mnemonicfrom_mnemonic = algorand.account.from_mnemonic("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