Initial Setup
Environment and Wallet Setup
The Avalanche Starter Kit contains everything you need to get started quickly with Avalanche. The kit provides a self-contained environment with Foundry so you can follow the course without the need of installing anything else other than launching the environment.
In this course we will run the Avalanche Starter Kit in a hosted environment on Github. This is the quickest way to get started.
Create a Codespace
The quickest way to get started is using GitHub Codespaces, which provides a pre-configured development environment:
Wait a few minutes for the environment to build. You must be logged into GitHub to use Codespaces.
Alternatively, you can clone the repository:
Open Avalanche Starter KitSet Up Core Wallet
- Install Core wallet:
- Visit Core wallet website
- Download and install for your OS
- Create a new wallet or import existing one
If you created your wallet account with gmail or any other auth provider you will not have a private key
- Get your wallet credentials:
- Open Core wallet
- Click your account name (top right)
- Select "View Private Key"
- Enter your password
- Copy your:
- Account address (0x...)
- Private key (0x...)
The private key is for testing only. Never use it in production or share it with anyone. Do not use a private key holding real funds on testnet, separate mainnet and testnet keys!
Configure Environment
- Create your environment file:
- Add your Core wallet credentials to
.env
:
- Load the environment:
- Verify your configuration:
The private key is for testing only. Never use it in production or share it with anyone. Do not use a private key holding real funds on testnet, separate mainnet and testnet keys!
Is this guide helpful?