{"id":30686554,"url":"https://github.com/roswelly/solana-transaction-crawler","last_synced_at":"2026-05-15T21:04:33.172Z","repository":{"id":309622976,"uuid":"1036518787","full_name":"roswelly/solana-transaction-crawler","owner":"roswelly","description":"crawl \u0026 parse solana transaction","archived":false,"fork":false,"pushed_at":"2025-08-12T07:38:44.000Z","size":13,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-12T23:40:19.763Z","etag":null,"topics":["crawler","parser","rust","solana","transaction"],"latest_commit_sha":null,"homepage":"","language":"Rust","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/roswelly.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,"zenodo":null}},"created_at":"2025-08-12T07:36:25.000Z","updated_at":"2025-08-12T07:43:34.000Z","dependencies_parsed_at":"2025-08-12T23:40:23.104Z","dependency_job_id":"4091e48b-a97c-4b9b-bf10-4fb1e59240b7","html_url":"https://github.com/roswelly/solana-transaction-crawler","commit_stats":null,"previous_names":["roswelly/solana-transaction-crawler"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/roswelly/solana-transaction-crawler","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roswelly%2Fsolana-transaction-crawler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roswelly%2Fsolana-transaction-crawler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roswelly%2Fsolana-transaction-crawler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roswelly%2Fsolana-transaction-crawler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/roswelly","download_url":"https://codeload.github.com/roswelly/solana-transaction-crawler/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/roswelly%2Fsolana-transaction-crawler/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273203283,"owners_count":25063279,"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-09-01T02:00:09.058Z","response_time":120,"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":["crawler","parser","rust","solana","transaction"],"created_at":"2025-09-01T23:05:44.774Z","updated_at":"2026-05-15T21:04:28.129Z","avatar_url":"https://github.com/roswelly.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"## Crawl solana transaction\n\n```rust\nuse anyhow::Result;\nuse solana_client::rpc_client::RpcClient;\nuse solana_transaction_crawler::{\n    crawler::{Crawler, IxAccount},\n    filters::{IxNumberAccounts, SuccessfulTxFilter, TxHasProgramId},\n};\nuse solana_program::pubkey;\n\n#[tokio::main]\nasync fn main() -\u003e Result\u003c()\u003e {\n    let client = RpcClient::new(\"https://rpc.ankr.com/solana\");\n    let candy_machine_id = pubkey!(\"9MynErYQ5Qi6obp4YwwdoDmXkZ1hYVtPUqYmJJ3rZ9Kn\");\n    let mut crawler = Crawler::new(client, candy_machine_id);\n    let has_program_id = TxHasProgramId::new(\"cndyAnrLdpjq1Ssp1z8xxDsB8dxe7u4HL5Nxi2K5WXZ\");\n\n    let successful_tx = SuccessfulTxFilter;\n    let ix_num_accounts = IxNumberAccounts::EqualTo(14);\n    let mint_account = IxAccount::unparsed(\"mint\", 5);\n\n    crawler\n        .add_tx_filter(has_program_id)\n        .add_tx_filter(successful_tx)\n        .add_ix_filter(ix_num_accounts)\n        .add_account_index(mint_account);\n\n    let crawled_accounts = crawler.run().await?;\n    \n    let mint_addresses = \u0026crawled_accounts[\"mint\"];\n    println!(\"Items found: {:?}\", mint_addresses.len());\n\n    Ok(())\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froswelly%2Fsolana-transaction-crawler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Froswelly%2Fsolana-transaction-crawler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Froswelly%2Fsolana-transaction-crawler/lists"}