If you want the 21-day habit formation guide to work, you have to recognize that forming a new habit is no easy undertaking. It won’t get formed on its own. And for that reason, you have to decide why and how important is that habit to you. For that reason, we bring you 21 days habit, the tool to make it easier this journey of creating a habit. Motivating others and yourself to commit, by putting money on the line.
Hope you enjoy, and archive your goals!
There are three top-level folders:
/app
- contains the front-end application (On build)/contracts
- contains the solidity contract/tests
- contains tests for the solidity contract
There are a few steps to get setup here:
- Install install Node.js
- Download this repository locally
- Open the command line and navigate to your local copy of this repository
- Run
npm install
to download all the dependencies
You can use hardhat commands to test and compile the contracts, among other things.
To learn more about these commands run npx hardhat help
.
To run the front-end application:
- Compile the contracts with
npx hardhat compile
(this will make the artifacts accessible to/app
) - Move into the
app
folder and runparcel index.html
You can learn more about Parcel here.
The tests are setup to point at already deployed to the need contracts. We'll need to fork mainnet to do this in our test blockchain.
In order to fork mainnet, we'll be pointing this repository at an Alchemy API endpoint. To do this, you'll need to sign up for Alchemy, create a mainnet project and get your HTTP endpoint.
Once you've done this we'll use dotenv to store the endpoint in a local .env
file that won't accidentally get committed! Since this package is already in your dependencies all you'll need to do is create a new .env
file at the top level of the repository and add the following entry into it:
FORKING_URL=https://eth-mainnet.alchemyapi.io/v2/<YOUR_API_KEY>
Replacing <YOUR_API_KEY>
with the API key from Alchemy.
The hardhat.config.js
is already set up to fork mainnet at a recent block.
All we'll need to do to run the tests is run npx hardhat test
.