Skip to content

Hsien-HsiuLiao/assemblyscript-counter

 
 

Repository files navigation

Counter example in AssemblyScript

Open in Gitpod!

Description

This contract implements simple counter backed by storage on blockchain. Contract in assembly/main.ts provides methods to increment / decrement counter and get it's current value or reset.

Plus and minus buttons increase and decrease value correspondingly. When button L is toggled, counter will add or minus 10 a time. RS button is for reset. LE and RE buttons to let the robot wink to you.

To Run

Open in the Gitpod link above or clone the repository.

git clone https://github.com/near-examples/counter

Install dependencies:

yarn --frozen-lockfile

Make sure you have near-cli by running:

near --version

If you need to install near-cli:

npm install near-cli -g

Login

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

To Test

yarn asp  # as-pect tests
NODE_ENV=ci yarn jest # jest tests
NODE_ENV=ci yarn test # both

To Explore

  • assembly/main.ts for the contract code
  • src/index.html for the front-end HTML
  • src/main.js for the JavaScript front-end code and how to integrate contracts
  • src/test.js for the JS tests for the contract

About

Increment and decrement a counter with this simple smart contract via a web page.

Resources

License

MIT, Apache-2.0 licenses found

Licenses found

MIT
LICENSE
Apache-2.0
LICENSE-APACHE

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • HTML 52.7%
  • JavaScript 36.6%
  • TypeScript 10.3%
  • Shell 0.4%