Awesome
In the project directory, you can run:
yarn start
or
npm start
Runs the app in the development mode.
Open http://localhost:3000 to view it in the browser.
This app uses verified IoT data to mint NFTs for users that will store an image and the insurance metadata, as well as a calculated score for these users. Then each user can opt to join the DAO and the DAO smart contract will utilize the metadata from the NFT to charge each user according to risk (similar in concept to insurance) and at the end of a specified block, the DAO will pay distribute rewards (after costs for covering drivers) that quarter in an airdrop
steps to running dApp
-
git clone the repo and cd into root directory
-
npm install or yarn (install all the packages from package.json)
-
create a .env file in the root (touch .env)
Required Fields in .env
a) PROJECT_ID (this is the project ID you get from infura when you create a API key for kovan test net, only needed for kovan, it's free!) <br/> b) PERSONAL_PINATA_PUBLIC_KEY (public key when creating a Pinata account, it's free!) <br/> c) PERSONAL_PINATA_SECRET_KEY (secret key when creating Pinata account)<br/> d) Optional - ETHERSCAN_API_KEY (this is for the verify plugin if you want to verify a contract you deploy on your own...)<br/> e) PRIVATE_KEY (only if you want to deploy a new instance, there is already a deployed instance you can use (links below))<br/> f) Optional - SERVER_ADDRESS (address that goes with the private key, this must be added to line 6 in migrations/2_deploy_contracts.js!!)<br/> g) TEST_NET = KOVAN or (whichever test net you want to use)<br/>
Recommended, just use my deployed instance<br/>
PRIVATE_KEY = 0x23f9c88d251cb85866b605e71b41962e5cd1fdc50f23b495425101953070bb4b
<br/>
(don't worry this was just a randomly generated one from ganache and has no real funds, just used to sign messages server side...)
If you want to deploy yourself, then run<br/>
hardhat deploy --network kovan
<br/>
to deploy to kovan<br/>
initially this repo will contain solidity contracts to use as guides in building the starknet contracts, but eventually everything switched over to starknet and cairo is the goal!