Environment Setup

Only necessary if directly working on, testing, or auditing the Fismo protocol. If you just want to build cool stuff, you probably want to visit the Fismology Lab.

Stack

For the Fismo project, the stack is a simple one:

  • Solidity
  • JavaScript
  • Node/NPM
  • HardHat
  • Waffle
  • Ethers

Download or clone the Fismo repository

git clone https://github.com/cliffhall/Fismo.git

Install Node (also installs NPM)

Install required Node modules

  • All NPM modules are project local. No global installs required.
cd path/to/Fismo
npm install

Configure Environment

  • Copy environments_template.js to environments.js and edit to suit.
  • API keys are only needed for deploying to public networks.
  • environments.js is included in .gitignore and will not be committed to the repo.
  • For your target Ethereum network environment, set:
    • txNode: the endpoint for sending ethereum transactions
    • mnemonic: a valid ethereum HD wallet seed phrase
  • For verifying code and running the gas reporter, set:
    • block_explorer.apiKey: your etherscan/poloygonscan/etc API key
    • coinmarketcap.apiKey: your coinmarketcap API key