{"id":16391969,"url":"https://github.com/mikeshultz/solidbyte","last_synced_at":"2025-10-31T10:47:55.414Z","repository":{"id":33226513,"uuid":"153976538","full_name":"mikeshultz/solidbyte","owner":"mikeshultz","description":"Development toolkit for creating Ethereum smart contracts","archived":false,"fork":false,"pushed_at":"2023-07-25T17:47:10.000Z","size":47127,"stargazers_count":6,"open_issues_count":19,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-17T19:52:34.940Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://solidbyte.org","language":"Python","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/mikeshultz.png","metadata":{"files":{"readme":"README.md","changelog":null,"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":"2018-10-21T05:28:36.000Z","updated_at":"2023-08-24T11:35:14.000Z","dependencies_parsed_at":"2024-10-28T09:15:48.742Z","dependency_job_id":"cbdf98cc-23b5-4dc2-93e2-298221013ffa","html_url":"https://github.com/mikeshultz/solidbyte","commit_stats":{"total_commits":640,"total_committers":2,"mean_commits":320.0,"dds":0.0859375,"last_synced_commit":"4f29d02aa4d266786610c8f724a2b7deb37796ed"},"previous_names":[],"tags_count":70,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fsolidbyte","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fsolidbyte/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fsolidbyte/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mikeshultz%2Fsolidbyte/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mikeshultz","download_url":"https://codeload.github.com/mikeshultz/solidbyte/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244725585,"owners_count":20499633,"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":[],"created_at":"2024-10-11T04:48:04.991Z","updated_at":"2025-10-31T10:47:55.314Z","avatar_url":"https://github.com/mikeshultz.png","language":"Python","readme":"# solidbyte\n[![Build Status](https://travis-ci.org/mikeshultz/solidbyte.svg?branch=master)](https://travis-ci.org/mikeshultz/solidbyte) [![Coverage Status](https://coveralls.io/repos/github/mikeshultz/solidbyte/badge.svg?branch=master)](https://coveralls.io/github/mikeshultz/solidbyte?branch=master) [![Documentation Status](https://readthedocs.org/projects/solidbyte/badge/?version=latest)](https://solidbyte.readthedocs.io/en/latest/?badge=latest)\n\n**NOTE**: This project was experimental and is no longer updated.  You might be interested in checking out [Brownie](https://github.com/eth-brownie/brownie) or [Ape](https://github.com/ApeWorX/ape).\n\nDevelopment tools for creating Ethereum smart contracts.\n\nCurious what a Solidbyte project looks like?  Check out the [solidbyte-test-project](https://github.com/mikeshultz/solidbyte-test-project) repository.\n\n### What makes Solidbyte different?\n\n- **Local accounts** - Solidbyte can use the local accounts stored as Ethereum secretstore files located at `~/.ethereum/keystore`.  You do not need to trust the node you are using to handle your private keys and risk opening your account with `personal.unlock`.\n- **Python!** - Deploy scripts and tests are written using Python.\n- **EthPM support** - Well, it's in progress and not usable yet, but... it probably will be at some point.\n- **Vyper and Solidity support** -  Contracts written in either language can co-exist side by side with eachother in your project.\n- **Interactive python console** - Solidbyte provides a console with an insantiated Web3 object and your deployed contract instances.  Have I mentioned Python yet?\n- **Projcet templates** - You can initialize a project template with a single command that includes example deploy scripts, tests, and contracts.  Right now only 'bare' and 'erc20' templates are available, but I hope to add more.\n- **Contract testing with pytest** - Pytest is used for contract testing with some provided fixtures.  Something something Python.\n- **[eth_tester](https://github.com/ethereum/eth-tester/) support for testing** - It's super fast and really useful for first-pass testing.\n\n**NOTE**: Solidbyte has **only been tested on Linux**.  If you use another OS, please consider testing and [submit an issue](https://github.com/mikeshultz/solidbyte/issues/new) for any bugs you find.\n\n### What's in the future?\n\nSee the [roadmap](https://solidbyte.readthedocs.io/en/latest/devel/roadmap.html).\n\n## Demo\n\nHere's a brief demo (as of 2019-03-25) creating a new ERC20 token named MyToken:\n\n\u003cp align=\"center\"\u003e\u003cimg src=\"https://github.com/mikeshultz/solidbyte/raw/master/docs/images/sb-demo-20190326-full-min.gif?raw=true\" width=\"648px\"\u003e\u003c/p\u003e\n\n## Contents\n\n - [Documentation](https://solidbyte.readthedocs.io/)\n - [Command Reference](https://solidbyte.readthedocs.io/en/latest/commands.html)\n - [metafile.json](https://solidbyte.readthedocs.io/en/latest/metafile.html)\n - [networks.yml](https://solidbyte.readthedocs.io/en/latest/networks.html)\n - [SolidByte Development](https://solidbyte.readthedocs.io/en/latest/devel/index.html)\n\n## Quickstart\n\n### 1) Install Solidbyte\n\nSolidbyte requires some system-level libraries to be installed first.  Make sure openssl/libssl and libffi headers are installed before proceeding.  For more information, see the longer [installation docs](https://solidbyte.readthedocs.io/en/latest/install.html).\n\nFirst, install solidbyte.  The easiest way to do that is from [PyPi](https://pypi.org)\nwith `pip`.\n\n    pip install solidbyte\n\n### 2) Setup your project\n\nTo get your project going, create a directory for your project and change to it.\nMost `sb` commands need to be run from the root of your project directory.\n\n    mkdir myproject \u0026\u0026 cd myproject\n    sb init\n\nNow, all you should have a bare project structure created.  You could also\n`init` with [an available template](https://solidbyte.readthedocs.io/en/latest/templates.html),\nbut for the purposes of this doc, we're just going to create a bare structure.\n\nYour contracts should be in the `contracts` directory.  Your Solidity or Vyper\ncontracts can be in any directory under it.\n\nThe `deploy` directory will hold your [deployment scripts](https://solidbyte.readthedocs.io/en/latest/deployment.html).\n\nAnd `tests` will contain your [contract unit tests](https://solidbyte.readthedocs.io/en/latest/testing.html).\n\nThe `build` directory probably doesn't exist yet.  This will be created by\nsolidbyte when necessary.\n\nYou can also create scripts to be run by Solidbyte in the `scripts` directory.\nThey must be implemented [according to the documentation](https://solidbyte.readthedocs.io/en/latest/script.html).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikeshultz%2Fsolidbyte","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmikeshultz%2Fsolidbyte","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmikeshultz%2Fsolidbyte/lists"}