我正在尝试部署OpenZeppelin PaymentSplitter.sol,但在Remix中遇到以下错误:
creation of PaymentSplitter errored: Error encoding arguments: Error: expected array value (arg="", coderType="array", type="string", value="0x075e829D8420786210b728df8D75CE2E5375A57a")
我尝试通过:
"0x075e829D8420786210b728df8D75CE2E5375A57a",10 (I believe this should the correct way)
"0x075e829D8420786210b728df8D75CE2E5375A57a", 10
0x075e829D8420786210b728df8D75CE2E5375A57a,10
"0x075e829D8420786210b728df8D75CE2E5375A57a", "10"
但是每个错误都会产生相同的错误。
请问有人能解释为什么它不起作用吗?
预先感谢
答案 0 :(得分:0)
期望的参数位于数组中,因此,如果您想传递上述值,请像这样传递:
[0x075e829D8420786210b728df8D75CE2E5375A57a], [10]
希望有帮助!