This project (WIP) demonstrates a basic Dashboard example with a greeter contract and a token contract.
npx hardhat node
npx hardhat run scripts/deploy.ts --network localhost
This will return 2 addresses to use in the next command
REACT_APP_GREETER_ADDRESS='address-1' REACT_APP_TOKEN_ADDRESS='address-2' yarn start
if you get a compile or deploy error make sure to modify in tsconfig.json:
...
"isolatedModules": true -> "isolatedModules": false
...