Wellcome to our dSuite project.
This project contant two main parts:
- Contract
- UI
Contract: Contant the logic code of dSuite UI: User interface wite dSuite
-
Prerequisites
- Nodejs
- npm
- Near Cli
-
Clone this project
git clone https://github.com/dformteam/MetaBUILD.git-
Contract
install node module
npm installMove to the contract folder, update your contract owner
cd metabuid/contractOpen the config file in src folder in your editor
vi src/config.jsType your contract owner as your own
const CONTRACT_NAME = "neutrino.testnet"; <- Replace this line by your contract nameNext one, let compile the contract and deploy it into the testnet
npx asb near deploy -
UI
install node module
npm installUpdate your contract name by opening the config file in backed folder
cd metabuild/ui vi backed/configThen update this line
const CONTRACT_NAME = 'neutrino.testnet'; <- Change this lineBuild and run the project
npm run build npm run start
-