Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ethereum/sourcify
Decentralized Solidity contract source code verification service
https://github.com/ethereum/sourcify
contracts verification
Last synced: 2 days ago
JSON representation
Decentralized Solidity contract source code verification service
- Host: GitHub
- URL: https://github.com/ethereum/sourcify
- Owner: ethereum
- License: mit
- Created: 2019-04-24T08:23:22.000Z (over 5 years ago)
- Default Branch: staging
- Last Pushed: 2024-10-29T10:21:48.000Z (about 1 month ago)
- Last Synced: 2024-10-29T11:37:59.529Z (about 1 month ago)
- Topics: contracts, verification
- Language: TypeScript
- Homepage: https://sourcify.dev
- Size: 31.8 MB
- Stars: 780
- Watchers: 38
- Forks: 396
- Open Issues: 75
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-solidity - ethereum/sourcify - Re-compiler that can be used to verify that bytecode corresponds to certain source code. (Tools)
- awesome-solidity - ethereum/sourcify - Re-compiler that can be used to verify that bytecode corresponds to certain source code. (Tools)
- awesome-solidity - ethereum/sourcify - Re-compiler that can be used to verify that bytecode corresponds to certain source code. (Tools)
- best-of-crypto - GitHub - 10% open · ⏱️ 05.06.2024): (Smart Contract Platforms)
README
[![codecov](https://codecov.io/gh/ethereum/sourcify/branch/staging/graph/badge.svg?token=eN6XDAwWfV)](https://codecov.io/gh/ethereum/sourcify)
Sourcify ([sourcify.dev](https://sourcify.dev)) is a Solidity source code verification service for Ethereum smart contracts.
Different than other verification services, Sourcify leverages the [Solidity metadata](https://docs.sourcify.dev/docs/metadata/) file to ["fully verify"](https://docs.sourcify.dev/docs/full-vs-partial-match/) the contracts.
Sourcify mainly consists of:
- [sourcify-server](/services/server) - an HTTP server to do verifications and store the verified contracts for supported chains through an [API](https://docs.sourcify.dev/docs/api/)
- [sourcify-monitor](/services/monitor) - a standalone service that listens to various EVM chains for new contract creations and automatically submits them to a Sourcify API for verification.
- Packages:
- [@ethereum-sourcify/lib-sourcify](/packages/lib-sourcify/): The core library for Sourcify. It contains the logic to verify contracts.
- [@ethereum-sourcify/bytecode-utils](/packages/bytecode-utils/): A library to extract and parse the CBOR encoded metadata from the bytecode.
- [Sourcify UI](https://github.com/sourcifyeth/ui) - a web UI to interact with the server, lookup, and verify contractsThe project aims to serve as a public good infrastructure with fully open-source development and an [open and accessible contract repository](https://docs.sourcify.dev/docs/repository/) of verified contracts. Anyone can easily run their own Sourcify server and monitor to verify contracts on their own. We also aim to provide tooling to verify contracts easier on different platforms e.g. browers.
_ℹ️ [This monorepo](https://github.com/ethereum/sourcify) contains the main modules. The [sourcifyeth Github organization](https://github.com/sourcifyeth) contains all other auxiliary services and components._
## Documentation
For more details refer to [docs.sourcify.dev](https://docs.sourcify.dev/docs/intro/)
## Questions?
🔍 Check out docs [F.A.Q.](https://docs.sourcify.dev/docs/faq/) and use search in docs.
💬 Chat with us on [Matrix chat](https://matrix.to/#/#ethereum_source-verify:gitter.im) or [Discord](https://discord.gg/6aqd9cfZ9s)
🐦 Follow us and help us spread the word on [Twitter](https://twitter.com/SourcifyEth).
## Adding a new chain
If you'd like to add a new chain support to Sourcify please follow the [chain support instructions](https://docs.sourcify.dev/docs/chain-support/) in docs.