#substrate #run-time #smart-contracts #wasm

bin+lib inkpad

在命令行中运行 ink! 合同!

1 个不稳定版本

0.2.0 2022年3月23日

#89 in #runtime

MIT 许可证

82KB
2K SLoC

墨垫

Rust crate doc downloads LICENSE

在任何地方运行 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] 

功能

墨垫是一个独立的 ink! 合同环境,Inkpad 的 运行时 支持 wasmtimewasmi,通过 Inkpad 的 wasmi 功能,您可以在任何地方运行 ink! 合同,甚至在浏览器中。

许可证

Apache-2.0

依赖项

~12–24MB
~353K SLoC