Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/maxstalker/code-scout
Flow Network Mainnet Contract Explorer
https://github.com/maxstalker/code-scout
blockchain cadence explorer flow-network smart-contracts
Last synced: about 2 months ago
JSON representation
Flow Network Mainnet Contract Explorer
- Host: GitHub
- URL: https://github.com/maxstalker/code-scout
- Owner: MaxStalker
- License: gpl-3.0
- Created: 2021-12-12T16:58:22.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-09-28T12:57:04.000Z (over 2 years ago)
- Last Synced: 2023-04-05T01:51:05.515Z (over 1 year ago)
- Topics: blockchain, cadence, explorer, flow-network, smart-contracts
- Language: JavaScript
- Homepage: code-scout.vercel.app
- Size: 1.24 MB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Code Scout
Search Engine for Smart Contracts Deployed on Flow Network## Inspiration
Code Scout is inspired by amazing initiative of [SmartContract.Codes](https://hackmd.io/@T6Wf5EsOQKe-6wyPjJPtuw/ryEjJvUkB).## Problems
### Contract Verification
Currently Flow Network have a review system in place. Every project that wants to deploy it's contracts to mainnet need to submit them for a thorough review to ensure it won't harm users or network stability. In the near future the system will be lifted, which would predictably bring the influx of harmful code to the ecosystem.### Best Practices
New developers tend to invent their own "wheels" instead of using stable patterns. The goal for this tool is to enable search and highlight of suchs patterns in existings projects### Deployed Contract Address
Often times you are looking for an address of deployed contract. If you don't have any information, except for the name of the project or single contract.## Features
### Contract Grouping
Single project can use multiple contracts - one should be able to use inner tools to group them together.### Tagging
Select users - as well as original code owners - will be able to tag used patterns and add additional comments for blocks of code (think lyrics comments on [Genius](https://genius.com/Spice-genie-lyrics)### Lookup known transactions and script
You can copy/paste hash of known transaction and get information about what's happening inside of it. Ensuring you that it's safe to sign it, for example.## Solution
### How to look for deployed contracts
Whenever contract is deployed or upgraded - special system event is emitted:
- `flow.AccountContractAdded`
- `flow.AccountContractUpdated`## Prototype Stage Features
### Manual Entry
It should be possible to entry known addresses and contracts manually. It will be good to have this for a long standing contracts like FungibleToken and NonFungible tokens, which were added quite a long time ago.