{"id":15921040,"url":"https://github.com/dapplion/blob_share","last_synced_at":"2025-10-25T01:04:27.449Z","repository":{"id":208621261,"uuid":"720478943","full_name":"dapplion/blob_share","owner":"dapplion","description":"Protocol to share fractions of EIP-4844 blob space","archived":false,"fork":false,"pushed_at":"2024-01-04T16:14:33.000Z","size":1594,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-02-09T01:42:22.249Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://dapplion.github.io/blob_share/","language":"Rust","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/dapplion.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,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-11-18T16:02:48.000Z","updated_at":"2023-12-17T18:16:43.000Z","dependencies_parsed_at":"2023-11-22T13:28:37.107Z","dependency_job_id":"0a6020a5-1783-40e2-8f45-1303c00e36bd","html_url":"https://github.com/dapplion/blob_share","commit_stats":null,"previous_names":["dapplion/blob_share"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dapplion%2Fblob_share","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dapplion%2Fblob_share/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dapplion%2Fblob_share/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dapplion%2Fblob_share/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dapplion","download_url":"https://codeload.github.com/dapplion/blob_share/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246998351,"owners_count":20866721,"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":[],"created_at":"2024-10-06T20:00:25.397Z","updated_at":"2025-10-25T01:04:27.443Z","avatar_url":"https://github.com/dapplion.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Blob sharing protocol\n\nImplementation of trusted blob sharing protocol. Supports submissions via a permissionless API authenticated via ECDSA signatures. Publishers pre-pay credits via on-chain transfers. For complete rationale and design decisions, refer to https://hackmd.io/@dapplion/blob_sharing\n\n\u003cimg src=\"https://hackmd.io/_uploads/ByUbygIVT.png\" alt=\"drawing\" width=\"450\"/\u003e\n\n\u003c!-- HELP_START --\u003e\n```\nUsage: blobshare [OPTIONS] --database-url \u003cDATABASE_URL\u003e\n\nOptions:\n  -p, --port \u003cPORT\u003e\n          Name of the person to greet [env: PORT=] [default: 5000]\n  -b, --bind-address \u003cBIND_ADDRESS\u003e\n          Number of times to greet [env: BIND_ADDRESS=] [default: 127.0.0.1]\n      --eth-provider \u003cETH_PROVIDER\u003e\n          JSON RPC endpoint for an ethereum execution node [env: ETH_PROVIDER=] [default: ws://127.0.0.1:8546]\n      --eth-provider-interval \u003cETH_PROVIDER_INTERVAL\u003e\n          JSON RPC polling interval in miliseconds, used for testing [env: ETH_PROVIDER_INTERVAL=]\n      --starting-block \u003cSTARTING_BLOCK\u003e\n          First block for service to start accounting [env: STARTING_BLOCK=] [default: 0]\n      --data-dir \u003cDATA_DIR\u003e\n          Directory to persist anchor block finalized data [env: DATA_DIR=] [default: ./data]\n      --mnemonic \u003cMNEMONIC\u003e\n          Mnemonic for tx sender. If not set a random account will be generated. TODO: UNSAFE, handle hot keys better [env: MNEMONIC=]\n      --panic-on-background-task-errors\n          FOR TESTING ONLY: panic if a background task experiences an error for a single event [env: PANIC_ON_BACKGROUND_TASK_ERRORS=]\n      --finalize-depth \u003cFINALIZE_DEPTH\u003e\n          Consider blocks `finalize_depth` behind current head final. If there's a re-org deeper than this depth, the app will crash and expect to re-sync on restart [env: FINALIZE_DEPTH=] [default: 64]\n      --max-pending-transactions \u003cMAX_PENDING_TRANSACTIONS\u003e\n          Max count of pending transactions that will be sent before waiting for inclusion of the previously sent transactions. A number higher than the max count of blobs per block should not result better UX. However, a higher number risks creating transactions that can become underpriced in volatile network conditions [env: MAX_PENDING_TRANSACTIONS=] [default: 6]\n      --database-url \u003cDATABASE_URL\u003e\n          Database URL to mysql DB with format `mysql://user:password@localhost/test` [env: DATABASE_URL=]\n      --metrics\n          Enable serving metrics [env: METRICS=]\n      --metrics-port \u003cMETRICS_PORT\u003e\n          Metrics server port. If it's the same as the main server it will be served there [env: METRICS_PORT=] [default: 9000]\n      --metrics-bearer-token \u003cMETRICS_BEARER_TOKEN\u003e\n          Require callers to the /metrics endpoint to add Bearer token auth [env: METRICS_BEARER_TOKEN=]\n      --metrics-push-url \u003cMETRICS_PUSH_URL\u003e\n          Enable prometheus push gateway to the specified URL [env: METRICS_PUSH_URL=]\n      --metrics-push-interval-sec \u003cMETRICS_PUSH_INTERVAL_SEC\u003e\n          Customize push gateway frequency [env: METRICS_PUSH_INTERVAL_SEC=] [default: 15]\n      --metrics-push-basic-auth \u003cMETRICS_PUSH_BASIC_AUTH\u003e\n          Provide Basic Auth for push gateway requests [env: METRICS_PUSH_BASIC_AUTH=]\n      --metrics-push-format \u003cMETRICS_PUSH_FORMAT\u003e\n          Format to send push gateway metrics [env: METRICS_PUSH_FORMAT=] [default: protobuf] [possible values: protobuf, plain-text]\n  -h, --help\n          Print help\n  -V, --version\n          Print version\n\n```\n\u003c!-- HELP_END --\u003e\n\n## Usage\n\nWIP / unpublished\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdapplion%2Fblob_share","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdapplion%2Fblob_share","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdapplion%2Fblob_share/lists"}