Juicebox frontend application.
- Mainnet: https://juicebox.money
- Rinkeby: https://rinkeby.juicebox.money
- Mumbai-testnet: http://juice.zsharing.net:8080
Have an idea or suggestion? Create a feature request or mention it in the Discord.
Notice something broken? Create a bug report.
-
Create a fork of this repository.
-
Clone your fork and navigate to the root directory.
-
Install project dependencies.
yarn install
-
Create a
.env
file in the root directory which mirrors the.example.env
file. Learn how to define each field in the.env
file in Setup.
juicebox-interface
relies on a number of services for development. Create an
account for each of the following services:
The following sections describe how to set up each service for local development.
Juicebox uses Infura to connect to an Ethereum network (mainnet, or one of the testnets).
Take the following steps to create an Infura project for local development:
- Select Create New Project to begin creating a new Infura project.
- Select the Ethereum option from the Product dropdown.
- Enter a Name (for example,
juicebox-local
). - Select Create to create the project.
Next, copy the following fields into your .env
file:
- Project ID. In the
.env
file, copy the Project ID into theREACT_APP_INFURA_ID
variable. - Endpoint. This is the Ethereum network that will be used for testing. If
you don't know which endpoint to use, select mainnet. In the
.env
file, copy the network name (e.g. 'mainnet', not the url) into theREACT_APP_INFURA_NETWORK
variable.
Juicebox uses Piñata to store project metadata. Juicebox projects set a name, description, logo, and other details when creating the project. These details are saved on IPFS as a JSON file using Piñata, and the CID gets stored on-chain with the Juicebox project.
Take the following steps to set up Piñata for local development:
- Create a Piñata API key
(learn more).
- Enable the Admin toggle in the Admin field.
- Copy the following fields into your
.env
file:- API Key. In the
.env
file, copy the API Key into theREACT_APP_PINATA_PINNER_KEY
variable. - API Secret. In the
.env
file, copy the API Secret into theREACT_APP_PINATA_PINNER_SECRET
variable.
- API Key. In the
Juicebox uses Blocknative to onboard users by enabling wallet selection, connection, wallet checks, and real-time state updates.
Take the following steps to set up Blocknative for local development:
- Create a Blocknative API key
(learn more).
- Enable the Admin toggle in the Admin field.
- Copy the API key into the
REACT_APP_BLOCKNATIVE_API_KEY
variable of the.env
file.
-
Start the app.
yarn start
If you'd like to contribute code or translations to the repository, check out
CONTRIBUTING.md
The frontend has two different providers that provide different levels of access to different chains:
readProvider
: used to read from contracts on network of injected provider (.env
file points you at testnet or mainnet)signingProvider
: your personal wallet, connected to via Blocknative.
Frontend application(s) are deployed automatically on pushes to main
using
Fleek.
The app uses the SemanticTheme
pattern defined in the
src/models/semantic-theme/
directory. This allows
mapping style properties to any number of enumerated ThemeOption
s. Style
properties are defined in the src/constants/theme/
directory. Theme styles can be accessed via ThemeContext
defined in
src/contexts/themeContext.ts
(and instantiated
in src/hooks/JuiceTheme.tsx
), or via CSS root
variables.
The app also relies on antd React components. We
override some Antd styles to make Antd compatible with SemanticTheme
. These
overrides are defined in the
src/styles/antd-overrides/
directory.