Unchained (Node)

Helpful Docs

Project Structure

  • packages - shared internal packages across coinstacks

  • coinstacks/common - common coinstack logic to reduce duplication

  • coinstacks/{coin} - coin specific logic

Dependencies

Initial Setup

  • Install Node.js LTSarrow-up-right

    • (Optional) use nvm to automatically install the node version specified in .nvmrc

      nvm use
  • Install Yarnarrow-up-right

    npm install --global yarn
  • Install dependencies:

    yarn
  • Build project:

    yarn build

    build step must be run locally before attempting to docker-compose up

  • Copy sample env file:

    cp node/coinstacks/ethereum/sample.env node/coinstacks/ethereum/.env
  • Fill out any missing variables

Last updated

Was this helpful?