The AlgoKit LocalNet feature allows you to manage (start, stop, reset, manage) a locally sandboxed private Algorand network. This allows you to interact and deploy changes against your own Algorand network without needing to worry about funding TestNet accounts, information you submit being publicly visible or being connected to an active Internet connection (once the network has been started).
AlgoKit LocalNet uses Docker images that are optimised for a great dev experience. This means the Docker images are small and start fast. It also means that features suited to developers are enabled such as KMD (so you can programmatically get faucet private keys).
The philosophy we take with AlgoKit LocalNet is that you should treat it as an ephemeral network. This means assume it could be reset at any time - don't store data on there that you can't recover / recreate. We have optimised the AlgoKit LocalNet experience to minimise situations where the network will get reset to improve the experience, but it can and will still happen in a number of situations.
For details on executing
algokit localnet
withoutdocker
orpodman
refer to the codespaces section.
AlgoKit LocalNet relies on Docker and Docker Compose being present and running on your system. Alternatively, you can use Podman as a replacement for Docker see Podman support.
You can install Docker by following the official installation instructions. Most of the time this will also install Docker Compose, but if not you can follow the instructions for that too.
If you are on Windows then you will need WSL 2 installed first, for which you can find the official installation instructions. If you are using Windows 10 then ensure you are on the latest version to reduce likelihood of installation problems.
Alternatively, the Windows 10/11 Pro+ supported Hyper-V backend for Docker can be used instead of the WSL 2 backend.
If you prefer to use Podman as your container engine, make sure to install and configure Podman first. Then you can set the default container engine that AlgoKit will use, by running: algokit config container-engine podman
. See Container-based LocalNet for more details.
The AlgoKit LocalNet is built with 30,000 participation keys generated and after 30,000 rounds is reached it will no longer be able to add rounds. At this point you can simply reset the LocalNet to continue development. Participation keys are slow to generate hence why they are pre-generated to improve experience.
We rely on the official Algorand docker images for Indexer, Conduit and Algod, which means that AlgoKit LocalNet is supported on Windows, Linux and Mac on Intel and AMD chipsets (including Apple Silicon).
AlgoKit cli supports both Docker and Podman as container engines. While docker
is used by default, executing the below:
algokit config container-engine
# or
algokit config container-engine podman|docker
Will set the default container engine to use when executing localnet
related commands via subprocess
.
To create / start your AlgoKit LocalNet instance you can run algokit localnet start
. This will:
- Detect if you have Docker and Docker Compose installed
- Detect if you have the Docker engine running
- Create a new Docker Compose deployment for AlgoKit LocalNet if it doesn't already exist
- (Re-)Start the containers
You can also specify additional options:
--name
: Specify a name for a custom LocalNet instance. This allows you to have multiple LocalNet configurations. Refer to Named LocalNet Configuration Directory for more details.--config-dir
: Specify a custom configuration directory for the LocalNet.--dev/--no-dev
: Control whether to launch 'algod' in developer mode or not. Defaults to 'yes' (developer mode enabled).
If it's the first time running it on your machine then it will download the following images from DockerHub:
algorand/algod
(~500 MB)algorand/indexer
(~96 MB)algorand/conduit
(~98 MB)postgres:13-alpine
(~80 MB)
Once they have downloaded, it won't try and re-download images unless you perform a algokit localnet reset
.
Once the LocalNet has started, the following endpoints will be available:
- algod:
- address: http://localhost:4001
- token:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
- kmd:
- address: http://localhost:4002
- token:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
- indexer:
- address: http://localhost:8980
- tealdbg port:
- address: http://localhost:9392
AlgoKit manages the default LocalNet environment and automatically keeps the configuration updated with any upstream changes. As a result, configuration changes are reset automatically by AlgoKit, so that developers always have access to a known good LocalNet configuration. This works well for the majority of scenarios, however sometimes developers need the control to make specific configuration changes for specific scenarios.
When you want more control, named LocalNet instances can be used by running algokit localnet start --name {name}
. This command will set up and run a named LocalNet environment (based off the default), however AlgoKit will not update the environment or configuration automatically. From here developers are able to modify their named environment in any way they like, for example setting DevMode: false
in algod_network_template.json
.
Once you have a named LocalNet running, the AlgoKit LocalNet commands will target this instance.
If at any point you'd like to switch back to the default LocalNet, simply run algokit localnet start
.
You can specify a custom LocalNet configuration directory by using the --config-dir
option or by setting the ALGOKIT_LOCALNET_CONFIG_DIR
environment variable. This allows you to have multiple LocalNet instances with different configurations in different directories, which is useful in 'CI/CD' scenarios where you can save your custom localnet in your version control and then run algokit localnet start --config-dir /path/to/custom/config
to use it within your pipeline.
For example, to create a LocalNet instance with a custom configuration directory, you can run:
algokit localnet start --config-dir /path/to/custom/config
When running algokit localnet start --name {name}
, AlgoKit stores configuration files in a specific directory on your system. The location of this directory depends on your operating system:
- Windows: We use the value of the
APPDATA
environment variable to determine the directory to store the configuration files. This is usuallyC:\Users\USERNAME\AppData\Roaming
. - Linux or Mac: We use the value of the
XDG_CONFIG_HOME
environment variable to determine the directory to store the configuration files. IfXDG_CONFIG_HOME
is not set, the default location is~/.config
.
Assuming you have previously used a default LocalNet, the path ./algokit/sandbox/
will exist inside the configuration directory, containing the configuration settings for the default LocalNet instance. Additionally, for each named LocalNet instance you have created, the path ./algokit/sandbox_{name}/
will exist, containing the configuration settings for the respective named LocalNet instances.
It is important to note that only the configuration files for a named LocalNet instance should be changed. Any changes made to the default LocalNet instance will be reverted by AlgoKit.
You can use --name
flag along with --config-dir
option to specify a custom path for the LocalNet configuration directory. This allows you to manage multiple LocalNet instances with different configurations in different directories on your system.
By default, AlgoKit LocalNet starts algod in developer mode. This mode enables certain features that are useful for development but may not reflect the behavior of a production network. You can control this setting using the --dev/--no-dev
flag when starting the LocalNet:
algokit localnet start --no-dev # Starts algod without developer mode
algokit localnet start --dev # Starts algod with developer mode (default)
If you change this setting for an existing LocalNet instance, AlgoKit will prompt you to restart the LocalNet to apply the changes.
To stop the LocalNet you can execute algokit localnet stop
. This will turn off the containers, but keep them ready to be started again in the same state by executing algokit localnet start
.
To reset the LocalNet you can execute algokit localnet reset
, which will tear down the existing containers, refresh the container definition from the latest stored within AlgoKit and update to the latest Docker images. If you want to keep the same container spec and versions as you currently have, but quickly tear down and start a new instance then run algokit localnet reset --no-update
.
You can see a web-based user interface of the current state of your LocalNet including all transactions by using the AlgoKit Explore feature, e.g. by executing algokit localnet explore
.
See the AlgoKit Goal feature. You can also execute algokit localnet console
to open a Bash shell which allows you to run the goal commandline.
Note: if you want to copy files into the container so you can access them via goal then you can use the following:
docker cp foo.txt algokit_algod:/root
If you want to use the LocalNet then you need to get the private key of the initial wallet so you can transfer ALGOs out of it to other accounts you create.
There are two ways to do this:
Option 1: Manually via goal
algokit goal account list
algokit goal account export -a {address_from_an_online_account_from_above_command_output}
Option 2: Automatically via kmd API
Needing to do this manual step every time you spin up a new development environment or reset your LocalNet is frustrating. Instead, it's useful to have code that uses the Sandbox APIs to automatically retrieve the private key of the default account.
AlgoKit Utils provides methods to help you do this:
- TypeScript -
ensureFunded
andgetDispenserAccount
- Python -
ensure_funded
andget_dispenser_account
For more details about the AlgoKit localnet
command, please refer to the AlgoKit CLI reference documentation.
The AlgoKit LocalNet feature also supports running the LocalNet in a GitHub Codespace with port forwarding by utilizing the GitHub CLI. This allows you to run the LocalNet without the need to use Docker. This is especially useful for scenarios where certain hardware or software limitations may prevent you from being able to run Docker.
To run the LocalNet in a GitHub Codespace, you can use the algokit localnet codespace
command.
By default without --force
flag it will prompt you to delete stale codespaces created earlier (if any). Upon termination it will also prompt to delete the codespace that was used prior to termination.
Running an interactive session ensures that you have control over the lifecycle of your Codespace, preventing unnecessary usage and potential costs. GitHub Codespaces offers a free tier with certain limits, which you can review in the GitHub Codespaces documentation.
-m
,--machine
: Specifies the GitHub Codespace machine type to use. Defaults tobasicLinux32gb
. Available options arebasicLinux32gb
,standardLinux32gb
,premiumLinux
, andlargePremiumLinux
. Refer to GitHub Codespaces documentation for more details.-a
,--algod-port
: Sets the port for the Algorand daemon. Defaults to4001
.-i
,--indexer-port
: Sets the port for the Algorand indexer. Defaults to8980
.-k
,--kmd-port
: Sets the port for the Algorand kmd. Defaults to4002
.-n
,--codespace-name
: Specifies the name of the codespace. Defaults to a random name with a timestamp.-t
,--timeout
: Max duration for running the port forwarding process. Defaults to 1 hour. This timeout ensures the codespace will automatically shut down after the specified duration to prevent accidental overspending of free quota on GitHub Codespaces. More details.-r
,--repo-url
: The URL of the repository to use. Defaults to the AlgoKit base template repository (algorandfoundation/algokit-base-template
). The reason why algokit-base-template is used by default is due to .devcontainer.json which defines the scripts that take care of setting up AlgoKit CLI during container start. You can use any custom repo as a base, however it's important to ensure the reference .devcontainer.json file exists in your repository otherwise there will be no ports to forward from the codespace.--force
,-f
: Force deletes stale codespaces and skips confirmation prompts. Defaults to explicitly prompting for confirmation.
For more details about managing LocalNet in GitHub Codespaces, please refer to the AlgoKit CLI reference documentation.
Tip: By specifying alternative port values it is possible to have several LocalNet instances running where one is using default ports via
algokit localnet start
with Docker | Podman and the other relies on port forwarding viaalgokit localnet codespace
.