Skip to content

AlgoKit Utils

A set of utilities that make it easier to build solutions on Algorand, available in both TypeScript and Python.

Terminal window
npm install @algorandfoundation/algokit-utils
import { AlgorandClient } from '@algorandfoundation/algokit-utils';
const algorand = AlgorandClient.defaultLocalNet();
Terminal window
pip install algokit-utils
from algokit_utils import AlgorandClient
algorand = AlgorandClient.default_local_net()

See the Quick Start guide to get started.