ANSEMFUND
NOT LAUNCHED

Solana · fee-funded distribution

Fees buy $ANSEM. Holders get it back.

Every trade pays a fee. The fees buy $ANSEM on the open market. The $ANSEM goes to holders, weighted by how long you actually held — not by who happened to be holding at one lucky instant.

The Black Bull, mint horns
Contract not launched
price
market cap
24h volume
fees to treasury
Built by @nullopcode · nullopcode.cv No project account — same builder, same name, checkable history.

Claim

One claim. Everything you are owed.

Your $ANSEM accumulates from the first epoch you held through. Claim whenever you like — today, or in six months. There is no per-epoch button and nothing expires.

You claim your own, and you pay for your own: roughly four hundredths of a cent in gas. Nobody is ever asked to fund a payout for anyone else.

Distribute fees is the other half, and anyone may press it — holder or not. It sweeps trading fees out of pump into the vault, and pays whoever runs it nothing: the guarantee is that nobody can stop you, not that you are paid. We forward the vault into the treasury every 12 hours, which is the one step that needs us.

Your $ANSEMFUND
Accumulated $ANSEM
Already claimed
Cost to claim~$0.0004
Fees waiting to distribute
Nothing has launched, so there is nothing to claim yet. Connecting is read-only.

The mechanism

Four moves, and none of them need trusting.

01
Trading fees accrue to the pool
02
Anyone can crank the harvest
03
Fees swap into $ANSEM
04
Holders claim by time-weighted balance

Status: nothing has launched. No token, no pool, no epoch yet. This documents a mechanism that has been built and tested — not one that is running.

What we did instead

Five decisions, each forced by a constraint.

Threshold on the wallet

Every epoch credits every holder their exact share, no minimum. Credits accumulate. A wallet enters a distribution once its own balance beats its own claim cost. Nobody is dropped.

Time-weighted

Balance integrated across the whole epoch, sampled at randomized times never published in advance. Buying before a snapshot and selling after earns approximately nothing.

Paired against SOL

What you trade against and what you buy with fees are separate decisions. Collapse them and you end up quoted in something no chart or router indexes — then earn nothing.

Nobody presses the button

Pump's fee collection takes no signer at all — anyone can trigger it, and the proceeds are pinned to the creator vault by address derivation. Not a promise we make; a property of the program.

One hop is ours · every 12h

Fees land in a Squads vault, and moving them to the treasury needs our signature. That hop runs every 12 hours after launch. It is deliberate: the flywheel has no withdrawal instruction, so paying fees straight in would strand them forever if the unaudited code has a defect. Recoverable beats trustless until the audit says otherwise.

Proof

Every epoch is reproducible by a stranger.

Each epoch publishes snapshot slots, per-wallet time-weighted balance, the exclusion list, the swap and the merkle root — enough to rebuild the tree and check your own allocation. The tree structure follows the audited Jito merkle distributor, checked against its Rust vectors — but is deliberately not wire-compatible: our leaf also commits the recipient's index.

Rebuild it yourself → Recompute the whole tree in your browser and check any wallet's proof.

// dry run against $ANSEM, a live graduated pump.fun coin — NOT an ANSEMFUND epoch harvest 46.479943 SOL · $3,502 at $75.34/SOL swap → 16,002.07 ANSEM · 0.33% impact snapshot 142,901 holders · exact · cross-checked allocate 972 recipients · fits the 1,024 ledger cap merkle root 3791f3347e7376b0873273d5a6591a1c… re-verified root reproduces · 972/972 proofs verify · sums balance

Testing

What has actually been verified.

  • No trusted party in the harvest. Pump's collect_creator_fee and collect_coin_creator_fee take no signer — read from the published IDLs. The destination is fixed by PDA derivation, so anyone can sweep fees and nobody can redirect them. The one step this does not cover is moving them from the vault into the treasury, which needs us and runs every 12 hours.
  • The fee destination is fixed, and published before the coin exists. Fees accrue to a Squads vault at 25vupHr3BEW2qALudZiic1RVNDTNBhxBf7QSFLjc63n8 — live on mainnet, baked in at mint, unchangeable after. Publishing it now is a commitment we cannot quietly walk back.
  • The launch is one transaction. Create and dev buy settle atomically — fork-tested against real pump bytecode, and when the buy is forced to fail the mint does not exist afterwards. No moment where the coin is live and un-bought.
  • Claim trees match the reference across 92 checks against vectors from Jito's own Rust, including odd-leaf cases where naive implementations diverge, plus negative controls.
  • The ledger conserves value across 26 simulated epochs — credited equals distributed plus still-owed, all 528 per-wallet audits balance.
  • Holder accounting is exact. Snapshots are rejected unless summed balances equal mint supply, cross-checked against a second RPC method — proven on $ANSEM itself, a pump Token-2022 mint with 142,562 holders.
  • A full epoch ran end to end — harvest, swap, time-weighted allocation, merkle root — and the published artifact re-verifies from scratch: root reproduces, 97/97 proofs check, sums balance.

