XingQiang Bai

Results 14 issues of XingQiang Bai

https://github.com/wasmerio/wasmer support wasmer as engine

部署solidity[例子合约](https://solidity-cn.readthedocs.io/zh/develop/contracts.html#libraries),能成功部署,但调用revert。原因是合约bin中的库的地址没有被替换。 参考[这里](https://solidity-cn.readthedocs.io/zh/develop/using-the-compiler.html#commandline-compiler) >>>如果您的合约使用 libraries ,您会注意到在编译后的十六进制字节码中会包含形如 __LibraryName____ 的字符串。当您将 solc 作为链接器使用时,它会在下列情况中为你插入库的地址:要么在命令行中添加 --libraries "Math:0x12345678901234567890 Heap:0xabcdef0123456" 来为每个库提供地址,或者将这些字符串保存到一个文件中(每行一个库),并使用 --libraries fileName 参数。 ```solidity library Set { // 我们定义了一个新的结构体数据类型,用于在调用合约中保存数据。 struct Data { mapping(uint => bool) flags; }...

good first issue

Write ut in rust client, put 10240 kv pairs in one txn, the value is random bytes and length is 10240, the key is `format!("key_________________________{}", j)` which j is index...

enhancement