Analysis updated 2026-06-24
Run a POG miner on a spare RTX 30-series machine and cap gas spend at a dollar amount
Track personal mining stats from the local stats.json counters and confirmed-mine log
Generate a deterministic SVG image for each successful mine tied to nonce and address
Test the miner on a burner wallet with Alchemy or Infura before pointing it at a main RPC
| natazeroins/pog-mining-gpu | acip/slack-claude-agent | alexanderdaly/neurofhe-relay | |
|---|---|---|---|
| Stars | 1 | 1 | 1 |
| Language | JavaScript | JavaScript | JavaScript |
| Setup difficulty | hard | moderate | easy |
| Complexity | 4/5 | 3/5 | 2/5 |
| Audience | developer | developer | researcher |
Figures from each repo's GitHub metadata at analysis time.
Needs Linux, an NVIDIA GPU with matching CUDA arch flag, and a funded burner wallet that you must never reuse for real funds.
POG GPU Miner is a mining program for a specific Ethereum-based token called POG, also known as the Generation Token. It runs on a Linux machine with an NVIDIA graphics card and looks for a special number, called a nonce, that the POG smart contract on the Ethereum blockchain will accept as a valid mining solution. When a valid number is found, the program submits a transaction to the contract and the wallet receives a reward. The README is straightforward about what the software does step by step. It reads the current challenge from Ethereum, uses the GPU to scan through a large range of nonces, double-checks any candidate in JavaScript before sending it on-chain, and only submits the transaction if the estimated gas cost is below a dollar cap that the user sets. While running, it writes counters to a stats.json file, keeps a personal log of confirmed mines, and saves a small SVG image for each successful mine that is generated deterministically from the nonce and the miner's address. Setup requires Node.js, the CUDA toolkit, and an Ethereum RPC URL from a provider like Alchemy or Infura. The README repeats a clear safety warning: use a burner wallet only, never your main wallet, and never commit the .env file or private keys. There is a table of GPU architecture flags so the user can compile the CUDA program for their specific card, ranging from RTX 20-series through to H100. The config file sets fields for the RPC URL, the burner private key, a maximum fee in dollars, gas settings in gwei, and the size of each GPU search batch. The README also explains the meaning of every counter in stats.json, including submitted, success, failed, and skippedFee.
Linux CUDA miner for the POG Ethereum token that scans nonces on an NVIDIA GPU and submits winning transactions to a smart contract under a gas cap.
Mainly JavaScript. The stack also includes JavaScript, Node.js, CUDA.
Setup difficulty is rated hard, with roughly 1day+ to a first successful run.
Mainly developer.
This repo across BitVibe Labs
Verify against the repo before relying on details.