Not yet done: nothing deployed to mainnet, and no formal audit — audit status →

Audit

Reviewed. Every finding closed.

CertiK AI audit complete Findings resolved Formal audit pending
Scope

The whole program, not a summary of it.

Five instructions and three accounts — every path that touches money, including the swap, the published root and the claim. The surface is deliberately small so there is less of it to get wrong: no per-epoch accounts, no clawback, and no instruction by which anyone, the admin included, can move treasury funds.

Findings were returned, fixed and re-tested before this page went up. The specifics stay with the auditors until a formal audit is complete.

Verification

Fixes proven by tests that are proven themselves.

Every fix is covered by 34 checks running against a live validator, alongside the unit tests — not by reading the change and calling it done.

Then the tests were tested. Each new guard was deliberately removed and the suite re-run, to confirm it went red. A guard no test can catch failing is not a guard.

Reviewed with CertiK’s AI audit tool. That is not a CertiK certification, and not a formal CertiK audit — both are still pending. An AI review is a floor, not a ceiling: it reads the code it is shown and cannot tell you what a live market will do to it. Until a formal audit is complete, treat this as unaudited software holding real money.

Do your own research. None of this is financial advice. Tokens are risky assets and this one is no exception — it can go to zero, distributions depend entirely on trading fees that may never materialise, and smart contracts can fail in ways no review anticipates. Never commit more than you are willing to lose completely.

Roadmap

No dates. Only order.

A date is a promise about work nobody has done yet. This is the order things happen in, and where we actually are.

Phase 01

Built Done

  • Flywheel program: 5 instructions, 3 accounts, no admin path to the treasury
  • 34 fork checks against a live validator, plus 7 unit tests
  • Deterministic time-weighted balance, reproducible by a stranger
  • Merkle publisher cross-checked against the on-chain verifier
  • A full epoch run end to end on real chain data
  • AI audit returned, every finding closed and re-tested
Phase 02

Before launch In progress

  • Atomic launch: create and dev buy in one transaction, so snipers cannot get between themDone
  • Fork tested against real pump bytecode — a failed buy leaves no coin behind15/15
  • Squads vault created as the permanent fee creatorLive
  • Flywheel deployed to mainnet and initialised
Phase 03

Launch Next

  • Mint on pump.fun with the vault as creator
  • Contract address published here first
  • Fees begin accruing from the first trade
  • First crank run by hand and checked against an explorer
  • Then every 12 hours, with each run surfaced on this site
Phase 04

After Later

  • Formal audit — the AI pass was a floor, not a ceiling
  • Crank history published, so every movement is checkable
  • Raise the 1,024-recipient ledger cap if it ever binds
  • Retire the one permissioned hop once an audit justifies it

Phase 04 is conditional on the token earning fees at all. Our own research says most launches earn almost nothing — that applies here too, and no roadmap changes it.

The Black Bull

Built and measured. Not launched.

ANSEMFUND is not live. Nothing here is an offer, a solicitation, or a promise of future distributions. Figures describing launch economics are measurements of other tokens' historical on-chain data, not projections for this one — the same data says the overwhelming majority of launches earn almost nothing, and that applies here too. Distributions depend entirely on trading fees that may never materialise.

The launch data → We sampled tens of thousands of pump.fun curves before building this, and read every Meteora pool ever created for the lifetime-fee picture pump does not record on-chain. It is about the odds any token faces, not about this one. Verify an epoch → Whitepaper →

Terms · Privacy · Disclaimer & risk

Unaffiliated. ANSEMFUND has no relationship with Ansem, who has publicly disavowed tokens using his name, and none with pump.fun, Meteora, Jito or Jupiter beyond using their public software and public on-chain data. $ANSEM refers to the token at 9cRCn9rGT8V2imeM2BaKs13yhMEais3ruM3rPvTGpump; several unrelated tokens share that ticker. Not financial advice. Assume you can lose everything.

Scroll