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/
# clone this repo
git clone https://github.com/koinos/koinos-contracts-as
# with npm
npm install
# or
# with yarn
yarn install
- It important that your smart contract file lives in the
assembly
folder of your project. (i.e.:./calculator/assembly/Calculator.ts
) - And, it is also important that your
proto
files live in theassembly/proto/
folder of your project. (i.e.:./calculator/assembly/proto/calculator.proto
)
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:
- a
calculator.abi
file in the foldercalculator/abi/
- a
calculator-abi.json
file in the foldercalculator/abi/
- a
contract.wasm
file in the foldercalculator/build/release
andcalculator/build/debug
- an
index.ts
file in the foldercalculator/assembly/
- a
Calculator.boilerplate.ts
file in the foldercalculator/assembly/
# example for the calculator contract (execute command in the "calculator" folder)
yarn exec koinos-sdk-as-cli generate-contract-proto
# 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/
# 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.ts
file and index.ts
file in the folder calculator/assembly/
# example for the calculator contract (execute command in the "calculator" folder)
yarn exec koinos-sdk-as-cli run-tests