{"id":13651919,"url":"https://github.com/maxifom/eos-abigen","last_synced_at":"2026-01-12T02:04:51.339Z","repository":{"id":37029713,"uuid":"471967421","full_name":"maxifom/eos-abigen","owner":"maxifom","description":"CLI for generating type-safe clients for EOS-compatible contracts.","archived":false,"fork":false,"pushed_at":"2022-09-17T09:26:19.000Z","size":146,"stargazers_count":4,"open_issues_count":5,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-26T19:05:28.432Z","etag":null,"topics":["blockchain","code-generation","cryptocurrency","eos","eosio","generator","wax"],"latest_commit_sha":null,"homepage":"","language":"Go","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/maxifom.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}},"created_at":"2022-03-20T12:04:06.000Z","updated_at":"2022-07-18T15:57:02.000Z","dependencies_parsed_at":"2023-01-17T13:15:54.424Z","dependency_job_id":null,"html_url":"https://github.com/maxifom/eos-abigen","commit_stats":null,"previous_names":["maxifom/eos-abigen-go"],"tags_count":14,"template":false,"template_full_name":null,"purl":"pkg:github/maxifom/eos-abigen","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxifom%2Feos-abigen","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxifom%2Feos-abigen/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxifom%2Feos-abigen/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxifom%2Feos-abigen/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/maxifom","download_url":"https://codeload.github.com/maxifom/eos-abigen/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/maxifom%2Feos-abigen/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28331563,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-12T00:36:25.062Z","status":"online","status_checked_at":"2026-01-12T02:00:08.677Z","response_time":98,"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":["blockchain","code-generation","cryptocurrency","eos","eosio","generator","wax"],"created_at":"2024-08-02T02:00:53.456Z","updated_at":"2026-01-12T02:04:51.298Z","avatar_url":"https://github.com/maxifom.png","language":"Go","funding_links":[],"categories":["Developers"],"sub_categories":["Developer Tools"],"readme":"# eos-abigen\n\nCLI for generating type-safe clients for EOS-compatible contracts.\n\n## Features\n\n**Golang**:\n\n* Struct generation and Client generation for read-access get_table_rows with sensible defaults\n* Utility classes for Asset, ExtendedAsset, Symbol, time structs\n* Support for nested arrays and structs\n\n**Typescript**:\n\n* Struct generation and client generation for read-access using get_table_rows with sensible defaults\n* Action builder\n* Utility classes for Asset, ExtendedAsset, Symbol, time structs\n* Support for nested arrays and structs\n\n## Installing\n\nMacOS Intel:\n\n```shell\nwget https://github.com/maxifom/eos-abigen/releases/latest/download/eos-abigen_macos_amd64\nmv eos-abigen_macos_amd64 eos-abigen\nchmod +x eos-abigen\n```\n\nMacOS M1:\n\n```shell\nwget https://github.com/maxifom/eos-abigen/releases/latest/download/eos-abigen_macos_arm64\nmv eos-abigen_macos_arm64 eos-abigen\nchmod +x eos-abigen\n```\n\nLinux:\n\n```shell\nwget https://github.com/maxifom/eos-abigen/releases/latest/download/eos-abigen_linux_amd64\nmv eos-abigen_linux_amd64 eos-abigen\nchmod +x eos-abigen\n```\n\nWindows:\n\n```shell\nDownload https://github.com/maxifom/eos-abigen/releases/latest/download/eos-abigen_windows_amd64.exe\n```\n\nOr install using go install:\n\n```shell\ngo install github.com/maxifom/eos-abigen@latest\n```\n\n## Getting started\n\nTo get started you need a ABI JSON file for the contract. You can download it\nusing `eos-abigen get-contract \u003cCONTRACT_NAME\u003e` command. Note that default is `https://eos.greymass.com`, if you need\nanother chain specify RPC Node URL using `-u` param.\n\nAfter you have downloaded contract, generate code using `eos-abigen generate \u003cABI_JSON_PATH\u003e` for Golang\nand `eos-abigen generate-ts \u003cABI_JSON_PATH\u003e` for Typescript.\n\nAlso you can provide `.eos-abigen.yaml` config file and invoke generation using `eos-abigen generate`\nor `eos-abigen generate-ts` without arguments\n\nExample .eos-abigen.yaml:\n\n```yaml\ngenerate:\n  folder: generated # Folder to which save generated code from current dir\n  contracts:\n    - file: ./contracts/eosio.json # Path to ABI JSON file\n      name_override: eosio123 # Contract name override, it will be used for get_table_rows and Action builder\n    - file: /some/folder/contracts/eosio.json\n      name_override: eosio123\n```\n\n## Examples\nSee examples in [examples/contracts folder](./examples/contracts/) for example usage of generated files.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxifom%2Feos-abigen","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmaxifom%2Feos-abigen","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmaxifom%2Feos-abigen/lists"}