OUSD is a new kind of stablecoin that passively accrues yield while you are holding it.
Ethereum tests and local Ethereum EVM are managed by Hardhat.
A variety of Hardhat tasks are available to interact with the contracts. Additional information can be found by running npx hardhat
from the contracts/
directory.
cd contracts
yarn install && yarn run node
Start the DApp in another window:
cd dapp
yarn install && yarn start
Connect MetaMask to http://localhost:8545
.
When freshly starting a node it is usually nedessary to also reset Metamask Account being used:
- Click on Account top right icon -> settings -> advanced -> Reset Account
This repository also supports running a local node via the Hardhat EVM fork implementation.
Set PROVIDER_URL to point to Mainnet.
export PROVIDER_URL="https://eth-mainnet.alchemyapi.io/v2/...
Setting BLOCK_NUMBER in your environment before running the fork will aid performance due to better caching. It is recommended to set it to something that hast at least 6 confirmations.
export BLOCK_NUMBER=...
Start the Fork node:
cd contracts
yarn install
yarn run node:fork
You can run tasks against the fork. Make sure to set FORK=true
in your environment before running any tasks. For example:
FORK=true npx hardhat debug --network localhost
Additionally, you may need to remove this line from node_modules/hardhat
if you experience timeouts running on the fork. Timeouts occur because of how long it takes to retrieve the blockchain state from the provider.
Fund accounts with stablecoins:
cd contracts
FORK=true npx hardhat fund --network localhost
Start the DApp in another window:
cd dapp
yarn install && yarn run start:fork
Connect MetaMask to http://localhost:8545
.