{"id":45069373,"url":"https://github.com/checkernetwork/spark-evaluations-recent-participants","last_synced_at":"2026-02-19T12:01:46.630Z","repository":{"id":256619915,"uuid":"855950171","full_name":"CheckerNetwork/spark-evaluations-recent-participants","owner":"CheckerNetwork","description":"Smart contract exposing recent participant ids in the Spark network","archived":false,"fork":false,"pushed_at":"2025-04-05T07:13:35.000Z","size":252,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-19T09:54:02.579Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/CheckerNetwork.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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":"2024-09-11T18:14:55.000Z","updated_at":"2025-04-05T07:13:32.000Z","dependencies_parsed_at":"2024-09-12T04:31:10.750Z","dependency_job_id":"3c7ccc87-c4af-4f3d-84df-0777a9387e27","html_url":"https://github.com/CheckerNetwork/spark-evaluations-recent-participants","commit_stats":null,"previous_names":["filecoin-station/spark-evaluations-recent-participants","checkernetwork/spark-evaluations-recent-participants"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/CheckerNetwork/spark-evaluations-recent-participants","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Fspark-evaluations-recent-participants","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Fspark-evaluations-recent-participants/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Fspark-evaluations-recent-participants/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Fspark-evaluations-recent-participants/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/CheckerNetwork","download_url":"https://codeload.github.com/CheckerNetwork/spark-evaluations-recent-participants/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/CheckerNetwork%2Fspark-evaluations-recent-participants/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29612509,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T10:52:55.328Z","status":"ssl_error","status_checked_at":"2026-02-19T10:52:26.323Z","response_time":117,"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":"2026-02-19T12:01:34.304Z","updated_at":"2026-02-19T12:01:46.618Z","avatar_url":"https://github.com/CheckerNetwork.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# spark-evaluations: Recent Participants\n\nSmart contract exposing recent participant ids in the Spark network.\n\nContract deployed at `0xffac3d46e0adfd7806c454b23c3c74d95e09bb02`.\n\n## API\n\n### constructor (address owner)\n\n### .get() public view (address[])\n\nGet all recent participants.\n\n### .set(uint date, address[] participants) public\n\nOwner only. Set participants for given date (0-30).\n\n## Development\n\nThis repo requires Rust and Cargo, which can be installed from\n[here](https://doc.rust-lang.org/book/ch01-01-installation.html)\n\n##### Install Foundry\n\nWe recommend you install it from source:\n\n```bash\ngit clone https://github.com/foundry-rs/foundry\ncd foundry\ngit checkout 9a4bb7f5\n# install cast + forge\ncargo install --path ./cli --profile local --bins --locked --force\n# install anvil\ncargo install --path ./anvil --profile local --locked --force\n```\n\n##### Clone Repo and Install\n\n```bash\ngit clone https://github.com/filecoin-station/spark-impact-evaluator.git\ncd spark-impact-evaluator\ngit submodule update --init --recursive\nforge test\n```\n\n## Node.js API\n\n```js\nimport * as SparkEvaluationsRecentParticipants from '@filecoin-station/spark-evaluations-recent-participants'\n\nconsole.log({\n  abi: SparkEvaluationsRecentParticipants.ABI,\n  address: SparkEvaluationsRecentParticipants.ADDRESS\n})\n```\n\n\n## Deployment\n\nThe deployment relies on contract bindings generated in the `/contract-bindings`\ndirectory. If you make changes to the contracts, run:\n\n```bash\nrm -rf contract-bindings\nforge bind  --crate-name contract-bindings -b ./contract-bindings\n```\n\nThis will create new bindings with the modified contracts.\n\nDeployment can then proceed either with a locally stored mnemonic or a connected\nethereum ledger wallet. To use with a mnemonic, create a `secrets/mnemonic` file\nin the root directory.\n\nTo deploy, run:\n\n```bash\n(cd contract-utils \u0026\u0026 cargo run)\n```\n\n## Tests\n\n#### Integration Tests\n\nIntegration tests run on the filecoin calibration net and require a wallet with\ntest FIL to pay for gas fees on the calibration net. Test FIL is free and can be\nobtained using the [faucet](https://faucet.calibration.fildev.network/).\n\nBefore running integration tests, these env vars are required:\n\n```bash\nexport TEST_RPC_URL=https://api.calibration.node.glif.io/rpc/v1\nexport TEST_MNEMONIC={insert wallet mnemonic here}\nexport TEST_CONTRACT_ADDRESS={this can be an empty string}\n```\n\nTo run tests, run:\n\n```bash\ncd contract-utils\ncargo test  -- --nocapture --test-threads 1\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheckernetwork%2Fspark-evaluations-recent-participants","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcheckernetwork%2Fspark-evaluations-recent-participants","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcheckernetwork%2Fspark-evaluations-recent-participants/lists"}