Host a GUI
This guide offers instructions on how to create and host your own GUI on Serum.
Want to help support the Serum ecosystem? Host a GUI and get a fraction of the fees!
Anyone can trade on any of the DEX markets, as they are not permissioned:
- (Has some interfacing code to make it easier to trade)
In the spirit of DeFi, users are invited to compose with, it, and host their own GUIs.
You will find the official repository of Serum DEX UI here:
This repository provides everything you need to start your own Serum GUI.
Once you have forked the repository, you can run a local environment by running:
yarn start
The Serum DEX UI uses React and Ant Design UI library. To learn how to customize it, refer to their official guide.
Serum allows you to collect 20% of the fees for the orders made on your GUI. In order to collect the fees, you need to modify the
.env
file that looks like this:REACT_APP_USDT_REFERRAL_FEES_ADDRESS=''
REACT_APP_USDC_REFERRAL_FEES_ADDRESS=''
To collect fees enter your USDT SPL and USD SPL addresses, for example:
REACT_APP_USDT_REFERRAL_FEES_ADDRESS=9EscMUvizE1ThHWuWQgs8siDz4r54yVxhZDub3ihWQAX
REACT_APP_USDC_REFERRAL_FEES_ADDRESS=9GiKG99ngtKzhQcNXtHokuhx5gk7ftKfrmKtrybHFNa1
The
package.json
file contains a field called homepage
, change it to your name domain.There are different solutions to host your GUI. You can host it for free on Github Pages or host it on your own server.
This is the easiest way of hosting and deploying a GUI, you simply have to use the following command to deploy your GUI
yarn deploy
The GUI will then be hosted on the
gh-pages
branch of your Github repository.Alternatively, you can host your GUI on your own server and use Nginx for instance to serve it. To create the production build run:
yarn build
The build will be created in the
build
folder of the working directory.Last modified 2yr ago