@aloxide/abstraction
v0.6.0
Published
Provide tool for generating smart-contract
Downloads
13
Readme
Table of content
Package @aloxide/abstraction
Provide tool for generating smart-contract
Usage
../example-generate-sm/src/index.ts
Aloxide client
After install @aloxide/abstraction
, there will be an Aloxide client accompanied. You can use as example below:
# help
yarn aloxide -h
# create smart contract
yarn aloxide create ./test/aloxide.yml -o ./out
# use adapter eos
# ---- success generating file: hello.cpp
# ---- success generating file: hello.hpp
# generate smart contract success fully
# see output files at: `./out`
Or if you install @aloxide/abstraction
as a global package, the command will be available on the terminal without need of yarn
# help
aloxide -h
# create smart contract
aloxide create ./test/aloxide.yml -o ./out
# use adapter eos
# ---- success generating file: hello.cpp
# ---- success generating file: hello.hpp
# generate smart contract success fully
# see output files at: `./out`