How It Works
From account creation to a provably fair database algorithm crowned winner: the complete Last Pixel journey in six steps, plus PackDraw, Raffle, Referral and Missions.
Six steps from sign-up to prize
Create your account
Sign up in seconds with a username, email and password. Your account ships with a unique referral link, a personal dashboard and the missions tracker.
Deposit funds
Top up your USD balance via Oxapay in any of fifteen supported crypto networks. Your balance powers every product on the platform: pixels, boxes and raffle qualification.
Buy pixels on a grid
Open any of the seven live grids, from 2x2 Beginner up to 250x250 Legendary, and click any free pixels you want. Each pixel is permanent advertising space and one chance toward the winning index.
Wait for the round to close
A round closes the moment every pixel on the grid sells out. The target round seed for the round is announced before the provably fair database algorithm runs, locking the source of randomness publicly.
Provably fair database algorithm selects the winner
Once the announced seed is committed, we take the provably fair database algorithm output and compute winningIndex = parseInt(seed, 16) % totalPixels. The result is a single pixel; the owner of that pixel wins the round.
Winner gets 50% + free PackDraw tickets
The winning pixel owner receives 50% of the round revenue, credited straight to their balance, plus between one and six free PackDraw tickets depending on the grid size.
The formula
Anyone can verify the result. Take the announced seed produced by the provably fair database algorithm, parse it as a hexadecimal integer, then take the modulo of the total number of pixels in that round:
winningIndex = parseInt(seed, 16) % totalPixels
Worked example: imagine a 100x100 grid (so totalPixels = 10000) with an announced seed that starts with the bytes 0000abcd. parseInt("0000abcd", 16) is 43981, and 43981 modulo 10000 is 3981 - so pixel index 3981 wins.
From index to coordinates
Once we have the winning index, we map it to a single pixel on the grid. The grid is laid out left-to-right, top-to-bottom, so the column comes from the remainder and the row from the integer division:
x = index % width y = Math.floor(index / width)
Continuing the example with index 3981 on a 100x100 grid: x = 3981 % 100 = 81 and y = floor(3981 / 100) = 39. The winning pixel is therefore at column 81, row 39.
Same seed, same width, same answer - every single time. No server-side randomness, no hidden inputs, no trust required.
Four ways to earn more
Pixel grids are the core of the platform, but four complementary systems give you additional ways to win, earn and grow your balance. Every one of them is included in your account from day one.
PackDraw
Loot boxes - instant prizes
Open mystery boxes from five tiers: Bronze $1, Silver $5, Gold $25, Diamond $100 and Mythic $300. Each box has a published odds table and a guaranteed minimum return. Prizes credit instantly to your balance.
- Five box tiers from $1 up to $300
- Top jackpots up to $5,000
- Free tickets from grid wins and missions
- Provably fair: provably fair database algorithm + SHA-256
Raffle
Auto-entry - random draw
A separate raffle pool runs alongside the grids. Once your lifetime spend crosses the qualifying threshold, you are automatically entered. When the raffle ends, the winner is selected via an automated random draw.
- Automatic entry on balance threshold
- No extra purchase required
- Random draw - no human selection
- Public archive of past raffles
Referral
25% lifetime commission
Share your unique referral link and earn 25% on every confirmed deposit AND every prize your referred friends ever win. Commission is paid in USD straight to your balance, with no caps and no expiry.
- 25% on every deposit, for life
- 25% on every prize won, for life
- Paid in USD into your balance
- Live stats on the referral page
Missions
$500 onboarding bonus
Complete the four onboarding missions: deposit $250, buy $100 of pixels, refer 100 users and have 25 of them deposit. The moment all four flip to complete, the platform credits a one-time $500 bonus to your balance.
- Deposit $250 total
- Buy $100 worth of pixels
- Refer 100 users
- 25 referred users deposit
One source of randomness, every product
Whether you are playing a grid, opening a PackDraw box or waiting for the raffle to draw, the underlying randomness is always anchored to our public provably fair database algorithm. There is no internal RNG that we control, no admin override on winner selection and no way for any party to predict the outcome in advance.
For a deeper look at how every layer is verified, head over to the Trust page.