{"id":50760104,"url":"https://github.com/quiet-node/evm-disassembler-ts","last_synced_at":"2026-06-11T09:01:46.073Z","repository":{"id":208699510,"uuid":"721315134","full_name":"quiet-node/evm-disassembler-ts","owner":"quiet-node","description":"A lightweight EVM bytecode disassembler which performs static analysis on EVM bytecode to provide a higher level of abstraction for the bytecode than raw EVM operations.","archived":false,"fork":false,"pushed_at":"2024-04-18T02:32:04.000Z","size":66,"stargazers_count":1,"open_issues_count":1,"forks_count":1,"subscribers_count":2,"default_branch":"main","last_synced_at":"2024-05-29T17:23:13.168Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/quiet-node.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2023-11-20T20:00:25.000Z","updated_at":"2024-04-18T01:43:33.000Z","dependencies_parsed_at":"2024-01-08T16:47:21.208Z","dependency_job_id":null,"html_url":"https://github.com/quiet-node/evm-disassembler-ts","commit_stats":null,"previous_names":["quiet-node/evm-disassembler-ts"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/quiet-node/evm-disassembler-ts","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quiet-node%2Fevm-disassembler-ts","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quiet-node%2Fevm-disassembler-ts/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quiet-node%2Fevm-disassembler-ts/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quiet-node%2Fevm-disassembler-ts/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/quiet-node","download_url":"https://codeload.github.com/quiet-node/evm-disassembler-ts/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/quiet-node%2Fevm-disassembler-ts/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34190585,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-11T02:00:06.485Z","response_time":57,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":"2026-06-11T09:01:43.065Z","updated_at":"2026-06-11T09:01:46.063Z","avatar_url":"https://github.com/quiet-node.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# EVM Bytecode Disassmebler\n\nA highly lightweight EVM bytecode disassembler, this tool conducts static analysis on Ethereum Virtual Machine (EVM) bytecode. Its purpose is to offer a higher level of abstraction for the bytecode compared to raw EVM operations.\n\nAdditionally, the tool can automatically detect whether there is IPFS or Swarm hash CBOR-encoded metadata at the end of the bytecode and exclude it during disassembly.\n\n## Install the package\n\n```bash\n  npm install evm-disassembler\n```\n\n## Basic Usage\n\n```typescript\nimport { Disassembler } from 'evm-disassembler';\n\nconst BYTECODE = '6080604052603e80600f5f395ff3fe'; // or \"0x6080604052603e80600f5f395ff3fe\";\n\nconst disassembly = Disassembler.disassemble(BYTECODE);\n\nconsole.log(disassembly);\n// expected output:\n//  [\n//    { index16: '0x0', hex: '60', mnemonic: 'PUSH1', operand: [ '80' ] },\n//    { index16: '0x4', hex: '52', mnemonic: 'MSTORE', operand: [] },\n//    { index16: '0x2', hex: '60', mnemonic: 'PUSH1', operand: [ '40' ] },\n//    { index16: '0x5', hex: '60', mnemonic: 'PUSH1', operand: [ '3e' ] },\n//    { index16: '0x7', hex: '80', mnemonic: 'DUP1', operand: [] },\n//    { index16: '0x8', hex: '60', mnemonic: 'PUSH1', operand: [ '0f' ] },\n//    { index16: '0xa', hex: '5f', mnemonic: 'PUSH0', operand: [] },\n//    { index16: '0xb', hex: '39', mnemonic: 'CODECOPY', operand: [] },\n//    { index16: '0xc', hex: '5f', mnemonic: 'PUSH0', operand: [] },\n//    { index16: '0xd', hex: 'f3', mnemonic: 'RETURN', operand: [] },\n//    { index16: '0xe', hex: 'fe', mnemonic: 'INVALID', operand: [] }\n//  ]\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquiet-node%2Fevm-disassembler-ts","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fquiet-node%2Fevm-disassembler-ts","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fquiet-node%2Fevm-disassembler-ts/lists"}