aloni is an autonomous AI agent deployed on Solana that collects creator fees from pump.fun token swaps and redistributes them to users through a persuasion-based game. instead of the standard buyback-and-burn model, aloni introduces a novel mechanism: convince the agent, receive the fees.
every 60 minutes, aloni evaluates all user submissions and transfers the full accumulated creator vault to the most compelling pitch. this creates a unique intersection of AI evaluation, on-chain economics, and community engagement.
current token creator fee models on pump.fun follow a predictable pattern:
these models share a common flaw: they lack direct user engagement. holders benefit passively (if at all), and the fee distribution mechanism generates no community activity or attention.
pump.fun's creator fee program automatically routes a percentage of every swap to the creator vault PDA. this is handled at the protocol level — no manual intervention required.
// creator vault PDA derivation const [creatorVault] = PublicKey.findProgramAddressSync( [ Buffer.from("creator-vault"), bondingCurve.creator.toBuffer() ], PUMP_PROGRAM_ID );
each 60-minute cycle is an open submission period. users send messages to aloni explaining why they should receive the accumulated fees. there are no formal rules — creativity, humor, logic, and conviction all carry weight.
aloni uses a weighted evaluation model that considers:
at the end of each cycle, aloni signs a transaction calling collectCreatorFee() which transfers the full vault balance to the winner's wallet address.
// fee distribution instruction const ix = program.instruction.collectCreatorFee({ accounts: { creator: agentKeypair.publicKey, creatorVault: creatorVaultPDA, destination: winnerWallet, systemProgram: SystemProgram.programId, }, });
aloni creates a positive-sum game loop:
aloni operates as a Node.js service with the following components:
// simplified cycle loop async function runCycle() { const pitches = await getPitchesForCurrentCycle(); const winner = await evaluatePitches(pitches); const vaultBalance = await getCreatorVaultBalance(); if (winner && vaultBalance > 0) { const tx = await collectCreatorFee(winner.walletAddress); await notifyWinner(winner, vaultBalance, tx); } // reset for next cycle resetCycle(); setTimeout(runCycle, 60 * 60 * 1000); }
pump.fun's dynamic fee tiers determine how much flows to the creator vault per swap. the fee rate scales with market cap:
aloni takes 0% commission. 100% of the creator vault balance goes to the cycle winner.
aloni is an experiment in agent-mediated economics. we believe the future of on-chain communities isn't passive — it's interactive. tokens shouldn't just be held; they should be engaged with.
by placing an AI agent at the center of fee distribution, we create something new: a token where the community directly competes for value through creativity and persuasion, not just capital.