显示软件包…
1 个不稳定版本
0.1.0 | 2022 年 1 月 29 日 |
---|
#558 in #substrate
63KB
1.5K SLoC
Inkpad
在任何地方运行 ink! 合同。
安装
此 Inkpad CLI 可以使用小安装脚本安装在 Linux 和 macOS 上
$ cargo install --git https://github.com/patractlabs/inkpad --bin inkpad
用法
inkpad 0.2.0
Inkpad command tool
USAGE:
inkpad [*.contract | name | code-hash] <SUBCOMMAND>
FLAGS:
-h, --help Prints help information
-V, --version Prints version information
ARGS:
<*.contract | name | code-hash> If empty, inkpad will load the last contract which has been executed
SUBCOMMANDS:
call Calls a call method
deploy Calls a deploy method
help Prints this message or the help of the given subcommand(s)
info Prints info of *.contract
list Lists all contracts
示例
$ inkpad flipper.contract deploy default
Deploy contract succeed!
$ inkpad list
contract code-hash
---------------------------------------------------------------------------------------
flipper 0x97994513522c4cdf681c3377ef043ccefd865df0bd3ce86c599aab7b23de211f
$ inkpad info
name: flipper
code_hash: 0x97994513522c4cdf681c3377ef043ccefd865df0bd3ce86c599aab7b23de211f
contructors:
- default [ ]
- new [ bool ]
methods:
- flip [ ]
- get [ ]
$ inkpad call get
result: [0]
$ inkpad call flip
result: []
$ inkpad call get
result: [1]
功能
Inkpad 是一个独立的 ink! 合同环境,Inkpad 的 运行时 支持 wasmtime
和 wasmi
,Inkpad 的 wasmi
功能允许你在任何地方运行 ink! 合同,甚至在浏览器中。
许可证
Apache-2.0
依赖项
~12–25MB
~361K SLoC