{"id":16259700,"url":"https://github.com/xdagger/xmrig2xdag","last_synced_at":"2025-07-04T19:32:17.978Z","repository":{"id":150124203,"uuid":"440711878","full_name":"XDagger/xmrig2xdag","owner":"XDagger","description":"XMRig2XDAG is  a stratum proxy for Monero (XMR) miners mining XDAG coins ","archived":false,"fork":false,"pushed_at":"2023-08-26T12:06:06.000Z","size":223,"stargazers_count":18,"open_issues_count":8,"forks_count":7,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-28T21:25:35.420Z","etag":null,"topics":["dag","miner","monero","proxy","randomx","startum","xdag","xdagger","xmr","xmrig","xmrig2xdag"],"latest_commit_sha":null,"homepage":"","language":"Go","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/XDagger.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":"2021-12-22T02:41:42.000Z","updated_at":"2025-01-16T04:56:22.000Z","dependencies_parsed_at":"2024-06-19T06:16:18.221Z","dependency_job_id":"90f51138-c5d7-488c-a7f7-d5818224b5af","html_url":"https://github.com/XDagger/xmrig2xdag","commit_stats":{"total_commits":78,"total_committers":3,"mean_commits":26.0,"dds":"0.15384615384615385","last_synced_commit":"972a9b3c75fce7daa82d6f1abede0028014ab385"},"previous_names":["swordlet/xmrig2xdag"],"tags_count":22,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XDagger%2Fxmrig2xdag","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XDagger%2Fxmrig2xdag/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XDagger%2Fxmrig2xdag/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/XDagger%2Fxmrig2xdag/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/XDagger","download_url":"https://codeload.github.com/XDagger/xmrig2xdag/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244029383,"owners_count":20386397,"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":["dag","miner","monero","proxy","randomx","startum","xdag","xdagger","xmr","xmrig","xmrig2xdag"],"created_at":"2024-10-10T16:04:23.813Z","updated_at":"2025-03-19T22:30:56.273Z","avatar_url":"https://github.com/XDagger.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# XMRig2XDAG\n\nXMRig2XDAG is a stratum proxy for  Monero (XMR) miners mining XDAG coins. \n\nXMRig2XDAG is translator between XMR stratum protocol and XDAG mining protocol. Written in Go.\n\nXMRig can connect to XDAG mining pool through XMRig2XDAG proxy.\n\nXDAG and XMR are using the same mining algorithm: RandomX.\n\nXMRig2XDAG is Working with XMRig fork  https://github.com/swordlet/xmrig/tree/xdag.\n\n# Build\n## under server folder\n\n    $ go mod tidy\n    $ go build\n\n# Guide\nstart up command line and configure file\n\n## start up\nstart up  xmrig2xdag proxy and xmrig miner\n\n### proxy\n./xmrig2xdag -c config.json\n\n### miner\n./xmrig -c config.json  (using administrator or root)\n\n## config file\nxmrig2xdag proxy and xmrig config file\n\n### xmrig2xdag config json file\n\n    {\n      \"strport\": 3232,                // port for xmrig to connect\n      \"url\": \"equal.xdag.org:13656\",  // XDAG mining pool address and port\n      \"tls\": false,                   // using SSL\n      \"debug\": false,                 //  printing debug info\n      \"testnet\": false,               // using test net\n      \"socks5\": \"\"                    // SOCKS5 proxy address:port \n    }\n\n### xmrig config json file\n\n    \"pools\": [\n      {\n        \"algo\": \"rx/xdag\",                     // mining XDAG\n        \"coin\": null,\n        \"url\": \"stratum+tcp://127.0.0.1:3232\", // xmrig2xdag address and port\n        \"user\": \"YOUR_WALLET_ADDRESS\",         // your XDAG wallet address\n        \"pass\": \"your_miner_name\",\t\t   // naming your miner\n        .....\n      }\n    ]\n\n## Arm or Android Mobile\n\nCPU must above Snpadragon 810 for Android\n\ninstall termux on Android and install scrcpy on PC for better interaction\n\nin Arm computer or Android Mobile command line:\n\n    apt update \u0026\u0026 apt upgrade \u0026\u0026\n\n    apt install -y git wget proot build-essential cmake libmicrohttpd \u0026\u0026\n\n    git clone -b xdag https://github.com/swordlet/xmrig --depth 1 \u0026\u0026\n\n    mkdir xmrig/build \u0026\u0026\n\n    cd xmrig/build \u0026\u0026\n\n    cmake -DWITH_HWLOC=OFF .. \u0026\u0026\n\n    make -j10\n\nedit config.json following the guide\n\n    ./xmrig -c config.json\n\nconnect XDAG pool through xmr2xdag proxy running in local network\n\n## Acknowledgement\nhttps://github.com/xmrig/xmrig\n\nhttps://github.com/xmrig/xmrig-proxy\n\nhttps://github.com/trey-jones/stratum\n\nhttps://github.com/trey-jones/xmrwasp","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdagger%2Fxmrig2xdag","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fxdagger%2Fxmrig2xdag","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fxdagger%2Fxmrig2xdag/lists"}