New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@koinos/sdk-as-cli

Package Overview
Dependencies
Maintainers
2
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@koinos/sdk-as-cli

![Test Ubuntu](https://github.com/koinos/koinos-sdk-as-cli/actions/workflows/test-ubuntu.yml/badge.svg) ![Test Windows](https://github.com/koinos/koinos-sdk-as-cli/actions/workflows/test-windows.yml/badge.svg) ![Test MacOS](https://github.com/koinos/koino

latest
Source
npmnpm
Version
1.0.2
Version published
Maintainers
2
Created
Source

Test Ubuntu Test Windows Test MacOS

Installation

# with npm
npm install -g @koinos/sdk-as-cli

# with yarn
yarn global add @koinos/sdk-as-cli

Create a contract boilerplate

# will create "mycontract" in the current working folder
koinos-sdk-as-cli create mycontract

Important note

  • It important that your smart contract file lives in the assembly folder of your project. (i.e.: assembly/Calculator.ts)
  • And, it is also important that your proto files live in the assembly/proto/ folder of your project. (i.e.: assembly/proto/calculator.proto)

Help

koinos-sdk-as-cli help

Build a contract

# example for building a calculator contract
# build the debug version
koinos-sdk-as-cli build-all debug calculator.proto 

# build the release version
koinos-sdk-as-cli build-all release calculator.proto 

This will result in the generation of:

  • a calculator.abi file in the folder abi/
  • a calculator-abi.json file in the folder abi/
  • a contract.wasm file in the folder build/release and build/debug
  • an index.ts file in the folder assembly/
  • a Calculator.boilerplate.ts file in the folder assembly/

Generate ABI file

# example for a calculator contract
koinos-sdk-as-cli generate-abi calculator.proto

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

Generate contract.boilerplate.ts and index.ts files

# example for a calculator contract
koinos-sdk-as-cli generate-contract-as calculator.proto

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

Generate AssemblyScript files for all the proto files of a contract

koinos-sdk-as-cli generate-contract-proto

Generate AS files for the given proto files

# example for a calculator contract
koinos-sdk-as-cli generate-as-proto calculator/assembly/proto/calculator.proto

Run tests

koinos-sdk-as-cli run-tests

FAQs

Package last updated on 11 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts