What is Rock-Paper-Scissors at Duel? True 1v1 player-vs-player matches: Rock beats Scissors, Scissors beats Paper, Paper beats Rock. Winner takes the entire pot; Duel takes zero rake. Best of 1, 3, or 5 formats. Both players' picks are SHA256-hashed with client keys before reveal, preventing either side from changing their pick mid-round.
Duel Rock-Paper-Scissors is the player-vs-player original currently live in BETA at duel.com, structurally unique across operators we cover: this is a true 1v1 match between two human players with no house involvement. The winner takes the entire pot; Duel takes zero rake. The 100% RTP figure is not a target or a brand-wide marketing claim - it is mathematically literal because Duel extracts nothing from the wagered pot. Where the Stake Rock-Paper-Scissors implementation runs player-vs-server at 98% RTP (2% house edge funds Stake's operator margin), Duel's PvP model removes the house from the math entirely.
Both players' picks are SHA256-hashed with a client key before reveal. After both commits land on the server, the client keys release simultaneously, letting either player verify the opponent's commit hash matched the revealed pick. The cryptographic scheme is symmetric between the two players - different from Duel's RNG-game fairness model (HMAC-SHA256 server seed used on Crash, Plinko, Mines, Dice).
What is verified at Duel Rock-Paper-Scissors
We open with the data state confirmed during the audit cycle for this live BETA original.
| Fact | Status | Source |
|---|---|---|
| Game is live in Duel's Originals catalogue (BETA) | Verified | On-site visual confirmation at https://duel.com + duelcasinoreview.com |
| True 1v1 player-vs-player (no house involvement) | Verified | duelcasinoreview.com/rock-paper-scissors/ |
| Best of 1, 3, or 5 match formats | Verified | duelcasinoreview.com |
| Literal 100 percent RTP (winner takes entire pot, zero rake) | Verified | duelcasinoreview.com - "Duel doesn't dip into it" |
| SHA256 commit-reveal between two players | Verified | duelcasinoreview.com cryptographic scheme documentation |
| Public lobbies plus private lobbies with shareable links | Verified | duelcasinoreview.com |
| Bet amounts are player-defined per lobby | Verified | duelcasinoreview.com |
| Cross-currency matches pay winnings in opponent's currency | Verified | duelcasinoreview.com |
| Upcoming tournaments feature | Roadmap-confirmed | duelcasinoreview.com |
| Upcoming multiple-concurrent-games feature | Roadmap-confirmed | duelcasinoreview.com |
| Per-lobby minimum and maximum bet limits | Pending direct observation | Player-defined; specific platform-side limits not separately published |
| Casino licence (Anjouan Gaming Authority) | Verified | Duel site footer plus Anjouan registry |
| Brand (Duel B.V., Anjouan-incorporated, since 2025, audited 2026) | Verified | Duel terms plus cross-reference |
| Instant withdrawals approximately 1 minute | Verified | Duel cashier docs plus first-hand observation |
| No KYC required for most withdrawals | Verified | Duel terms |
The PvP structure plus the 100 percent RTP plus the commit-reveal scheme plus the BETA status are all verified. Per-lobby bet limits are the remaining pending data point.
The 100 percent RTP at a PvP game: why it is literal not aspirational
Duel's brand-wide "0 percent house edge target" claim on RNG-game originals (Crash, Plinko, Mines, Dice at 99.9 percent practice) is a target Duel explicitly aims for and does not literally hit. Rock-Paper-Scissors operates structurally differently: the PvP model makes 100 percent RTP mathematically exact rather than approximate.
- Standard RPS at competitor operators (Stake at 98%): player wagers $1 against the server. The server, on uniformly random pick, wins 1/3 of the time, ties 1/3, loses 1/3. Operator sets the win payout below 2x to extract a margin. Expected return per $1 = approximately $0.98. That 2 cents per dollar funds Stake's operating margin on this game.
- Duel PvP RPS: Player A and Player B each contribute $1 to a $2 pot. One player wins the entire $2 pot; the other forfeits the $1 stake. Across the two players combined, $2 wagered returns $2 to the winning player. Duel extracts zero.
- Cumulative-RTP framing: for the player population, every $100 wagered at Duel RPS returns $100 to the winning side of those matches. Operator margin is zero by construction; this is not a target, it is the mathematical result of zero rake.
- Individual-player framing: each individual player's expected outcome depends on skill, opponent skill, and the random-pick game-theory equilibrium. Against a uniformly-random opponent in single-round play, expected return per match is exactly the stake (1/3 win at 2x, 1/3 tie at 1x stake-back, 1/3 loss at 0x). Best-of-3 and Best-of-5 reduce variance around the 50/50 expected match outcome.
- What is NOT zero: session time spent, opportunity cost of bankroll committed, and the variance shape of matched-bet outcomes. Zero rake does not equal zero gambling risk.
- The structural difference vs the Groomer's Van slot: Duel's Groomer's Van runs at literal 100 percent RTP against the house, sustained by volume-revenue cross-product cross-subsidy. RPS at 100 percent RTP needs no cross-subsidy because Duel never takes a cut from the pot in the first place. Both are zero-edge; the economic models behind them are different.
The PvP model is structurally why Duel can publish literal 100 percent RTP on this specific game without the "approximately" caveat that applies to Duel-wide 99.9 percent figure on RNG originals.
The commit-reveal cryptographic scheme
Provably-fair PvP requires a different fairness model than HMAC-SHA256 server-seed schemes used on Crash, Plinko, Mines, and Dice. The challenge: neither player can be allowed to see the other player's pick before committing their own.
- Step 1 - Pick lock: Player A picks Rock / Paper / Scissors. The game hashes Player A's pick together with a client key A (also random) using SHA256. The resulting commit hash is sent to the server.
- Step 2 - Symmetric commit: Player B does the same. Player B's pick plus client key B is hashed and submitted.
- Step 3 - Server holds commits: the server stores both commit hashes. Neither player has yet revealed their pick to the other.
- Step 4 - Simultaneous reveal: once both commit hashes are in, the client keys release at the same moment. Each player can now verify the opponent's pick by re-hashing it with the now-known client key and comparing against the original commit hash.
- Step 5 - Outcome determination: with both picks revealed, the standard Rock-Paper-Scissors win condition applies (Rock beats Scissors, Scissors beats Paper, Paper beats Rock). Tie results in a replay round in Best-of-N formats; tie pushes the round but does not end the match.
- Why this is provably-fair: neither player can change their pick after seeing the opponent's because changing the pick changes the SHA256 hash, which would not match the committed hash. The opponent can verify any tampering claim by re-hashing.
- Difference vs HMAC-SHA256 RNG scheme: the standard Duel server-seed scheme uses a server-committed seed plus client-controlled seed plus auto-incrementing nonce - the server controls one half of the randomness. PvP has no server-side randomness because there is no server pick to derive. Both players supply the randomness; Duel only stores and reveals commits.
The cryptographic scheme is a fundamental requirement for trust in PvP gambling. Without commit-reveal, either player could observe the opponent and change their pick to win.
Where Duel Rock-Paper-Scissors fits Duel-wide model
Duel's strategic context for adding PvP RPS to a catalogue otherwise dominated by player-vs-house RNG originals:
- Brand identity reinforcement: Duel's whole concept is "Dueling" - the brand name signals player-vs-player. PvP RPS is the most direct expression of the brand thesis: players compete against each other, not against the operator.
- Zero-revenue product structurally: unlike Crash or Plinko where Duel collects the 0.1 percent edge as operating revenue, RPS generates zero revenue per match. The game exists for catalogue breadth and brand-identity marketing, not for direct operator income.
- Cross-subsidy with paid catalogue: Duel's revenue comes from third-party slots (provider-side house edges retained), the RNG originals at 0.1 percent, sportsbook, and live tables. PvP RPS is a loss-leader feature for brand-positioning.
- Roadmap context: duelcasinoreview.com lists tournaments and multiple-concurrent-games as upcoming features. The tournament structure may introduce entry-fee operator-revenue mechanics (typical poker-room model) while preserving the per-game zero-rake within the tournament.
- Comparison with sportsbook plans: Duel has separately committed to a zero-edge sportsbook (also player-vs-player, betting against each other rather than against the house). RPS is the pilot implementation of the broader zero-edge PvP framework.
The game is structurally the test bed for Duel's broader PvP strategy. The mechanic is universally understood, fast per match, and easy to verify - good fit for proving out the PvP framework before extending it to sportsbook bets.
Variance shape in PvP Rock-Paper-Scissors
Zero rake does not eliminate variance. Per-match outcome distribution:
- Best-of-1 single round: 1/3 win, 1/3 tie (replay), 1/3 loss. Tie pushes the round but matches with replays converge to roughly 50/50 win/loss eventually. Per-match expected return = 100 percent (after rake = zero).
- Best-of-3 format: first player to 2 round wins takes the pot. Reduces variance around the 50/50 expected outcome relative to Best-of-1 single rounds. Single-match outcome still binary - one player takes the pot.
- Best-of-5 format: first to 3 wins. Further reduces variance around expected.
- Skill component: against a uniformly-random opponent, no strategy beats random pick (game-theory Nash equilibrium). Against a non-random opponent (humans rarely pick uniformly), pattern-detection can produce a positive expected return. Players who recognise opponent patterns have edge over random-pick opponents.
- Bet-size variance: per-bet variance is bounded - winner doubles stake, loser forfeits stake. No multiplier overhang like Crash or Plinko.
- Session-of-100-matches variance: at 50/50 expected outcomes, cumulative outcome standard deviation across 100 matches is approximately 10 matches worth of stake. Real-money loss possible despite zero rake - 50/50 with variance means individual sessions deviate.
- Cross-currency exposure: matches that mix two currencies pay winnings in opponent's currency. This introduces FX-exposure variance separate from match-outcome variance. Players holding multiple cryptos can exploit pairing for exposure management.
The variance is the trade-off for zero rake. PvP at 100 percent RTP is mathematically optimal in long-run but does not eliminate session-level downside risk.
Comparing Rock-Paper-Scissors across operators
| Operator | Mode | Published RTP | Operator margin per match | Position |
|---|---|---|---|---|
| Duel | 1v1 PvP, no house | Literal 100% (winner takes pot, 0% rake) | Zero (no rake from pot) | Audit-set RPS leader - structurally zero-extraction |
| Stake | Player-vs-server | 98 percent verified | 2 percent house edge | Industry baseline at largest peer operator |
| Other coverage operators (Shuffle, Rollbit, BetFury, Roobet, Gamdom, Yeet, Winna, Fairspin) | No RPS in catalogue | n/a | n/a | RPS is currently a two-brand offering in our coverage |
The 2 percent gap between Duel's 100 percent and Stake's 98 percent is the structural difference between a PvP-zero-rake model and a player-vs-server-with-operator-margin model. Both run on SHA-family cryptographic fairness; only the economic model differs.
When the Duel Rock-Paper-Scissors PvP framework meets the responsible-gambling line
Zero rake does not equal zero gambling risk. The PvP framework changes the operator-margin math but does not change behavioural risk patterns.
- The literal 100 percent RTP is the population-level figure. Individual players win or lose per match; an individual session can produce a full-bankroll loss against an unlucky variance run regardless of zero rake.
- The "play another human" framing of PvP can create social-pressure and ego-driven escalation that pure RNG games do not. Losing to a human opponent triggers different emotional response than losing to a random number generator.
- Skill perception: PvP RPS at the game-theory equilibrium (random pick) is zero-skill. Players who perceive themselves as skilful pattern-readers may over-deposit on the basis of perceived edge that does not survive against random opponents.
- BETA status: the game is currently in active development. Match-pool size, matchmaking latency, and lobby-availability conditions may differ from a mature PvP platform. Players should account for product-level uncertainty.
- Tournament roadmap: when tournaments arrive, entry-fee plus prize-pool structure may add house-side revenue extraction even while per-match remains zero-rake. Read tournament terms carefully when they launch.
- No welcome bonus from Duel means no wagering grind incentive, which is a positive for discipline.
- If gambling has stopped being fun, the mathematically most-favourable RPS in operator coverage does not change the situation. Free, confidential help: GamCare and BeGambleAware. Our player-protection limits page lists brand-side limits worth setting.
Frequently asked questions about Duel Rock-Paper-Scissors
What is Duel Rock-Paper-Scissors in one sentence?
Duel Rock-Paper-Scissors is a true 1v1 player-vs-player original currently live in BETA at duel.com, with literal 100 percent RTP because Duel takes zero rake from the pot and the winner takes everything - structurally different from the player-vs-server RPS implementations at competitor operators.
Is the 100 percent RTP really verified?
Yes. The 100 percent figure is mathematically exact rather than aspirational because the operator extracts zero from each pot. Cross-referenced at duelcasinoreview.com which documents "the winner takes the entire pot. Duel doesn't dip into it."
How does Duel Rock-Paper-Scissors compare to Stake Rock-Paper-Scissors?
Stake's RPS runs player-vs-server at 98 percent RTP - 2 percent house edge funds Stake's operating margin. Duel's RPS runs 1v1 PvP with no house involvement, so the 100 percent figure is mathematically exact. Both use SHA-family cryptographic fairness; the economic models differ structurally.
How does the commit-reveal cryptographic scheme work?
Both players' picks are SHA256-hashed with a client key before being committed to the server. After both commit hashes land, the client keys release simultaneously, letting either player verify the opponent's commit matched the revealed pick. Neither player can change their pick after seeing the opponent's because that would change the hash.
What match formats are available?
Best of 1, Best of 3, and Best of 5. Longer formats reduce variance around the 50/50 expected outcome but do not change the winner-takes-pot rule.
How is matchmaking done?
Players join public lobbies or create private lobbies with shareable links. Bet amount and accepted currency are player-defined per lobby. Matching another player triggers a ready confirmation, then a countdown.
Can I play multiple matches at once?
Currently single-match at a time. Multiple concurrent games is on the roadmap per Duel documentation.
Are there tournaments?
Tournaments are on the roadmap but not currently live. Per-match zero-rake will likely apply within tournaments; entry-fee and prize-pool structures will be announced when the tournament feature launches.
Is there an optimal strategy?
Against a uniformly-random opponent, no strategy beats random pick (Nash equilibrium). Against human opponents who do not pick uniformly, pattern detection can produce a positive expected return - this is the skill component of PvP RPS.
What happens in cross-currency matches?
Matches that pair players holding different currencies pay winnings in the opponent's currency rather than the original denomination. Players should account for FX exposure when participating in cross-currency lobbies.
Is Duel Rock-Paper-Scissors available in all jurisdictions Duel serves?
Duel restricts US and UK players from Duel broadly; RPS availability follows Duel-level restrictions. No KYC required for most withdrawals.
Reading after this Duel Rock-Paper-Scissors review
- For the verified 100% RTP zero-edge slot, read the only 100% slot in our coverage.
- For the verified 99.9% coverage Crash leader, read the reciprocal-distribution Crash teardown.
- For the verified 99.9% RTP bucket-distribution leader, read the bucket-distribution leader page.
- For the verified 99.9% RTP 5x5 grid build, read the grid-reveal teardown.
- For the verified 99.9% RTP roll-under build, read the roll-under teardown.
- For the live 24/7 themed wheel, read the live wheel teardown.
- For the classical card table game, read the blackjack teardown.
- For the single-player video poker, read the video poker teardown.
- For our editorial methodology, see our editorial methodology page.
Authority sources cited in this Duel Rock-Paper-Scissors review
The verified review relies on cross-validation between direct on-site observation of duel.com, third-party independent review at duelcasinoreview.com, and the Anjouan Gaming Authority registry.
- Direct on-site visual confirmation at Duel.com homepage (2026-05-27): Rock-Paper-Scissors visible in the Originals catalogue with BETA badge.
- The Duel Rock-Paper-Scissors review at duelcasinoreview.com documents PvP structure, SHA256 commit-reveal scheme, zero-rake economics, and Best-of-N match formats.
- The Anjouan Gaming Authority registry confirms Duel's licensed status.
- GamCare and BeGambleAware provide independent player-protection guidance.