Quick Start
Quick Start
Section titled “Quick Start”This guide walks you through creating your first Algorand transaction using AlgoKit Utils.
import { AlgorandClient } from '@algorandfoundation/algokit-utils';
const algorand = AlgorandClient.defaultLocalNet();Create an Account
Section titled “Create an Account”const account = await algorand.account.random();Fund the Account
Section titled “Fund the Account”await algorand.account.ensureFunded(account, algorand.account.localNetDispenser(), (1).algo());