{"id":26130592,"url":"https://github.com/emeraldpay/dshackle-archive-avro","last_synced_at":"2026-02-17T18:03:14.280Z","repository":{"id":81904178,"uuid":"448433834","full_name":"emeraldpay/dshackle-archive-avro","owner":"emeraldpay","description":null,"archived":false,"fork":false,"pushed_at":"2022-01-16T02:06:52.000Z","size":65,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-10-07T11:45:49.847Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/emeraldpay.png","metadata":{"files":{"readme":"README.adoc","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":"2022-01-16T01:50:25.000Z","updated_at":"2024-12-02T02:57:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"d4e649b6-aa9a-4b6e-96f8-8e45ffeb2077","html_url":"https://github.com/emeraldpay/dshackle-archive-avro","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/emeraldpay/dshackle-archive-avro","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emeraldpay%2Fdshackle-archive-avro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emeraldpay%2Fdshackle-archive-avro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emeraldpay%2Fdshackle-archive-avro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emeraldpay%2Fdshackle-archive-avro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/emeraldpay","download_url":"https://codeload.github.com/emeraldpay/dshackle-archive-avro/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/emeraldpay%2Fdshackle-archive-avro/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29552249,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-17T17:56:56.811Z","status":"ssl_error","status_checked_at":"2026-02-17T17:56:55.544Z","response_time":100,"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":[],"created_at":"2025-03-10T20:51:56.642Z","updated_at":"2026-02-17T18:03:14.270Z","avatar_url":"https://github.com/emeraldpay.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"= Dshackle Archive Avro definitions\n:lib-version: 0.1\n\nAvro schema definitions for Dshackle Archive files.\n\n== Fields Description\n\n=== Block\n\n.Fields common between different blockchains\n- `blockchainType` - _type of blockchain_, as a definitions of what fields to expect.\nOne of `ETHEREUM` or `BITCOIN`\n- `blockchainId` - actual blockchain id (`ETH`, `BTC`, etc)\n- `archiveTimestamp` - when the archive record was created.\nMilliseconds since epoch\n- `height` - block height\n- `blockId` - block hash\n- `timestamp` - block timestamp.\nMilliseconds since epoch\n- `parentId` - parent block hash\n- `json` - JSON response for that block\n\n.Ethereum specific fields\n- `unclesCount` - number of uncles for the current block\n- `uncle0Json` - JSON for first uncle (`eth_getUncleByBlockHashAndIndex(0)`)\n- `uncle1Json` - JSON for second uncle (`eth_getUncleByBlockHashAndIndex(1)`)\n\n.Bitcoin specific fields\n- none\n\n=== Transaction\n\n.Fields common between different blockchains\n- `blockchainType` - _type of blockchain_, as a definitions of what fields to expect.\nOne of `ETHEREUM` or `BITCOIN`\n- `blockchainId` - actual blockchain id (`ETH`, `BTC`, etc)\n- `archiveTimestamp` - when the archive record was created.\nMilliseconds since epoch\n- `height` - block height\n- `blockId` - block hash\n- `timestamp` - block timestamp.\nMilliseconds since epoch\n- `index` - index of the transaction in block\n- `txid` - hash or transaction id of the transaction\n- `json` - JSON response for that transaction\n- `raw` - raw bytes of the transaction\n\n.Ethereum specific fields\n- `from` - from address\n- `to` - to address\n- `receiptJson` - JSON response for `eth_getTransactionReceipt`\n- `traceJson` - JSON response for `trace_replayTransaction(trace)`\n- `stateDiffJson` - JSON response for `trace_replayTransaction(stateDiff)`\n\n.Bitcoin specific fields\n- none\n\nSee `src/main/avro` for actual Avro definitions.\n\n== Java Stubs\n\nTo use Java generated stubs use:\n\n[source,groovy,subs=\"attributes\"]\n----\nrepositories {\n    maven { url  \"https://maven.emrld.io\" }\n}\n\ndependencies {\n    implementation 'io.emeraldpay.dshackle.archive:dshackle-archive-avro:{lib-version}'\n}\n----\n\nGenerated classes to access Avro messages:\n\n- `io.emeraldpay.dshackle.archive.avro.Block`\n- `io.emeraldpay.dshackle.archive.avro.Transaction`\n\n== License\n\nCopyright 2022 EmeraldPay, Inc\n\nLicensed under the Apache License, Version 2.0 (the \"License\"); you may not use this file except in compliance with the License.\nYou may obtain a copy of the License at\n\nhttp://www.apache.org/licenses/LICENSE-2.0\n\nUnless required by applicable law or agreed to in writing, software distributed under the License is distributed on an \"AS IS\" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\nSee the License for the specific language governing permissions and limitations under the License.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femeraldpay%2Fdshackle-archive-avro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Femeraldpay%2Fdshackle-archive-avro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Femeraldpay%2Fdshackle-archive-avro/lists"}