
Live Dashboard · Real-time Stats
Join our provably fair raffles on the XRP Ledger. Win rare NFTs and crypto prizes with complete transparency.
Choose how you want to engage with the WAFFL ecosystem
Anyone can instantly create and run a raffle using our official WAFFL Raffle Bot.
Open BotProjects and communities can build their own branded raffle bot with full control.
Open FactoryNo active raffles at the moment
No completed raffles yet
To verify that the winning draw was chosen fairly, we use a transparent method based on the transaction hash. Here's how you (or anyone else) can check it:
This will take you to the XRP transaction used to determine the winner.
Copy the transaction hash from that page.
Run this code to calculate the winning ticket:
hex_str = "YOUR_TX_HASH_HERE" # replace with the actual Tx hash
num_tickets = 80 # total tickets sold
ascii_values = [ord(c) for c in hex_str]
total = sum(ascii_values)
winning_ticket = (total % num_tickets) + 1
print(winning_ticket)💡 Tip: You can do this yourself or ask a friend who knows how to run Python code or use ChatGPT to run it. This ensures every draw is provably fair, transparent, and not manipulated.