koinos / koinos-contracts-as

This suite of system contracts provides core functionality for the Koinos blockchain including consensus algorithms and tokenomics.
Other
2 stars 4 forks source link

Test Ubuntu Test Windows Test MacOS

Koinos AssemblyScript SDK Examples

DISCLAIMER: NONE OF THESE CONTRACTS HAVE BEEN AUDITED, USE AT YOUR OWN RISK

Link to the Koinos AssemblyScript SDK documentation: https://roaminroe.github.io/koinos-as-sdk/

Installation

# clone this repo
git clone https://github.com/koinos/koinos-contracts-as

# with npm
npm install

# or

# with yarn
yarn install

Important note

Build examples

To build a Smart Contract you can use the CLI koinos-sdk-as-cli from within the contract directory. It will help you generate all the files required to build your smart contract.

# see the cli help
yarn exec koinos-sdk-as-cli help
# example for building the calculator contract
# build the debug version (execute command in the "calculator" folder)
yarn exec koinos-sdk-as-cli build-all debug calculator.proto

# build the release version (execute command in the "calculator" folder)
yarn exec koinos-sdk-as-cli build-all release calculator.proto

This will result in the generation of:

Generate AssemblyScript files for all the proto files of a contract

# example for the calculator contract (execute command in the "calculator" folder)
yarn exec koinos-sdk-as-cli generate-contract-proto

Generate ABI file

# example for the calculator contract (execute command in the "calculator" folder)
yarn exec koinos-sdk-as-cli generate-abi calculator.proto

This will generate a calculator.abi file in the folder calculator/abi/

Generate contract.boilerplate.ts and index.ts files

# example for the calculator contract (execute command in the "calculator" folder)
yarn exec koinos-sdk-as-cli generate-contract-as calculator.proto

This will generate a Calculator.boilerplate.tsfile and index.ts file in the folder calculator/assembly/

Run tests

# example for the calculator contract (execute command in the "calculator" folder)
yarn exec koinos-sdk-as-cli run-tests