{"id":21529195,"url":"https://github.com/everx-labs/tvm-solidity-compiler","last_synced_at":"2025-04-04T22:05:07.151Z","repository":{"id":37402690,"uuid":"218948102","full_name":"everx-labs/TVM-Solidity-Compiler","owner":"everx-labs","description":"Solidity compiler for TVM","archived":false,"fork":false,"pushed_at":"2025-02-12T19:48:24.000Z","size":7239,"stargazers_count":126,"open_issues_count":10,"forks_count":73,"subscribers_count":12,"default_branch":"master","last_synced_at":"2025-03-28T21:06:31.926Z","etag":null,"topics":["blockchain","compiler","everos","everscale","smart-contracts","solidity","tvm","venom-blockchain","venom-developer-program"],"latest_commit_sha":null,"homepage":"","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/everx-labs.png","metadata":{"files":{"readme":"README.md","changelog":"Changelog.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-11-01T08:47:22.000Z","updated_at":"2025-01-26T04:02:41.000Z","dependencies_parsed_at":"2023-01-19T11:15:13.103Z","dependency_job_id":"8a9a74ed-0ac2-472c-9a34-b7f2d73da4e1","html_url":"https://github.com/everx-labs/TVM-Solidity-Compiler","commit_stats":null,"previous_names":["tonlabs/tvm-solidity-compiler","everx-labs/tvm-solidity-compiler"],"tags_count":40,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/everx-labs%2FTVM-Solidity-Compiler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/everx-labs%2FTVM-Solidity-Compiler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/everx-labs%2FTVM-Solidity-Compiler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/everx-labs%2FTVM-Solidity-Compiler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/everx-labs","download_url":"https://codeload.github.com/everx-labs/TVM-Solidity-Compiler/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247256110,"owners_count":20909240,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["blockchain","compiler","everos","everscale","smart-contracts","solidity","tvm","venom-blockchain","venom-developer-program"],"created_at":"2024-11-24T01:56:11.036Z","updated_at":"2025-04-04T22:05:07.134Z","avatar_url":"https://github.com/everx-labs.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cmeta name=\"title\" content=\"TVM-Solidity-Compiler\"\u003e\n\u003cmeta name=\"description\" content=\"Solidity compiler for TVM\"\u003e\n\u003cmeta name='keywords' content='compiler, smart-contracts, blockchain, solidity, tvm, everscale, everos, venom-blockchain, venom-developer-program'\u003e\n\n# The TVM Solidity compiler\n\n[![GitHub](https://img.shields.io/github/license/everx-labs/TVM-Solidity-Compiler?style=for-the-badge)](./LICENSE)\n[![Everscale](https://custom-icon-badges.demolab.com/badge/-everscale-13173e?style=for-the-badge\u0026logoColor=yellow\u0026logo=everscale)](https://everscale.network/)\n\n\nPort of the Solidity smart-contract [compiler](https://github.com/ethereum/solidity) generating TVM bytecode for TVM compatible blockchains (Everscale, Venom, Gosh, TON). Please refer to upstream README.md for information on the language itself.\n\n## TVM Solidity API reference\n\n[API documentation is here](https://github.com/everx-labs/TVM-Solidity-Compiler/blob/master/API.md)\n\n## Build and Install\n\n### Sold driver\n\nWe recommend using `sold` to compile smart-contracts. Documentation is available at [README.md](https://github.com/everx-labs/TVM-Solidity-Compiler/blob/master/sold/README.md).\n\n### Building compiler\n\nOriginal Instructions about how to build and install the Solidity compiler can be found in the [Solidity documentation](https://solidity.readthedocs.io/en/latest/installing-solidity.html#building-from-source).\n\n#### Ubuntu Linux\n\n```shell\ngit clone https://github.com/everx-labs/TVM-Solidity-Compiler\ncd TVM-Solidity-Compiler\nsh ./compiler/scripts/install_deps.sh\nmkdir build\ncd build\ncmake ../compiler/ -DCMAKE_BUILD_TYPE=Release\ncmake --build . -- -j8\n```\n\n#### Windows 10\n\nInstall Visual Studio Build Tools 2019, Git bash, cmake.\nRun Developer PowerShell for VS 2019\n\n```shell\ngit clone https://github.com/everx-labs/TVM-Solidity-Compiler\ncd TVM-Solidity-Compiler\ncompiler\\scripts\\install_deps.ps1\nmkdir build\ncd build\ncmake -DBOOST_ROOT=\"..\\compiler\\deps\\boost\\\" -DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded ..\\compiler\ncmake --build . --config Release -- /m\n```\n\n## Links\n\n * [Ever assembler and disassembler](https://github.com/everx-labs/ever-assembler)\n * [Code samples](https://github.com/everx-labs/samples/tree/master/solidity) in TVM Solidity\n * [ever-cli](https://github.com/everx-labs/ever-cli) command line interface for TVM compatible blockchains\n * Example of usage `ever-cli` for working (deploying, calling etc.) with TVM compatible blockchains can be found there: [Write smart contract in Solidity](https://docs.ton.dev/86757ecb2/p/950f8a-write-smart-contract-in-solidity)\n * [Changelog](./Changelog.md)\n\n## License\n[GNU GENERAL PUBLIC LICENSE Version 3](./LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feverx-labs%2Ftvm-solidity-compiler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Feverx-labs%2Ftvm-solidity-compiler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Feverx-labs%2Ftvm-solidity-compiler/lists"}