This project is meant ot be used as a template to build Art Blocks Engine web apps. It contains all of the pages and views necessary for users to browse projects, tokens and be able to purchase mints.
Run npm install
or yarn
to install dependencies.
You will need to create a .env
configuration file. You can get started by copying sample.env
and renaming it as .env
You will need a JSON RPC provider URL.
For instance, you could use infura: https://mainnet.infura.io/v3/<API_KEY>
You will need to set up JSON RPC urls for each chain you need to support.
You can find the chains configuration in src/utils/chains.ts
Run npm start
or yarn start
to run the project.
After making any changes to the .env
file, you will need to restart the app.
In order to customize abengine-react
for your specific Art Blocks Engine implementation, you will need to edit the default configuration provided on the sample.env
file.
First of all, you will need to replace the contract addresses with your own.
You will also need to change the expected chainId
, graph ql urls and possibly others, to set up development
or staging
environments on testnet
if you wish to do so.
There are additional configuration values you could customize like the number of projects per page, or tokens per page. You will find those parameters in src/config.ts
By default, artblocks-engine-react
supports Ethereum Mainnet, Ropsten and Goerli.