cubiclearn / backend

DAE contracts.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

backend

example workflow

contracts & tests

SBTs research and considerations.

Installation

  • Install foundry.
  • Clone repo.
  • cd into repo.
  • Run forge install.
  • pip install pre-commit.
  • pre-commit install to install the fmt and gas snapshot pre-commit hook.

Usage

  • To build, run forge build.
  • To run tests, run forge test.
  • To check coverage, run forge coverage.
  • To run slither, install it and run slither ..
  • To run mythril, install it and run myth analyze src/Credentials/Credentials.sol --solc-json mythril.config.json or similar.
  • To get a list of all the available methods of a contract, run forge inspect src/Credentials/Credentials.sol:Credentials methods or similar.

more info about foundry: foundry book

Local network deployment

  • Run anvil, which creates a local EVM network.
  • Copy one of the private keys and paste it in the .env file.
  • Open another terminal and run source .env.
  • Run forge script script/Credentials.s.sol:LocalDeploy --fork-url $LOCAL_RPC_URL --broadcast.

About

DAE contracts.


Languages

Language:Solidity 100.0%