#run-time #substrate #hash #proposal #hashed #utility #blob

bin+lib substrate-runtime-hasher

当一个候选运行时被提交到基于 Substrate 的链,如 Polkadot 或 Substrate,这个 WASM 块将被哈希。可见的提案哈希实际上是前缀和哈希后的运行时。这个工具做的是同样的事情,并允许在链下计算新运行时的提案哈希。您不需要节点,甚至不需要互联网连接来使用这个工具。

7 个版本

0.2.9 2020 年 7 月 29 日
0.2.8 2020 年 7 月 29 日

#12#hashed

MIT 许可证

16KB
201

substrate-runtime-hasher

当一个候选运行时被提交到基于 Substrate 的链,如 Polkadot 或 Substrate,这个 WASM 块将被哈希。可见的提案哈希实际上是前缀和哈希后的运行时。这个工具做的是同样的事情,并允许在链下计算新运行时的提案哈希。

您不需要节点,甚至不需要互联网连接来使用这个工具。

rustdoc 可以在这里找到 这里

这是 substrate-runtime-hasher v0.2.9 的文档。

安装

    cargo install --git https://gitlab.com/chevdor/substrate-runtime-hasher.git --tag v0.2.9

不推荐在生产中使用 `master` 版本:在上一个命令中不要省略 `--tag v0.2.9`。

用法

示例运行

在以下示例中,WASM 文件的路径将存储在一个名为 WASM 的变量中。

您可以设置它为

export WASM=/home/foobar/kusama/target/srtool/release/wbuild/kusama-runtime/kusama_runtime.compact.wasm

构建您的运行时…或者让 srtool 来做。

    cd <polkadot-repo>
    # build the runtime (you could use srtool)

调用 substrate-runtime-hasher

    substrate-runtime-hasher $WASM
    0x5931690e71e9d3d9f04a43d8c15e45e0968e563858dd87ad6485b2368a286a8f

如果您使用 srtool,它将为您做所有的事情。WASM 的默认位置将位于您的存储库中的 $WASM 内(例如,对于 kusama)。

Unix 管道和输入重定向

v0.2.1 开始,您也可以使用 Unix 管道

将数据管道到 substrate-runtime-hasher。

    cat $WASM | substrate-runtime-hasher
    0x5931690e71e9d3d9f04a43d8c15e45e0968e563858dd87ad6485b2368a286a8f

输入重定向。

    substrate-runtime-hasher < $WASM
    0x5931690e71e9d3d9f04a43d8c15e45e0968e563858dd87ad6485b2368a286a8f

如果您使用像 echo 这样的命令,请务必不要发送额外的 newline。例如,echo "123" | substrate-runtime-hasher 不会对 123 进行哈希,而是 123<cr>。在这种情况下,您可能想使用 echo -n "123" | substrate-runtime-hasher

帮助!

    substrate-runtime-hasher --help

您应该看到类似的输出

    substrate-runtime-hasher 0.2.1
    Wilfried Kopp <chevdor@gmail.com>
    Hash data the same way Substrate-based chains such as Kusama or Polkadot.
    This gives a hash matching proposal hashes onchain.

    USAGE:
        substrate-runtime-hasher [FLAGS] [INPUT]

    FLAGS:
        -h, --help       Prints help information
        -v               Sets the level of verbosity
        -V, --version    Prints version information

    ARGS:
        <INPUT>    Sets the input file to use. Alternatively, you may pipe <stdin>.

参考文献

许可证

MIT License

Copyright (c) 2019-2020 Wilfried Kopp - Chevdor

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

依赖项

~1.5MB
~22K SLoC