{"id":13791905,"url":"https://github.com/otterscan/otterscan","last_synced_at":"2025-05-12T14:31:26.204Z","repository":{"id":37075385,"uuid":"382121439","full_name":"otterscan/otterscan","owner":"otterscan","description":"A blazingly fast, local, Ethereum block explorer built on top of Erigon","archived":false,"fork":false,"pushed_at":"2024-05-29T18:58:36.000Z","size":69817,"stargazers_count":1194,"open_issues_count":97,"forks_count":156,"subscribers_count":20,"default_branch":"develop","last_synced_at":"2024-05-29T22:07:26.728Z","etag":null,"topics":["blockchain","blockexplorer","ethereum"],"latest_commit_sha":null,"homepage":"https://otterscan.io","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/otterscan.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":"2021-07-01T18:22:12.000Z","updated_at":"2024-06-07T18:48:10.043Z","dependencies_parsed_at":"2023-11-06T12:25:41.697Z","dependency_job_id":"c6f98191-5b5c-411a-be08-f71c8696b5a1","html_url":"https://github.com/otterscan/otterscan","commit_stats":null,"previous_names":["wmitsuda/otterscan"],"tags_count":39,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/otterscan%2Fotterscan","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/otterscan%2Fotterscan/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/otterscan%2Fotterscan/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/otterscan%2Fotterscan/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/otterscan","download_url":"https://codeload.github.com/otterscan/otterscan/tar.gz/refs/heads/develop","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225139118,"owners_count":17426924,"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","blockexplorer","ethereum"],"created_at":"2024-08-03T22:01:05.653Z","updated_at":"2024-11-18T06:31:44.633Z","avatar_url":"https://github.com/otterscan.png","language":"TypeScript","funding_links":[],"categories":["I - Tools List","Open-source Explorers"],"sub_categories":[],"readme":"# Otterscan\n\nAn open-source, fast, local, laptop-friendly Ethereum block explorer.\n\nhttps://user-images.githubusercontent.com/28685/124196700-4fe71200-daa3-11eb-912c-b66494fe4b23.mov\n\n## Documentation\n\n\u003e 💡 For install instructions and a lot more, please take a look at our official documentation: [The Otterscan Book](https://docs.otterscan.io/)!\n\n## What?\n\nThis is an Ethereum block explorer designed to be run locally with an archive node companion, [Erigon](https://github.com/erigontech/erigon).\n\nThis approach brings many advantages, as follows.\n\n### Privacy\n\nYou are querying your own node, so you are not sending your IP address or queries to an external, third-party node.\n\n### Fast\n\nSince you are querying your local archive node, everything is fast. No network roundtrips are necessary.\n\n### Actually, very fast\n\nThis software was designed to be a companion of Erigon, a blazingly fast archive node.\n\n### Really, it is even faster\n\nThe standard web3 JSON-RPC methods are quite verbose and generic requiring many calls to gather many pieces of information at client side.\n\nWe've implemented some custom methods at the client level, so less information needs to be JSON-marshalled and transmitted over the network.\n\n## Why?\n\nCurrent offerings are either closed source or lack many features the most famous Ethereum block explorer has, or simply have high requirements like having an archive node + additional indexers.\n\nOtterscan requires only a mainline Erigon execution node and Otterscan itself (a simple React app), which makes it a laptop-friendly block explorer.\n\n## Why the name?\n\n3 reasons:\n\n- It is heavily based on Erigon, whose mascot is an otter (Erigon, the otter), think about an otter scanning your transactions inside blocks.\n- It is an homage to the most popular Ethereum block explorer.\n- The author loves wordplays and bad puns.\n\n## Kudos (in no particular order)\n\nWe make use of open-source software and integrate many public data sources, mainly:\n\nTo the [Geth](https://geth.ethereum.org/) team whose code Erigon is based on.\n\nTo the [Erigon](https://github.com/ledgerwatch/erigon) team that made it possible for regular humans to run an archive node on a retail laptop. Also, they have been very helpful explaining Erigon's internals which made the Otterscan modifications possible.\n\nTo the [Test in Prod](https://www.testinprod.io/) team that made OP-Erigon. Their effort made it possible to run Otterscan against any Optimism Superchain.\n\nTo the [mdbx](https://github.com/erthink/libmdbx) team which created the blazingly fast database that empowers Erigon.\n\nTo [Trust Wallet](https://github.com/trustwallet/assets) who sponsors and makes available their icons under a permissive license.\n\nTo the owners of the [4bytes repository](https://github.com/ethereum-lists/4bytes) that we import and use to translate method selectors to human-friendly strings.\n\nTo [Sourcify](https://sourcify.dev/), a public, decentralized source code and metadata verification service.\n\nTo [Ethers](https://github.com/ethers-io/ethers.js/), which is the client library we used to interact with the Erigon node. It is high-level enough to hide most JSON-RPC particularities but flexible enough to allow for easy interaction with custom methods.\n\n## License\n\nThis software itself is MIT licensed and redistributes MIT-compatible dependencies.\n\nThe Otterscan API is implemented inside Erigon and follow its own license (LPGL-3).\n\n## Getting in touch\n\n### Erigon Discord server\n\nOur Discord server: https://discord.gg/5xM2q2eqDz\n\nOtterscan also has a community channel under the \"ecosystem\" section of [Erigon's Discord](https://github.com/erigontech/erigon#erigon-discord-server) (invite should be requested).\n\n### X/Twitter\n\nOfficial X/Twitter account: ([@otterscan](https://x.com/otterscan)).\n\nFollow the creator on X/Twitter for more updates ([@wmitsuda](https://x.com/wmitsuda)).\n\n### Donation address\n\nIf you like this project, feel free to send donations to `otterscan.eth` on any EVM chain (it's an EOA).\n\nWe also participate regularly on Gitcoin Grants rounds.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fotterscan%2Fotterscan","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fotterscan%2Fotterscan","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fotterscan%2Fotterscan/lists"}