{"id":13651345,"url":"https://github.com/wharfkit/antelope","last_synced_at":"2026-02-17T13:34:01.373Z","repository":{"id":41863891,"uuid":"270297983","full_name":"wharfkit/antelope","owner":"wharfkit","description":"Core types, client interfaces, and other tools for working with Antelope-based blockchains.","archived":false,"fork":false,"pushed_at":"2025-07-28T19:46:19.000Z","size":5324,"stargazers_count":46,"open_issues_count":18,"forks_count":27,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-12-31T05:19:29.711Z","etag":null,"topics":["antelope","antelopelo","blockchain","eosio"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wharfkit.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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,"zenodo":null}},"created_at":"2020-06-07T12:22:10.000Z","updated_at":"2025-11-12T17:48:34.000Z","dependencies_parsed_at":"2024-01-03T05:13:35.109Z","dependency_job_id":"d49147e7-9c30-4f2b-9603-c7574513f26d","html_url":"https://github.com/wharfkit/antelope","commit_stats":null,"previous_names":["wharfkit/antelope","greymass/eosio-core","greymass/eosio"],"tags_count":103,"template":false,"template_full_name":null,"purl":"pkg:github/wharfkit/antelope","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fantelope","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fantelope/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fantelope/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fantelope/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wharfkit","download_url":"https://codeload.github.com/wharfkit/antelope/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wharfkit%2Fantelope/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29321276,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-10T20:44:44.282Z","status":"ssl_error","status_checked_at":"2026-02-10T20:44:43.393Z","response_time":65,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["antelope","antelopelo","blockchain","eosio"],"created_at":"2024-08-02T02:00:48.317Z","updated_at":"2026-02-17T13:34:01.349Z","avatar_url":"https://github.com/wharfkit.png","language":"TypeScript","funding_links":[],"categories":["Developers"],"sub_categories":["Libraries and Frameworks"],"readme":"**NOTICE:** This was formerly the `@greymass/eosio` library distributed on [npmjs](https://www.npmjs.com/package/@greymass/eosio). Future distributions will be made using the new organization and namespace, and distributed as `@wharfkit/antelope` again on [npmjs](https://www.npmjs.com/package/@wharfkit/antelope).\n\nTo update your codebase, remove the `@greymass/eosio` library and add the `@wharfkit/antelope` library, then replace all instances of `@greymass/eosio` with `@wharfkit/antelope` in all files.\n\n# @wharfkit/antelope\n\nJavaScript library for working with Antelope powered blockchains (formerly EOSIO, still compatible with EOSIO).\n\nAvaiable on npm: https://www.npmjs.com/package/@wharfkit/antelope\n\n## Install\n\n```\nnpm install @wharfkit/antelope\n```\n\n## API Documentation\n\nhttps://wharfkit.github.io/antelope/\n\n## Documentation\n\nDocumentation beyond the automatically generated API documentation above is currently incomplete. Until full documentation is complete, the tests themselves provide good reference material on how to do nearly everything.\n\nhttps://github.com/wharfkit/antelope/tree/master/test\n\nMore:\n\n-   Using APIs: https://github.com/wharfkit/antelope/blob/master/test/api.ts\n-   Serialization: https://github.com/wharfkit/antelope/blob/master/test/serializer.ts\n-   Crypto Operations: https://github.com/wharfkit/antelope/blob/master/test/crypto.ts\n-   Primitive Data Types: https://github.com/wharfkit/antelope/blob/master/test/chain.ts\n\n## Reporting Issues\n\nIf you think you've found an issue with this codebase, please submit a pull request with a failing unit test to better help us reproduce and understand the issue you are experiencing.\n\nTo do this, fork this repository and create your own branch. In this new branch, use the test scaffolding at the path below to write code that either fails to execute, throws an error, or doesn't return the anticipated response.\n\n```\n./test/bug-report.ts\n```\n\nThis specific test can be run within the root project folder either using `make`:\n\n```bash\ngrep=\"bug-report\" make test\n```\n\nOr running `mocha` directly from the installed `./node_modules` folder:\n\n```bash\nTS_NODE_PROJECT='./test/tsconfig.json' ./node_modules/.bin/mocha -u tdd -r ts-node/register -r tsconfig-paths/register --extension ts test/*.ts --grep=\"bug-report\"\n```\n\nOnce your test is failing and successfully shows the issue occurring, please submit a pull request to this repository. Feel free to include any additional details in the body of the pull request that might help us understand the situation.\n\n\u003e NOTE: If you are performing API requests from within unit tests, you will need to prepend `MOCK_RECORD=true` to the above commands in order instruct the test running to execute and cache the API request. Any subsequent API requests will utilize this cache to prevent the test from continously accessing API endpoints. Prefixing your command with `MOCK_RECORD=overwrite` is also possible which forces the test to ignore the cache and fetch new data.\n\n## Running Tests\n\n### Run the unit test suite:\n\n```\nmake test\n```\n\n### Run the unit test suite with coverage:\n\n```\nmake coverage\n```\n\nThe report for the current version can also be found at: https://wharfkit.github.io/antelope/coverage/\n\n### Run the test suite in a browser:\n\n```\nmake browser-test\n```\n\nThe browser test suite for the current version of the library is available at: https://wharfkit.github.io/antelope/tests.html\n\n## Debugging\n\nInstructions and notes on debugging typescript in your IDE. Explains how to match the Mocha test configuration found in the Makefile.\n\n[Notes on setting up IDE Debuggers](docs/IDE_Debug.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwharfkit%2Fantelope","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwharfkit%2Fantelope","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwharfkit%2Fantelope/lists"}