/Equinox-v1

Official GitHub Repository for Equinox.

Primary LanguageTypeScriptMIT LicenseMIT

Equinox



Built With

  • React
  • typescript
  • AntDesign
  • web3react
  • prettier
  • ESLint

Installation

Make sure you have the following ready:

  • node.js installed (developped on LTS v18)
  • typescript installed (developped on v5.1.6)
  • yarn installed
  • MetaMask (or any web3 compatible wallet) installed in your browser

Install all package dependancies by running:

yarn install

IMPORTANT: Double check your package.json to make sure you've installed the exact same version for all @web3-react packages. Since the version 8+ is still in beta, it may not be automatically installed.

Add your API keys in the .env file:

Create a .env file at the root of your project and copy the content of the .env.example file into it. Then, fill in the following variables:

REACT_APP_INFURA_KEY = "your API key here";
...
REACT_APP_WALLETCONNECT_PROJECT_ID = "Project id needed for WalletConnect v2";

start the dApp:

yarn start

(back to top)