Solidity编译器的python sintax问题

发布于 2025-01-20 20:02:12 字数 986 浏览 2 评论 0原文

我的问题与Python有关。我想使用Python编译固体文件。但是出现错误。

    import json


from solcx import compile_standard, install_solc



with open("./SimpleStorage.sol", "r") as file:
    simple_storage_file = file.read()



# Solidity source code
compiled_sol = compile_standard(
    {
        "language": "Solidity",
        "sources": {"SimpleStorage.sol": {"content": simple_storage_file}},
        "settings": {
            "outputSelection": {
                "*": {
                    "*": ["abi", "metadata", "evm.bytecode", "evm.bytecode.sourceMap"]
                }
            }
        },
    },
    solc_version="0.9.0",
)

with open("compiled_code.json", "w") as file:
    json.dump(compiled_sol, file)

**第一个python我会在其中遇到错误和第二固体,其'fine **

在此处输入图像说明

在此处输入图像描述

I have problem connected to python. I want to compile solidity files using python. But getting error.

    import json


from solcx import compile_standard, install_solc



with open("./SimpleStorage.sol", "r") as file:
    simple_storage_file = file.read()



# Solidity source code
compiled_sol = compile_standard(
    {
        "language": "Solidity",
        "sources": {"SimpleStorage.sol": {"content": simple_storage_file}},
        "settings": {
            "outputSelection": {
                "*": {
                    "*": ["abi", "metadata", "evm.bytecode", "evm.bytecode.sourceMap"]
                }
            }
        },
    },
    solc_version="0.9.0",
)

with open("compiled_code.json", "w") as file:
    json.dump(compiled_sol, file)

**first python where I get error and second solidity its' fine **

enter image description here

enter image description here

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三生池水覆流年 2025-01-27 20:02:12

目前还没有 0.9.0 solc 版本。检查官方版本列表并使用可用的版本。如果你想使用最新的,请将代码修改为:

solc_version="0.8.13",

There isn't 0.9.0 solc version yet. Check official releases list and use available one. If you want to use the latest one, modify you code into:

solc_version="0.8.13",
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文