IAV / ETC Swap
1 ETC ≈ 1000 IAVIAV Poker Whitepaper
Version 1.0 — May 2026
Author: InArgentumVeritas
Contact: admin@inargentumveritas.app
Website: https://chat.inargentumveritas.app
Abstract
IAV Poker is a provably fair, zero‑rake, self‑custodial online poker platform that operates entirely on the Ethereum Classic (ETC) blockchain. It combines a built‑in encrypted wallet, cryptographic challenge‑sign authentication, and an on‑chain autonomous swap contract to create the cheapest, most transparent, and most secure poker ecosystem ever built. The platform’s economic model eliminates every unnecessary cost, passing the savings to players in the form of a $0.0089 minimum buy‑in and zero house rake. This whitepaper describes the technical infrastructure, tokenomics, settlement mechanics, and security architecture that make IAV Poker structurally unbeatable on cost, fairness, and trust.
1. Introduction
1.1 The Problem with Online Poker
Traditional online poker rooms charge a 5–10 % rake on every pot, require minimum deposits of $5–$20, and often hold player funds in custodial wallets that expose users to counterparty risk. “Provably fair” claims in the crypto poker space are frequently marketing slogans unsupported by verifiable on‑chain evidence.
1.2 Our Solution
IAV Poker removes the house from the equation. All settlement occurs on‑chain through smart contracts; every shuffle is verifiable with SHA‑256; players retain full custody of their private keys via a built‑in wallet; and the platform charges zero rake – only a 0.3 % fee on voluntary swaps between ETC and the IAV token.
1.3 Key Innovations
- Zero Rake Permanently – no percentage taken from any pot, ever.
- Provably Fair Shuffling – SHA‑256 commitment scheme verifiable by every player after every hand.
- Self‑Custody Wallet – encrypted keystore (scrypt) built directly into the client; no MetaMask, no browser extension, no custodial risk.
- Cross‑Platform – playable across Windows, Linux, macOS, Android, iOS, and browsers.
- Fixed‑Supply Token Economy – IAV (ERC‑20) has a hard cap of 2,000,000 tokens; no minting, no inflation.
- Cryptographic Authentication – challenge‑sign protocol (NIST AAL3 level); no passwords, no phishing surface.
2. Technology Stack
2.1 Ethereum Classic (ETC) – The Settlement Layer
IAV Poker is built on Ethereum Classic because Proof‑of‑Work finality, low gas fees, fixed monetary policy, and EVM compatibility.
2.2 Smart Contracts
2.2.1 IAV Token (ERC‑20)
| Attribute | Value |
|---|---|
| Contract address | 0x09a9E6D00B07f7C991b98575F75d16811C9c50a4 |
| Compiler | Solidity v0.8.7 |
| Decimals | 15 |
| Total supply | 2,000,000 IAV (2,000 ETC at swap rate) |
| Mint function | None – fixed supply |
| Admin functions | None – no owner, no pause, no blacklist |
2.2.2 IAVSWAPv2 – Autonomous Swap Contract
| Attribute | Value |
|---|---|
| Contract address | 0xDc9f0C8F72E0C77c11CCB0c91cC809FcbE580c0b |
| Compiler | Solidity v0.8.17 |
| Exchange rate | 1 IAV = 0.001 ETC (fixed) |
| Fee | 0.3% on each buy and sell |
| Security | noReentrancy guard, onlyOwner admin, overflow checks |
The swap contract provides a permanent, autonomous gateway between ETC and IAV. Liquidity is provided by the contract’s reserve; when the reserve is fully absorbed by player demand, IAV must be acquired on secondary markets, creating upward price pressure.
2.3 Game Server
Compiled Node.js binary with Socket.IO over WSS, room‑based messaging, deposit scanner, cashout queue, and Redis scaling.
2.4 Client
Single HTML file packaged for Windows (Electron), Linux (AppImage), Android (Capacitor), and web.
3. Economic Model & Tokenomics
3.1 IAV Token Utility
IAV is required to play poker – each chip is backed 1:1 by IAV in a public deposit address.
3.1.1 Lowest Entry Barrier
Minimum deposit: 1 IAV = 100 chips. At 1 IAV = 0.001 ETC and ETC ≈ $8.91 → ≈ $0.0089 USD. That is less than one US cent.
3.2 Fixed Supply & Scarcity
- Max supply: 2,000,000 IAV (no minting, no inflation).
- Deflationary pressure as player base grows.
3.3 Swap Fee – The Only Revenue Stream
0.3% fee on buy() and sell(). No rake, no deposit/withdrawal fees, no subscription.
3.4 Incentive Alignment
Players keep 100% winnings; platform earns only on entry/exit; token holders benefit from IAV appreciation.
4. Settlement – Complete Lifecycle of Funds
4.1 Entry: ETC → IAV → Chips
Player's Wallet → IAVSWAPv2 → Deposit Address → Game Server
- Send ETC → receive IAV (minus fee).
- Transfer IAV to deposit address.
- Deposit scanner credits chips.
4.2 Playing Poker – In‑Memory Chip Accounting
All actions off‑chain for speed; chips in server memory; periodic disk backup.
4.3 Exit: Chips → IAV → ETC
Game Server → Cashout Queue → ETC Network → Player's Wallet
Total round‑trip cost ≈ 0.6% (0.3% entry + 0.3% exit).
5. Security Architecture
5.1 Authentication – Cryptographic Challenge‑Sign
| Property | Implementation |
|---|---|
| Protocol | Server sends random 32‑byte challenge → client signs with private key → server verifies |
| NIST Level | AAL3 (highest) |
| Replay protection | Challenge expires after 60s |
5.2 Wallet Security – Encrypted Keystore
ethers.Wallet.encrypt() – scrypt + AES‑128‑CTR; stored in localStorage; never transmitted.
5.3 Network Security
TLS 1.3, compiled server binary, anti‑spam module.
5.4 Smart Contract Security
IAV token has no admin functions; IAVSWAPv2 uses reentrancy guard; audited (SolidityScan 87.28/100).
6. Provably Fair Shuffling
6.1 Commitment Scheme
Before hand:
serverSeed = random 256‑bit value
serverHash = SHA‑256(serverSeed + clientSeed + handNumber + nonce)
→ serverHash stored, game proceeds
After hand:
→ server reveals serverSeed
→ player computes SHA‑256(...) and compares
6.2 Client Seed
Players may set an optional client seed in the lobby – included in the commitment hash.
6.3 Verification UI
Clickable verification link in chat; uses crypto.subtle.digest client‑side.
7. Competitive Analysis
| Dimension | Traditional Rooms | Crypto Poker Giants | IAV Poker |
|---|---|---|---|
| Minimum entry | $5–$20 | $5–$20 | $0.0089 |
| Rake | 5% per pot | 5% per pot | 0% |
| Custody | Platform holds funds | Platform holds or MetaMask | Self‑custody built in |
| Fairness | "Trust us" | Proprietary | SHA‑256 verifiable |
| Cross‑platform | Separate apps | Web only or separate | Win, Linux, Android, web |
| Token supply | N/A | Inflationary | Fixed 2,000,000 |
| Authentication | Email/password | Wallet connect | Challenge‑sign (AAL3) |
| Revenue model | Rake + fees | Rake + fees | 0.3% swap fee only |
| Operating cost | $500k–$2M/month | $50k–$500k/month | ~$30/month |
The platform’s cost structure is structurally impossible for competitors to replicate without abandoning their business model.
8. Roadmap
Phase 1 – Launch (Completed)
- ERC‑20 IAV token deployment
- IAVSWAPv2 contract with fee collection
- Cross‑platform client (Win, Android, Linux, Web)
- Real‑time Texas Hold’em engine with chat
- SHA‑256 provably fair system
- Self‑custody wallet (scrypt encryption)
- Challenge‑sign authentication
Phase 2 – Growth (Current)
- Organic marketing and player acquisition
- Bug fixes and performance optimisation
9. Conclusion
IAV Poker is a vertically integrated, self‑custodial gaming platform with the lowest entry barrier and only permanent zero‑rake policy. Every hand is verifiably fair. Every transaction is on‑chain and auditable.
References
- IAV Token:
0x09a9E6D00B07f7C991b98575F75d16811C9c50a4 - IAVSWAPv2:
0xDc9f0C8F72E0C77c11CCB0c91cC809FcbE580c0b - Ethereum Classic: https://ethereumclassic.org
- Blockscout Explorer: https://etc.blockscout.com
IAV/ETC pair on Ethereum Classic.
Download IAV Poker Client
Choose your platform – all versions include the same provably fair poker experience, built‑in wallet, and encrypted chat.
All downloads are signed and verified. Checksums on GitHub.