EVM LSD Stack is devoted to help developers building liquid staking project in EVM compatible chains such as Sei, BNB Smart Chain, Polygon etc, and designed to provide a comprehensive set of solutions related to commission fee management, validator set management, and user operations: stake, unstake, withdraw.
EVM LSD App is a user interface where users can stake, unstake and get latest information about the project. As a convention in web3 all API users interact with are directly from the RPC configured in wallet, so the app is a pure DApp.
- Install Node.js >= v16
- Install yarn via npm:
npm install --global yarn
- Enter project root directory then install all dependencies via terminal:
yarn
- Start app by:
yarn dev
In normal case you do not need update ABI files, but if you modify the contracts then you probably want to update abi files which are in config/abi
folder.
- Change your token config, branding links and text here:
config/appConf/app.json
- Set your network and contract address on Testnet here:
config/appConf/dev.json
- Set your network and contract address on Mainnet here:
config/appConf/prod.json
You can change color config in tailwind.config.js
, each color has light & dark versions(i.e text1 & text1Dark).
Run yarn build
or yarn build:dev
to build your app, the static files will be placed in out
folder. Upload those files to any static web hosting services you like.
You can find more details here: lsaas-docs