This is a fast way to create and configure an Algorand development environment with Algod and Indexer.
Docker Compose MUST be installed. Instructions.
On a Windows machine, Docker Desktop comes with the necessary tools. Please see the Windows section in getting started for more details.
Warning: Algorand Sandbox is not meant for production environments and should not be used to store secure Algorand keys. Updates may reset all the data and keys that are stored.
Use the sandbox command to interact with the Algorand Sandbox.
sandbox commands:
up [config] -> start the sandbox environment.
down -> tear down the sandbox environment.
reset -> reset the containers to their initial state.
clean -> stops and deletes containers and data directory.
test -> runs some tests to demonstrate usage.
enter [algod||conduit||indexer||indexer-db]
-> enter the sandbox container.
dump [algod||conduit||indexer||indexer-db]
-> dump log information for a container.
tail [algod||conduit||indexer||indexer-db]
-> tail log information for a container.
version -> print binary versions.
copyTo <file> -> copy <file> into the algod. Useful for offline transactions, offline LogicSigs & TEAL work.
copyFrom <file> -> copy <file> from the algod. Useful for offline transactions, offline LogicSigs & TEAL work.
algorand commands:
logs -> stream algorand logs with the carpenter utility.
status -> get node status.
goal (args) -> run goal command like 'goal node status'.
tealdbg (args) -> run tealdbg command to debug program execution.
special flags for 'up' command:
-v|--verbose -> display verbose output when starting standbox.
-s|--skip-fast-catchup -> skip catchup when connecting to real network.
-i|--interactive -> start docker compose in interactive mode.
Sandbox creates the following API endpoints:
algod
:- address:
http://localhost:4001
- token:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
- address:
kmd
:- address:
http://localhost:4002
- token:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
- address:
indexer
:- address:
http://localhost:8980
- address:
algod (follower)
:- address:
http://localhost:3999
- token:
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
- address:
conduit
:- address:
http://localhost:3998/metrics
- address:
Make sure the docker daemon is running and docker-compose is installed.
Open a terminal and run:
git clone https://github.com/algorand/sandbox.git
In whatever local directory the sandbox should reside. Then:
cd sandbox
./sandbox up
This will run the sandbox
shell script with the default configuration. See the Basic Configuration for other options.
Note for Ubuntu: You may need to alias docker
to sudo docker
or follow the steps in https://docs.docker.com/install/linux/linux-postinstall so that a non-root user can use the command docker
.
Run the test command for examples of how to interact with the environment:
./sandbox test
Note: Be sure to use the latest version of Windows 10. Older versions may not work properly.
Note: While installing the following programs, several restarts may be required for windows to recognize the new software correctly.
The installation instructions for Docker Desktop contain some of this but are repeated here.
- In order to work with Docker Desktop on windows, a prerequisite is WSL2 and install instructions are available here.
- Install Docker Desktop using the instructions available here.
- We recommend using the official Windows Terminal, available in the app store here.
- Install whatever distribution of Linux desired.
- Open the Windows Terminal with the distribution installed in the previous step and follow the instruction for Ubuntu and macOS above.
Tip: If you are using VSCode, do not forget to use the WSL2 terminal inside VSCode too. You may follow this Microsoft tutorial.
This option is not fully tested and may cause issues. It is recommended to use WSL 2.
- Install Git for Windows: https://gitforwindows.org/
- Install and launch Docker for Windows: https://docs.docker.com/get-docker
- Open "Git Bash" and follow the instruction for Ubuntu and macOS above, in the "Git Bash" terminal.
-
If you see
the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty'.
check that you are using the latest versions of: Docker, Git for Windows, and Windows 10.
If this does not solve the issue, open an issue with all the versions with all the software used, as well as all the commands typed.
-
If you see
Error response from daemon: open \\.\pipe\docker_engine_linux: The system cannot find the file specified.
check that Docker is running.
Sandbox supports two primary modes of operation. By default, a private network will be created, which is only available from the local environment. There are also configurations available for the public networks which will attempt to connect to one of the long running Algorand networks and allow interaction with it.
To specify which configuration to run:
./sandbox up $CONFIG
Where $CONFIG
is specified as one of the configurations in the sandbox directory.
For example to run a dev
mode network, run:
./sandbox up dev
To switch the configuration:
./sandbox down
./sandbox clean
./sandbox up $NEW_CONFIG
If no configuration is specified the sandbox will be started with the release
configuration which is a private network. The other private network configurations are those not suffixed with net
. Namely these are beta
, dev
and nightly
.
The private network environment creates and funds a number of accounts in the algod containers local kmd
ready to use for testing transactions. These accounts can be reviewed using ./sandbox goal account list
.
Private networks also include an Indexer
API service configured to synchronize against the private network. Because it doesn't require catching up to one of the long running networks it also starts very quickly.
The dev
configuration starts a private network using the latest release with these algod configuration customizations:
"DevMode": true
- In dev mode, every transaction being sent to the node automatically generates a new block, rather than wait for a new round in real time. This is extremely useful for fast e2e testing of an application."RewardsPoolBalance": 0
- Prevents participation rewards by overriding the initial rewards pool balance. In a variety of test scenarios, participation rewards obscure testing Algo balances.
It takes a long time to generate participation keys, so the default configurations use the NETWORK_NUM_ROUNDS
parameter to limit how many are created. Unless the default value is changed, the network will stall after 24 hours. Some configurations have been changed so that they can be run for over a week. Review the setting to make sure it is suitable for how you would like to use the sandbox.
The mainnet
, testnet
, betanet
, and devnet
configurations configure the sandbox to connect to one of those long running networks. Once started it will automatically attempt to catchup to the latest round. Catchup tends to take a while and a progress bar will be displayed to illustrate of the progress.
Due to technical limitations, this configuration does not contain preconfigured accounts that may be immediately transact with, and Indexer is not available. A new wallet and accounts may be created or imported at will using the goal wallet new command to create a wallet and the goal account import or goal account new commands. If a testnet
configuration is used, please visit the TestNet Dispenser to fund the newly created account.
The sandbox environment is completely configured using the config.*
files in the root of this repository. For example, the default configuration for config.nightly is:
export ALGOD_CHANNEL="nightly"
export ALGOD_URL=""
export ALGOD_BRANCH=""
export ALGOD_SHA=""
export NETWORK=""
export NETWORK_TEMPLATE="images/algod/future_template.json"
export NETWORK_NUM_ROUNDS=300000
export NETWORK_BOOTSTRAP_URL=""
export NETWORK_GENESIS_FILE=""
export NODE_ARCHIVAL=""
export INDEXER_URL="https://github.com/algorand/indexer"
export INDEXER_BRANCH="develop"
export INDEXER_SHA=""
export INDEXER_DISABLED=""
export INDEXER_ENABLE_ALL_PARAMETERS="false"
export CONDUIT_URL="https://github.com/algorand/conduit"
export CONDUIT_BRANCH="master"
export CONDUIT_SHA=""
export CONDUIT_DISABLED=""
Indexer and Conduit are always built from source since these can be done quickly. For most configurations, algod will be installed using our standard release channels, but building from source is also available by setting the git URL, branch and optionally a specific SHA commit hash.
The up command looks for the config extension based on the argument provided. With a custom configuration pointed to a fork, the sandbox will start using the fork:
export ALGOD_CHANNEL=""
export ALGOD_URL="https://github.com/<user>/go-algorand"
export ALGOD_BRANCH="my-test-branch"
export ALGOD_SHA=""
export ALGOD_BOOTSTRAP_URL=""
export ALGOD_GENESIS_FILE=""
export INDEXER_URL="https://github.com/<user>/indexer"
export INDEXER_BRANCH="develop"
export INDEXER_SHA=""
export INDEXER_DISABLED=""
export INDEXER_ENABLE_ALL_PARAMETERS="false"
export CONDUIT_URL="https://github.com/<user>/conduit"
export CONDUIT_BRANCH="master"
export CONDUIT_SHA=""
export CONDUIT_DISABLED=""
By default Indexer disables many query parameters which are known to have performance problems without specially configured databases. You can identify these parameters if your Indexer calls return a response like the following:
{"message":"provided disabled parameter: tx-type"}
To override the disabled parameters and enable everything, add the following to your config.<name>
file:
export INDEXER_ENABLE_ALL_PARAMETERS="true"
Some Algorand commands require using a file for the input. For example working with TEAL programs. In some other cases like working with Logical signatures or transactions offline the output from a LogicSig or transaction may be needed.
To stage a file use the copyTo
command. The file will be placed in the algod data directory, which is where sandbox executes goal
. This means the files can be used without specifying their full path.
To copy a file from sandbox (algod instance) use the copyFrom
command. The file will be copied to sandbox directory on host filesystem.
these commands will stage two TEAL programs then use them in a goal
command:
~$ ./sandbox copyTo approval.teal
~$ ./sandbox copyTo clear.teal
~$ ./sandbox goal app create --approval-prog approval.teal --clear-prog clear.teal --creator YOUR_ACCOUNT --global-byteslices 1 --global-ints 1 --local-byteslices 1 --local-ints 1
these commands will create and copy a signed logic transaction file, created by goal
, to be sent or communicated off the chain (e.g. by email or as a QR Code) and submitted else where:
~$ ./sandbox goal clerk send -f <source-account> -t <destination-account> --fee 1000 -a 1000000 -o "unsigned.txn"
~$ ./sandbox goal clerk sign --infile unsigned.txn --outfile signed.txn
~$ ./sandbox copyFrom "signed.txn"
If something goes wrong, check the sandbox.log
file and ./sandbox dump [service]
for details.
For detailed information on how to debug smart contracts and use tealdbg CLI,please consult with Algorand Development Portal :: Debugging smart contracts.
Algorand smart contract debugging process uses tealdbg
command line of algod instance(algod container in sandbox).
Note: Always use tealdbg
with --listen 0.0.0.0
or --listen [IP ADDRESS]
flags, if access is needed to tealdbg from outside of algod docker container!
Debugging smart contract with Chrome Developer Tools (CDT):
~$ ./sandbox tealdbg debug ${TEAL_PROGRAM} -f cdt -d dryrun.json
Debugging smart contract with Web Interface (primal web UI)
~$ ./sandbox tealdbg debug ${TEAL_PROGRAM} -f web -d dryrun.json
The debugging endpoint port (default 9392) is forwarded directly to the host machine and can be used directly by Chrome Dev Tools for debugging Algorand TEAL smart comtracts (Goto url chrome://inspect/ and configure port 9392 before using please).
Note: If a different port is needed than the default, it may be changed by running tealdbg --port YOUR_PORT
then modifying the docker-compose.yml file and change all occurances of mapped 9392 port with the desired one.
For those looking to develop or extend algod or indexer it's highly recommended to test and debug using a realistic environment. Being able to interactively debug code with breakpoints and introspect the stack as the Algorand daemon communicates with a live network is quite useful. Here are steps that you can take if you want to run an interactive debugger with an indexer
running on the sandbox. Analogous instructions work for algod
as well.
Before starting, make sure you have VS-Code and have installed the Remote - Containers Extension.
- Inside docker_compose.yml add the key/val
privileged: true
under theindexer:
service - Start the sandbox with
./sandbox up YOUR_CONFIG
and wait for it to be fully up and running
- you may need to run a
./sandbox clean
first - you can verify by seeing healthy output from
./sandbox test
- In VS Code...
- Go to the Command Palette (on a Mac it's SHIFT-COMMAND-P) and enter
Remote - Containers: Attach to Running Container
- The container of interest, e.g.
/algorand-sandbox-indexer
, should pop up and you should choose it - The first time you attach to a container, you'll get the option of choosing which top-level directory inside the container to attach the file browser to. The default HOME (
/opt/indexer
in the case of indexer) is usually your best choice - Next, VS Code should auto-detect that you're running a
go
based project and suggest various extensions to add into the container enviroment. You should do this - Now navigate to the file you'd like to debug (e.g.
api/handlers.go
) and add a breakpoint as you usually would - You'll need to identify the PID of the indexer process so you can attach to it. Choose Terminal → New Terminal from the menu and run
ps | egrep "daemon|PID"
. Note the resulting PID - Now start the debugger with
F5
. It should give you the option toattach to a process
and generate alaunch.json
withprocessId: 0
for you - Modify the
launch.json
with the correctprocessId
. Below I provide an example of alaunch.json
- Now you're ready to rumble! If you hit your sandbox endpoint with a well formatted request, you should end up reaching and pausing at your break point. For indexer, you would request against port 8980. See the
curl
example below
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Process",
"type": "go",
"request": "attach",
"mode": "local",
"processId": YOUR_PID_HERE
}
]
}
~$ curl "localhost:8980/v2/accounts"
Windows Msys / Git Bash does not have a pseudo-TTY. Because of that, any time a command requires a pseudo-TTY, it fails with error:
the input device is not a TTY. If you are using mintty, try prefixing the command with 'winpty'.
Unfortunately prefixing all commands with winpty
is not an option because winpty
will break when piping or using command substitution (`...` and $()
).
The adopted solution is to use a pseudo-TTY only when absolutely required, that is when executing an interactive command such as bash
inside docker
.
See comments around the commands dc
and dc_pty
in the file sandbox
.