-
An account is defined by a public / private key pair, both of which are a 32-byte string
- The public key is transformed to a base 32 Algorand Address through an algorithm, which is the form you will see commonly e.g.
VCMJKWOY5P5P7SKMZFFOCEROPJCZOTIJMNIYNUCKH7LRO45JMJP6UYBIJA
- The private key is usually represented in one of two ways:
- Base64 Private Key: Concatenation of public and private keys with base64 encoding applied
- 25-word Mnemonic: User-friendly representation by converting the private key bytes into 11-bit integers and mapping them to a known word list (resulting in 24 words) and adding a checksum integer / word forming a 25 word phrase
- Keeping the integrity of the private key secure is essential since if you lose it to an attacker then you lose your account. The private key can't be reset since the public key (and your account address) is based on the private key.
- The public key is transformed to a base 32 Algorand Address through an algorithm, which is the form you will see commonly e.g.
- Algorand, like other blockchains, has multiple networks - there is mainnet, which is the main blockchain, testnet, for testing, betanet for new feature experimentation and locally you can run a private Sandbox network for testing and development
- To get funds in an account on Mainnet you need to purchase it via an exchange like Binance or Coinbase using a Fiat currency stablecoin
- To get funds in an account on Testnet you need to use a dispenser:
- To get funds in an account on a local Sandbox you need to find a default account (one of the accounts created with lots of tokens in the network genesis), export the private key, and use that
- We have code that does this programmatically (see
getSandboxDefaultAccount
) - You can also do it in commandline via:
> ./sandbox.sh goal account list > ./sandbox.sh goal account export -a {address_from_online_account_from_above_command}
- We have code that does this programmatically (see
- To interact with Algorand itself (or any blockchain) you need to run a node, but that can be quite complex/costly to set up and maintain so there are services that exist that run nodes and provide an API over the top to make it simpler, quicker and easier. The main ones for Algorand are:
- AlgoNode, which is free and doesn't need an API key unless you want a higher tier of rate limiting
- PureStake, which has a free tier and paid tiers with higher rate limits and an SLA
- RandLabs AlgoExplorer Algod REST API and Indexer REST API, both of which are free without needing an API key
- Interacting with a node involves calling the node-provided APIs, for which Algorand provides an SDK to communicate, some of the node services then provide functionality on top, but at a minimum they all support the Algorand SDK; the APIs themselves are pretty standard HTTP APIs so easy to understand and consume
- There are good examples of how to use the SDK in our functions
- To view information on Algorand you need to use the indexer API (which the above services provide) or use an explorer UI:
- To transact as an end user with Algorand you need to use a wallet to sign the transactions for your account, there are a few different options:
- Pera Algo Wallet - Slick Android/iOS app officially endorsed by the Algorand team, can use a QR code to interact with it from a web frontend; uses WalletConnect to connect
- PureStake AlgoSigner - Unofficial Chrome/Edge extension similar to MetaMask, built by PureStake; uses custom
window.algosigner
interface that is injected into every page you visit - RandLabs My Algo - unofficial, slick web-based wallet that pulls up a
window.open
popup to authorize requests kind of like an OpenID Connect call, stores encrypted account details in local browser storage (IndexedDB) secured by a password- There is a JavaScript library called MyAlgo Connect that handles the interactions with the popup
- Other wallets:
- Ledger ledger is a popular crypto hardware wallet and is also supported by the Algorand Wallet app; supports WalletConnect
- Magic; a bridge from passwordless "web2" identities to a securely stored wallet, has its own custom SDK
- Trust Wallet; supports WalletConnect
- Atomic Wallet; supports WalletConnect
- Guarda Algorant Wallet; supports WalletConnect
- Exodus Algorand Wallet; looks like it doens't support dApps
- Algo Wallet - an open source wallet implementation
Not relevant for this project since we use Docker Compose, but may be useful for cursory exploration:
- Sandbox setup on Windows: https://github.com/algorand/sandbox#windows
- Configure WSL to work with Docker on Windows: https://docs.docker.com/desktop/windows/wsl/
- Avoid needing to prefix
docker
withsudo
in WSL: https://docs.docker.com/engine/install/linux-postinstall/ - Configure VS Code on Windows to be able to open a WSL folder (via
code .
in WSL): https://code.visualstudio.com/docs/remote/wsl-tutorial
Previous: Algorand (basics)