{"id":21643919,"url":"https://github.com/application-research/delta","last_synced_at":"2025-07-28T05:04:47.573Z","repository":{"id":148124584,"uuid":"598243491","full_name":"application-research/delta","owner":"application-research","description":"Filecoin deal proposal / making service","archived":false,"fork":false,"pushed_at":"2023-09-12T13:26:16.000Z","size":16553,"stargazers_count":16,"open_issues_count":28,"forks_count":4,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-11T18:21:42.225Z","etag":null,"topics":["archive","deal","filecoin","making","storage","storagedeal"],"latest_commit_sha":null,"homepage":"","language":"Go","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/application-research.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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-02-06T17:49:02.000Z","updated_at":"2024-02-05T16:53:09.000Z","dependencies_parsed_at":"2024-06-21T19:08:17.959Z","dependency_job_id":"e9aa84ce-c1f0-4a81-a6f9-8053f0e1da50","html_url":"https://github.com/application-research/delta","commit_stats":null,"previous_names":[],"tags_count":9,"template":false,"template_full_name":null,"purl":"pkg:github/application-research/delta","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/application-research%2Fdelta","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/application-research%2Fdelta/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/application-research%2Fdelta/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/application-research%2Fdelta/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/application-research","download_url":"https://codeload.github.com/application-research/delta/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/application-research%2Fdelta/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":267464522,"owners_count":24091505,"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","status":"online","status_checked_at":"2025-07-28T02:00:09.689Z","response_time":68,"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":["archive","deal","filecoin","making","storage","storagedeal"],"created_at":"2024-11-25T05:36:53.377Z","updated_at":"2025-07-28T05:04:47.547Z","avatar_url":"https://github.com/application-research.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CodeQL](https://img.shields.io/github/actions/workflow/status/application-research/delta/codeql.yml?label=CodeQL\u0026style=for-the-badge)](https://github.com/application-research/delta/actions/workflows/codeql.yml)\n[![Release](https://img.shields.io/github/v/release/application-research/delta?display_name=release\u0026style=for-the-badge)](https://github.com/application-research/delta/releases)\n\n# Δ Delta\nFilecoin Storage Deal Making Service\n\nDelta is a deal-making service that enables users to make deals with Storage Providers. It is an application that allows users to upload files to the Filecoin network and get them stored by Storage Providers.\n\n---\n\n![image](https://user-images.githubusercontent.com/4479171/226853191-e19e8fa4-abc1-4652-970f-d3d6cea0df13.png)\n\nFor more information, check out the [docs](docs)\n\n---\n\n# Build and Run Delta\n\n## Prepare to `build`\nCopy the `.env.example` file to `.env` and update the values as needed.\n\n```\n# Node info\nNODE_NAME=stg-deal-maker\nNODE_DESCRIPTION=Experimental Deal Maker\nNODE_TYPE=delta-main\n\n# Database configuration\nMODE=standalone\nDB_DSN=delta.db\n#REPO=/mnt/.whypfs # shared mounted repo\n\n# Frequencies\nMAX_CLEANUP_WORKERS=1500\n```\n\n## Install and run `Delta` using `docker`\n\nRunning this the first time will generate a wallet. Make sure to get FIL/DataCap from the [faucet](https://verify.glif.io/) and fund the wallet\n\nMake sure you have docker installed on your machine.\n\n### Run the current delta clone using docker-compose\nIf you already have a wallet with datacap, you can pass it to the command below. This copies over the wallet directory to the containerized app and sets it as the default wallet.\n```\nmake docker-compose-run WALLET_DIR=\u003cwalletdir\u003e\n```\n\n**Check localhost**\n\nYou can check the localhost to see if the delta app is running\n```\ncurl --location --request GET 'http://localhost:1414/open/node/info'\n```\n\n**Next**\n\nNow that you can access a live Delta node, you are now ready to make a deal. You can now go to the following guides:\n\n- [Make an e2e deal](docs/make-e2e-deal.md)\n- [Make an import deal](docs/make-import-deal.md)\n\n\n### Run a specific docker image tag from the docker hub artifactory\nWe have a few pre-built images on the docker hub artifactory. You can run the following command to run a specific image tag\n```\ncd docker\n./run.sh \u003cTAG\u003e \n```\nNote: no tag means it'll just get the latest image.\n\n## Install, build from source and run `Delta`\n### Install the following pre-req\n- go 1.19\n- [jq](https://stedolan.github.io/jq/)\n- [hwloc](https://www.open-mpi.org/projects/hwloc/)\n- opencl\n- [rustup](https://rustup.rs/)\n- postgresql\n\nAlternatively, if using Ubuntu, you can run the following commands to install the pre-reqs\n```\napt-get update \u0026\u0026 \\\napt-get install -y wget jq hwloc ocl-icd-opencl-dev git libhwloc-dev pkg-config make \u0026\u0026 \\\napt-get install -y cargo\n```\n\n### Using `make`\n```\nmake all\n./delta daemon --repo=.whypfs --wallet-dir=\u003cwalletdir\u003e\n```\n\n### Using `go build`\n```\ngo build -tags netgo -ldflags '-s -w' -o delta\n./delta daemon --repo=.whypfs --wallet-dir=\u003cwalletdir\u003e\n```\n\n## Run `Delta`\n```\n./delta daemon --mode=standalone\n```\n\n## Test the API server\nTry the following endpoints to test the API server\n```\ncurl --location --request GET 'http://localhost:1414/open/node/info'\ncurl --location --request GET 'http://localhost:1414/open/node/peers'\ncurl --location --request GET 'http://localhost:1414/open/node/host'\n```\n\nIf it return the following, then the API server is working\n```\n{\"name\":\"stg-deal-maker\",\"description\":\"Experimental Deal Maker\",\"type\":\"delta-main\"}\n```\n\n\n# Getting Started with `Delta`\nTo get started with `Delta`, you can follow the following guides [here](docs)\n\n## Author\nProtocol Labs Outercore Engineering.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapplication-research%2Fdelta","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapplication-research%2Fdelta","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapplication-research%2Fdelta/lists"}