git404hub

what is alloyfund fr?

alloyrh/alloyfund — explained in plain English

Analysis updated 2026-05-18

463SolidityAudience · developerComplexity · 4/5LicenseSetup · hard

tl;dr

Smart contracts for launching a token that automatically pays holders real stock like Nvidia or Tesla shares from trading fees.

vibe map

mindmap
  root((repo))
    What it does
      Launches backed tokens
      Auto buys real stock
      Drips dividends to holders
    Tech stack
      Solidity
      Uniswap V3
      Robinhood Chain
    Use cases
      Launch a dividend coin
      Hold coin for stock drips
      Sweep fees permissionlessly
    Audience
      Crypto developers
      Token creators
      DeFi traders

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Launch a new token backed by a real tokenized stock in a single transaction.

VIBE 2

Call the permissionless sweep function to convert trading fees into stock payouts.

VIBE 3

Hold a launched coin to passively accrue and claim real stock like Nvidia or Tesla.

VIBE 4

Study the constant time dividend accounting pattern used to distribute payouts.

what's the stack?

SolidityUniswap V3Robinhood ChainERC-20

how it stacks up fr

alloyrh/alloyfundcapminal/capminal-contracts0xlocker/d17-contracts
Stars463241
LanguageSoliditySoliditySolidity
Setup difficultyhardhardhard
Complexity4/54/55/5
Audiencedeveloperdeveloperdeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · hard time til it works · 1h+

Requires deploying to Robinhood Chain and understanding Uniswap V3 pool mechanics.

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

in plain english

Alloy is a set of smart contracts for a launchpad on Robinhood Chain that creates a new kind of token: a coin that pays its holders in real, tokenized stock. Each coin is tied at launch to one Robinhood-issued tokenized stock such as Nvidia, Tesla, or Apple. Every trade of that coin pays a small fee, and a portion of that fee is automatically used to buy the backing stock and send it, pro rata, to everyone holding the coin. The launch process happens in a single transaction. It deploys a fixed supply ERC-20 token with no ability to mint more later, opens a trading pool against a stablecoin, and puts the entire token supply into that pool as the starting liquidity. The liquidity position is never withdrawn, so the trading pool cannot be drained by the creator later. Anyone can trigger a function called sweep, which collects the fees built up in the pool, converts them to dollars, and splits them according to a fixed schedule: most goes toward buying the backing stock for holders, a smaller share goes to the person who created the coin, and the rest buys back the project's own token. The distribution of stock to holders uses a well known accounting pattern that lets it calculate each person's share in constant time, so it works no matter how many holders there are, without looping through a list. Addresses like the trading pool itself and the launchpad contract are excluded from receiving these dividends, so the payouts only reach real coin holders rather than being absorbed by the pool. The project also has its own token that collects a share of fees from every coin launched on the platform, and holding enough of it can waive launch fees or boost the dividends a creator receives. The contracts are written in Solidity and are verified and deployed on Robinhood Chain. The project documents its security properties directly, including that the owner cannot mint new tokens, pause the contracts, or seize balances, though it notes that the fee-sweeping trades are exposed to front running because they do not set a minimum output amount.

prompts (copy fr)

prompt 1
Explain how the sweep function converts trading fees into stock payouts in this contract.
prompt 2
Walk me through the launch() function step by step and what it deploys.
prompt 3
Show me how the magnified per-share dividend accounting works in AlloyMeme.
prompt 4
What are the security guarantees and known trade-offs of this launchpad?

Frequently asked questions

what is alloyfund fr?

Smart contracts for launching a token that automatically pays holders real stock like Nvidia or Tesla shares from trading fees.

What language is alloyfund written in?

Mainly Solidity. The stack also includes Solidity, Uniswap V3, Robinhood Chain.

What license does alloyfund use?

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

How hard is alloyfund to set up?

Setup difficulty is rated hard, with roughly 1h+ to a first successful run.

Who is alloyfund for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.