There are three main components of the Startereum platform: the Crypto-EUM Game, the home page, and the user profile and portfolio. Please find the project tracker here and wireframes here.
_Users play a 5 minute game-set consisting of 3 types of games- Staking, Trivia & Mining and win tokens based on their success in each type of game.
_Everyday a game-set runs for 24 hours before the results are declared and token awarded.
_A game-set is themed on some aspect or use-case of crypto (attention economy, decetralized storage, collectibles, privacy coins etc).
_A player can join a game-set at any point before the end of 24 hours. This is a timed game and the entire set which must be completed in X minutes, with Y minutes per game.
_This game will test your skill in value-based crypto investing, where you are shown two anonymized projects with key dimensions of their project, and are required to pick one and stake some tokens to back your claim.
_You will get an immediate result to signal your current standing basis current stakes, and a final results at the end of 24 hours.
Posts and Updates, Ranking Side-bar, and Leaderboard side-bar
My Activity, My Wallet, My Portfolio
-
Install Truffle globally.
npm install -g truffle
-
Download the box. This also takes care of installing the necessary dependencies.
truffle unbox chainskills/chainskills-box
-
Run the development console.
truffle develop
-
Compile and migrate the smart contracts. Note inside the development console we don't preface commands with
truffle
.compile migrate
-
Run the
liteserver
development server (outside the development console) for front-end hot reloading. Smart contract changes must be manually recompiled and migrated.// Serves the front-end on http://localhost:3000 npm run dev