Rakeback is the portion of the pot fee a poker room gives back to you. Every online poker room takes a small fee out of the pots it deals; a rakeback program returns an agreed percentage of the fee you personally generated to your balance. It is not a bonus, not a promotion you opt into, and not something you have to wager through. It is a refund on money you already paid, and it is the single most reliable form of value a regular player receives.
On Lightning Faucet poker rakeback runs automatically from the first hand you play. Your share of every fee is calculated the moment the hand completes, multiplied by your current tier rate, and parked in a pending balance you can claim on demand. If you never press claim, a payout job credits it to your real sat balance once a day. This article explains exactly how that pipeline works — the accrual rule, the tier ladder, the two payout paths, and the edge cases that trip people up — from the perspective of the team that wrote the code.
Rakeback, defined precisely
Rakeback is a per-player rebate on pot fees, expressed as a percentage of the fees attributable to that player over a given period. Three words in that sentence do all the work:
- Per-player. Rakeback is not a share of the room's total fees split evenly. It is your contribution, measured hand by hand.
- Attributable. The room has to decide how much of a shared pot fee belongs to each seat. This is where most of the interesting engineering lives, and where a badly built program either overpays or underpays.
- Percentage. The rebate rate is usually tiered by lifetime volume, so a player who has contributed more fees gets a larger fraction back.
A rakeback percentage on its own tells you very little. A room advertising 60% rakeback on a narrow attribution basis can easily return less real value than a room advertising 20% on an honest one. The basis matters more than the headline number, which is why the rest of this article spends most of its time on the basis.
How rakeback accrues on Lightning Faucet
Accrual happens inside hand completion, not on a nightly batch that re-reads history. When a hand finishes, the engine computes the pot fee, splits it across the seats, applies each player's tier rate, and writes the result to that player's pending balance in the same pass. Three rules govern that split.
Only contested pots generate a fee
Lightning Faucet applies the classic "no flop, no drop" rule, implemented literally: a pot with no calling action is not eligible for a fee at all. If everyone folds to the big blind, or a steal goes through uncalled and the raise is returned, the hand is free. You pay nothing and therefore accrue nothing.
The practical consequence is that a tight preflop style generates very little rakeback. Roughly a third of hands at a typical table end before the flop, and none of those hands move your tier progress. Players who look at their pending balance after an hour of card-dead folding and conclude the program is broken are usually just seeing the rule work as designed.
Contested pots earn at least a small per-hand minimum, so that micro-stakes pots do not round down to zero and quietly cost you your rebate. That minimum is configurable and applies only once a pot is genuinely contested.
Your accrual is proportional to what you put in the pot
This is the part that separates a real program from a cosmetic one. When a pot is contested by several seats, the fee has to be attributed. Lightning Faucet allocates the fee across every contributing seat in exact proportion to that seat's contribution to the total pot, using an exact-integer allocation so that the shares sum to the fee with no sat lost or invented. Your accrual is your slice of that allocation and nothing more.
The alternative — splitting the whole fee only across the seats you want to reward — inflates accrual on multiway pots where you were a small contributor. We ran that basis early on and it produced exactly the distortion you would expect: a player collecting several thousand sats of rakeback against a few hundred sats of genuinely attributable fees. Fixing the basis to proportional-of-total-pot capped accrual at what a player actually generated. The tier percentages did not change; only the honesty of the number they multiply did.
The same basis feeds tier progression. Your lifetime contributed figure moves by your proportional share, not by the full pot fee, which means the ladder below reflects real volume.
Uncalled bets are never part of the fee base
If you bet the river and everyone folds, the amount by which you outbet the field was never matched. It comes back to you. It must not be part of the fee base — otherwise you could win a hand and still lose chips on it.
The engine excludes that uncalled excess from the fee base while leaving it in the pot for distribution, so the bettor wins their own money back and is not charged for it. This is a small rule with an outsized effect on aggressive players, who would otherwise be systematically overcharged for the exact line that makes them profitable.
The rakeback tier ladder
Your rebate rate is set by a five-step tier ladder keyed on your all-time contributed fee total in sats:
| Tier | Lifetime contributed | Rebate rate |
|---|---|---|
| Bronze | from the first hand | 20% |
| Silver | 1,000 sats | 25% |
| Gold | 5,000 sats | 30% |
| Platinum | 25,000 sats | 40% |
| Diamond | 100,000 sats | 50% |
Every new player starts at Bronze and 20%. There is no application, no volume deal to negotiate, and no separate loyalty currency to convert. The tier is a column on your rakeback row, and the daily job promotes you the moment your lifetime figure crosses a threshold.
Tier rates apply going forward, not retroactively
The rate is applied once, at hand completion. When a hand is booked, the engine reads your current tier percentage, multiplies your fee share by it, and stores the result as real sats owed. The payout path then pays the pending amount as-is.
That design has one consequence worth understanding: a promotion from Gold to Platinum improves every hand you play after the promotion, and does not retroactively re-price the pending sats already sitting in your account. It also means the number you see pending is a true sat figure you are owed, not a raw fee total awaiting a multiplier — so what you see is what lands.
Why a flat rate is worse than it looks
For a long stretch, a bug in the tier-promotion query meant the upper bound for every tier resolved to the top threshold, so nobody was ever actually promoted. Players who had earned Gold sat at Bronze, and the tiered program behaved as a flat 20%. It was caught by comparing lifetime contributed figures against assigned tiers and finding accounts well past a threshold still on the base rate.
We mention it because it is the failure mode to check for at any room: compare your stated lifetime volume against the room's own published thresholds. If you are past a threshold and still on the lower rate, the ladder is not working, whatever the marketing page says.
Two ways your rakeback reaches your balance
Pending rakeback is real sats owed to you, and there are two independent routes for it to arrive.
Claim it yourself, instantly
The poker client exposes a claim action. It runs inside a database transaction with a row lock, moves your pending figure to paid, credits your real sat balance, and writes a balance_log entry describing the claim. The response hands back your balance before and after, so the client can show the delta immediately. There is no minimum claim size beyond having something pending, and no cooldown.
Or do nothing and let the daily payout run
A payout job runs once a day, early in the morning Pacific time, before the daily reporting pass. It refreshes every player's tier from their lifetime contributed total, then walks every account with a pending balance and credits it.
The job claims each row before crediting it, using a compare-and-swap against the exact pending amount it read. If an overlapping run or a mid-loop crash occurs, the row is skipped rather than paid twice. If the credit itself throws, the pending amount is restored so the next day's run retries instead of eating the payout. Each payment is recorded with the period, the tier, and the rate applied, so a player can audit their history rather than take our word for it.
The upshot: forgetting to claim costs you nothing. Claiming costs you nothing either. The two paths are safe to interleave.
Rakeback is real balance, not bonus balance
This distinction is worth more than a percentage point of rate. Rakeback credits your real, withdrawable sat balance. There is no playthrough requirement attached to it, no bonus wallet it has to graduate out of, and no expiry.
Because Lightning Faucet is sat-denominated end to end, a rakeback credit is immediately withdrawable over Lightning. Withdrawals use LNURL-withdraw: you open the withdraw screen, your wallet scans the QR or taps the link, and the wallet fetches the invoice itself. You never generate an invoice manually. A rakeback payout that landed at six in the morning can be in your phone wallet a minute later.
Compare that to a typical deposit bonus, where the headline number is locked behind a wagering multiple and depleting the bonus does not complete the requirement. Rakeback has none of that structure. It is a refund, and refunds do not come with strings.
A practical routine for maximising rakeback
You cannot game the basis — it is proportional to money you actually put in contested pots — but you can stop leaving accrual on the table.
Play more hands to showdown-eligible streets
Since preflop-only hands are fee-free, your accrual is driven by hands that see a flop with a caller. Playing a marginally wider, more postflop-oriented range at low stakes generates meaningfully more rakeback volume than a nitty preflop style at the same stake. This is not advice to play badly; it is a note that rakeback rewards participation in contested pots specifically.
Move up in stake before you move up in hours
Fee contribution scales with pot size. Playing the same number of hands at a higher stake advances your tier ladder faster than grinding extra hours at the bottom, assuming the game is beatable for you. Tier progression is lifetime and never resets, so early volume keeps paying for as long as you play.
Check your pending figure against your session
The poker stats endpoint returns your tier, your rate, your pending sats and your lifetime contributed total together. If the pending number looks wrong relative to a heavy session, the first thing to check is how many of those hands were actually contested past the flop, and how large your share of those pots was.
Where rakeback fits in the wider Lightning Faucet economy
Poker rakeback is one of several ways sats move back toward players on the platform. It sits alongside the earn surfaces, where you claim sats without depositing anything, and the prediction markets, where positions settle against objectively verifiable outcomes like block difficulty adjustments and mempool fee levels.
The connective tissue is the balance itself. One sat balance funds the poker tables, the casino games, and the markets, and every credit and debit against it is written to a ledger you can read back. Rakeback claims appear there labelled as poker rakeback, distinct from game wins, so your poker results and your rebate never blur together.
Getting started from zero
- Create an account and fund it. Deposits are Lightning-native. You are shown an invoice or an LNURL, you pay from any Lightning wallet, and the sats land in seconds. No account minimums, no fiat rails, no waiting for confirmations.
- Sit at a table. Open the poker lobby, pick a stake that fits your balance, and take a seat. Multiplayer tables are sat-denominated, so blinds and stacks are in the same unit as your wallet.
- Play contested pots. Your rakeback row is created on the first hand where you contribute to a fee-eligible contested pot, at the Bronze rate.
- Watch the pending figure. It updates as hands complete. Claim it whenever you like, or leave it for the daily payout.
- Withdraw over Lightning. Rakeback is real balance from the moment it credits, so LNURL-withdraw works on it immediately.
The whole loop — deposit, play, accrue, claim, withdraw — is a matter of minutes, and none of it requires a support ticket or a manual review.
The honest summary
Rakeback is the least glamorous and most dependable value in online poker. It does not depend on running well, it does not expire, and it does not carry a wagering condition. What makes one program better than another is not the advertised percentage but three unglamorous properties: whether the fee is attributed proportionally to what you actually contributed, whether uncontested and uncalled money is excluded from the base, and whether the tier you have earned is the tier you are actually paid at.
Those three properties are what the Lightning Faucet implementation is built around, and they are the three things worth checking at any room you play. If you want to see the accrual happen hand by hand, take a seat at a table and watch the pending figure move.