Skip to content
@proofnetworks

Proofnetwork

Proofnetwork organization

ProofNetwork

Provably Fair Infrastructure for Apps

Who We Are

ProofNetwork provides the infrastructure layer for building trustless, verifiable applications. We believe that fairness shouldn't require trust — it should be mathematically provable.

Our platform combines cryptographic randomness, smart contract execution, and Solana blockchain integration into a unified development experience that lets creators focus on building great applications while we handle the complexity of provable fairness.

What We Offer

Verifiable Random Functions (VRF)

At the core of ProofNetwork is our VRF system — cryptographically secure randomness with on-chain proofs. Every random outcome generated through our platform can be independently verified by anyone, eliminating the need to trust a central authority.

  • Provable Fairness: Mathematical proofs accompany every random result
  • Flexible Selection: Numbers, arrays, weighted distributions
  • Game-Ready: Configurable probability profiles for various game mechanics

Smart Contract Platform

We've built a developer-friendly contract system using JavaScript — no new languages to learn, no complex compilation steps. Write familiar code, deploy instantly, and let our runtime handle state management and security.

  • JavaScript Native: Write contracts in the language you know
  • Managed State: Automatic persistence and lifecycle management
  • Composable: Contracts can communicate and build on each other
  • Scalable: Background task processing for complex operations

Solana Integration

ProofNetwork is built on Solana for fast, low-cost transactions. Our platform abstracts the complexity of blockchain development while giving you full access to Solana's capabilities.

  • Token Operations: Transfers, burns, mints, and snapshots
  • Transaction Parsing: Verify and extract data from any transaction
  • Wallet Integration: Seamless connection with popular Solana wallets

Telegram Integration

Reach your community where they are. Our Telegram integration lets you build interactive bots that connect directly to your smart contracts — no separate backend required.

  • Command Routing: Automatic handling of bot commands
  • Rich Interactions: Inline keyboards, callbacks, media support
  • Community Tools: Moderation, broadcasts, group management

DEX Aggregation

Integrated token swapping through major DEX aggregators. We handle routing optimization and slippage protection so your users get the best rates.

What You Can Build

Category Applications
Gaming Lotteries, raffles, dice games, card games, sports betting, prediction markets
DeFi Token launches, automated market making, yield distribution, escrow services
Community Token-gated access, airdrops, holder snapshots, reward systems
Social Telegram games, community competitions, leaderboards

Our Technology

┌─────────────────────────────────────────────────────────┐
│                   Your Application                       │
└─────────────────────────────────────────────────────────┘
                            │
┌─────────────────────────────────────────────────────────┐
│                   ProofNetwork Platform                  │
│                                                          │
│   ┌─────────┐  ┌─────────┐  ┌─────────┐  ┌─────────┐   │
│   │   VRF   │  │ Contract│  │ Solana  │  │Telegram │   │
│   │ Service │  │ Runtime │  │ Bridge  │  │  Bots   │   │
│   └─────────┘  └─────────┘  └─────────┘  └─────────┘   │
│                                                          │
└─────────────────────────────────────────────────────────┘
                            │
┌─────────────────────────────────────────────────────────┐
│                   Solana Blockchain                      │
└─────────────────────────────────────────────────────────┘

Writing Your First Contract

const state = {
  metadata: {
    name: "CoinFlip",
    description: "Provably fair coin flip game",
    version: "1.0.0",
    author: "Your Name"
  },
  deployer: null,
  totalFlips: 0
};

function onDeploy(inputs) {
  state.deployer = inputs.deployer;
  return { success: true };
}

/**
 * Flip a coin with verifiable randomness
 * @param {Object} inputs - Player inputs
 * @param {string} inputs.walletAddress - Player wallet
 * @param {string} inputs.choice - "heads" or "tails"
 * @returns {Object} Flip result with proof
 */
async function flip(inputs) {
  const { walletAddress, choice } = inputs;

  // Generate verifiable random result
  const result = await vrfApi.selectNumber(0, 1);
  const outcome = result.result === 0 ? "heads" : "tails";
  const won = outcome === choice;

  state.totalFlips++;

  return {
    success: true,
    outcome,
    won,
    proof: result.proof  // Anyone can verify this
  };
}

Platform Services

Service Description
VRF API Verifiable random number generation with cryptographic proofs
Contract Runtime Sandboxed JavaScript execution with state management
UMI Bridge Solana transaction building, signing, and submission
Timer Service Scheduled and recurring contract execution
Storage Layer Persistent key-value storage across contracts
Telegram Gateway Bot command routing and message delivery
DEX Aggregator Multi-source token swap routing

ProofNetwork — Where fairness is provable, not promised.

Popular repositories Loading

  1. proofwallet proofwallet Public

    JavaScript 3 1

  2. proofnetwork-phaserplugin proofnetwork-phaserplugin Public

    Phaser plugin for proofnetwork

    JavaScript 1

  3. proofcanvasframework proofcanvasframework Public

    An LLM-optimized game framework featuring efficient rendering, streamlined asset management, and a design that’s intuitive for language models to understand and extend.

    JavaScript 1

  4. proofclient proofclient Public

    Proofnetwork client buid

  5. orjson orjson Public

    Forked from ijl/orjson

    Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy

    Python

  6. .github .github Public

Repositories

Showing 10 of 15 repositories

People

This organization has no public members. You must be a member to see who’s a part of this organization.

Top languages

Loading…

Most used topics

Loading…