[]https://gitpod.io/#https://github.com/shepf/NCD--near-star-main)
This contract implements simple voter backed by storage on blockchain.
Contract in assembly/main.ts
provides methods to voter and get it's current accoutId.
Vote buttons increase nose count.
Open in the Gitpod link above or clone the repository.
git clone https://github.com/shepf/NCD--near-star-maing
Install dependencies:
yarn
Make sure you have near-cli
by running:
near --version
If you need to install near-cli
:
npm install near-cli -g
If you do not have a NEAR account, please create one with NEAR Wallet.
In the project root, login with near-cli
by following the instructions after this command:
near login
Modify the top of src/config.js
, changing the CONTRACT_NAME
to be the NEAR account name in the file neardev/dev-account
. It starts with dev-
.
…
const CONTRACT_NAME = 'neardev/dev-account ACCOUNT ID'; /* TODO: fill this in! */
…
Start the example!
yarn start
yarn asp # as-pect tests
NODE_ENV=ci yarn jest # jest tests
NODE_ENV=ci yarn test # both
assembly/main.ts
for the contract codesrc/index.html
for the front-end HTMLsrc/main.js
for the JavaScript front-end code and how to integrate contractssrc/test.js
for the JS tests for the contract