Skip to content
This repository was archived by the owner on Jan 2, 2024. It is now read-only.

Latest commit

 

History

History
66 lines (53 loc) · 7.47 KB

interacting-with-algorand.md

File metadata and controls

66 lines (53 loc) · 7.47 KB

Interacting with the blockchain

Accounts

  • 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.

Networks and dispensers

  • 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}
        

APIs and SDKs

Wallets

Sandbox setup (Windows)

Not relevant for this project since we use Docker Compose, but may be useful for cursory exploration:

Previous: Algorand (basics)