Table of Contents
-
Replicate interface for each offer type to modify modal ❌
See the open issues for a full list of proposed features (and known issues).
To run the project you will need to set-up a .env
file in the root folder:
COMMUNITY_API_KEY=XXXXXXXXXXXX
NEXT_PUBLIC_ENV=XX
To get a COMMUNITY_API_KEY
, join the dedicated telegram dev channel then ask for.
The var NEXT_PUBLIC_ENV
is used to hide/show some features depending the environement.
Only those values are allowed: dev
, staging
or production
.
The default value is dev
;
📣 Node.js needed version is v18.12.1
- Clone the repo
git clone https://github.com/real-token/realtoken-yam-interface.git
- Install NPM packages
yarn
- Create the env file (instructions here)
- Start the application in dev mode
yarn dev
The community is welcome to participate in the development of the YAM.
All commit's name must follows the conventional commit convention.
staging
branch and should requested to be merge into staging
branch. Otherwise PR will be refused.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
Don't forget to give the project a star! Thanks again!
- Fork the Project
- Move to
staging
branch (git checkout staging
) - Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
If you want to improve the YAM there is few things you need to know.
Node.js is a backend technology providing Javascript runtime environment outside server side.
Next.js is a framework used to create full-stack modern web application.
React is used to create dynamic interface.
Typescript is a top-layer technology used to typed (add boolean, number etc...) types to javascript. It also significantly reduces errors during development.
Mantine is the UI development kit we choosed to create the YAM interface. We choose it because Mantine is under intensive developmenent and is opensource. It also perfectly match with React, our front-end framework.
Web3-react is a typescript/javascript library used to connect YAM to blockchain through different wallet: Injected (Metamask, Frame, etc...), Coinbase, Wallet-connect, etc...
Redux is a state manager used to store datas to store data accessible throughout the app.
See state management for more informations.
Jotai is a small state manager.
See state management for more informations.
EsLint and Prettier are too software used to check and clean code, and check for synthax errors into the code.
DotEnv is a library used to read environement variable from .env
file.
Two state managers are working together inside YAM app: Redux and Jotai.
Redux stores the most heavy datas (offers, properties,etc...) while Jotai will be used to store datas in cookies and small state that need to be shared between 1-2 components and not the whole application.
You can visualize the redux store with the redux dev tool.
At the moment only two displays are available: Table and Grid. But as a community driven projet you are encouraged to add new ones.
If you want to one more you will need:
- Modify the enum file
src/types/Displays.ts
, to add a new display declaration. - Goto
src/components/Display/Display.tsx
file: - Add your brand new display in
availableDisplays
Map.const availableDisplays = useMemo(() => { return new Map<Displays,Display>([ [Displays.TABLE, { display: Displays.TABLE, // This is the enum key you created before title: "Table", // This is your display's name component: <MarketTable key={"table"}/> // This is your display's component }] ]); },[])```
Then everything is ready to works !
Distributed under the MIT License. See LICENSE.txt
for more information.
- Support - @RealTPlatform - support@realt.co
- Testnet version: YAM testnet channel
Project Link: https://github.com/real-token/realtoken-yam-interface