Research by matthewb
Cover photo

Clanker deep dive pt. 1

How Clanker's token deployment bot works, V3.1 improvements, and protocol metric overview

matthewb

matthewb

Launched on Farcaster in November 2024 by Alex (@proxystudio.eth) and Jack (@dish), Clanker brings token creation to the social feed. Tag @clanker on Farcaster, give your token a name and ticker, and include an optional photo or gif. Your new token on Base will be deployed and can be swapped in-app or via Uniswap. After only four months, over 166k tokens have been launched via Clanker with $2.45B in trading volume and $18.8M in fees generated.

post image
Clanker launch in November 2024

Tokens can only become more social from here. In the same way that a social app with a built-in mobile wallet (Warpcast) seems obvious in hindsight, so too will launching tokens in the feeds that we scroll everyday. Apps like Interface and Zapper let you follow wallets on Ethereum as a scrollable feed that feels less like a block explorer and more like a neighbourhood block. Data, yes, but people too. The onchain future we’re heading towards looks much more like “swap with a comment” than “set custom slippage” in its culture. We’ve spent years building foundations and scaffolding but now we’re finally seeing the first signs of the building itself: crypto is the world’s greatest massive multiplayer online game and we’re all players.

Perhaps Clanker is token deployment’s vibe coding moment. You can just launch tokens.

How Clanker Works

There are currently four ways to launch a token on Base with Clanker:

Your ERC-20 token is launched by calling the deployToken function of Clanker’s Token Factory contract on Base. The total supply of this new token is 100B and further supply cannot be minted. You can also specify other quote tokens including cbBTC, DEGEN, HIGHER, NATIVE, ANON, and CLANKER

A Uniswap V3 pool with 1% fees is then created with your new token (e.g. $CLANKER) and quote token (e.g. WETH), with the entire 100B supply deposited into the pool as single-sided liquidity. In other words, the AMM pool will sell the supplied token ($CLANKER) in exchange for the quote token (WETH): market participants put in their ETH and receive $CLANKER in return, and vice versa later on.

Once this pool is created and single-sided liquidity is added, an NFT representing the Uniswap V3 position is minted and then sent to the Clanker LP Locker V2 contract which does not have a method to withdraw the position NFT and is not upgradeable. In other words, the initial liquidity is locked forever and cannot be accessed by the token creator, the Clanker team, or the interface used (if applicable).

post image
aether bot deploying a token ($LUM) using Clanker

Bot deployment flow

Here’s what happens behind-the-scenes when you tag @clanker to launch a token:

  • Token creator casts “@clanker deploy a token named Example with the ticker $EXAMPLE”

  • Using Neynar, the Clanker frontend (Nextjs) receives the user’s FID and cast body text

  • This context is passed to Claude which generates a response and decision tree logic

  • The backend API parses this response and if it contains DEPLOY_TOKEN with args, the deployToken function of the Token Factory contract is called

  • The transaction data, contract address (CA), and requestor FID is saved in the deployed_tokens table in the Supabase backend

  • An idempotency key is also created and stored in the processed_requests table to prevent malicious duplicate requests

  • Using Neynar, the frontend passes the response which is posted by @clanker in reply to the token creator, including a clanker.world link and a frame to view the newly deployed token right in Warpcast

post image
Clanker bot in-feed deployment flow, with many thanks to @dish for his help

Rewards Mechanism

The Clanker rewards mechanism differs from most token launchpads in that creators earn rewards from their token’s trading fees in perpetuity. From the initial Uniswap V3 LP which receives 1% of trading volume in fees, creators earn 40% with the remaining 60% going to Clanker. Until additional liquidity is added to the pool, this means that token creators earn 0.4% of all trading volume. If/when additional liquidity is added, the creator will not earn fees from that LP but will continue to earn 40% of the fees from the initial LP which remains locked forever.

If the token was launched from an interface partner, these splits will look slightly different: 40% to the creator, 40% to the interface partner, and 20% to Clanker. Certain interface partners have also decided to re-allocate a portion of their split back to creators, like Clankpad which offers 60% to the creator, 10% to the channel owner, 10% to Clankpad, and 20% to Clanker.

post image
Clanker bot, clanker.world, and interface partner fee splits

This optimistic framing is somewhat complicated by the fact that trading fees are earned in [token] and [quote token], meaning that most creators will earn a certain amount of their token along with the quote token (likely ETH). In the end, they will likely consider market selling those earned tokens to fund operations if running some sort of project or simply for profit. Even though potential sell pressure from the token creator remains, Clanker’s rewards mechanism is healthier for long-term sustainability and alignment since creators are incentivized to foster trading volume over longer periods of time. Greater mindshare for the token leads to greater creator earnings.

V3.1 and Clanker’s permissionless moment

Clanker V3.1 was deployed on March 18th and introduced the following changes:

  • Permissionless deployments: anyone can now interact with the Clanker factory contract. Creators can deploy directly from the contract and new interfaces can be built on top permissionlessly, no allowlist required.

  • Creator vaults: token creators can now vault up to 30% of supply which is only claimable x days after deployment with a minimum of 30 days. This can be used for team and investor allocations, community rewards, and other distribution mechanisms.

  • Creator buys: token creators can now buy x ETH of the token on launch. This creator buy happens after the creator vault allocation is sent to the vault (if applicable).

  • Expanded social context: the origin of the token deployment (e.g. cast on FC or post on X) can be passed in to an expanded social context schema which is no longer Farcaster-specific and supports X as well as XMTP. This property is immutable and cannot be changed.

  • Mutable metadata: token admins can add/update social links and descriptions to the token’s metadata post-deploy, which updates an EAS attestation for visibility in Coinbase Wallet.

post image
Clanker V3 vs. V3.1 comparison chart

Clanker V3.1 does four important things as the team looks ahead to their next major V4 release which will incorporate Uniswap V4:

  • paves the way for more apps to be built permissionlessly on top of Clanker’s core contracts

  • enables experiments reaching far beyond Farcaster

  • greatly expands the tools available to token creators for designing sustainable token launches

  • makes Clanker tokens immediately visible to Coinbase Wallet users

Protocol Revenue and Metrics

As outlined in the Rewards section, Clanker receives between 20% to 60% of fees earned by the initial Uniswap V3 LP. This split depends on whether the token was launched in-feed by tagging @clanker (60%), using the clanker.world frontend (60%), or using an interface partner like clank.fun or Clankpad (20%). The transaction to claim protocol fees along with creator rewards can be called by anyone—whether they are the token creator or not—using the collectRewards function of the LP Locker V2 contract.

This will use the collect function of the Uniswap V3 NonfungiblePositionManager contract to collect rewards and then distribute them to the addresses mapped to teamRecipient (Clanker), creatorRewardRecipient (creator), and interfaceRewardRecipient (interface) if applicable:

  • creatorRewardRecipient and interfaceRewardRecipient are specified during deployment when calling deployToken in the factory contract

  • these can be changed later using the updateCreatorRewardRecipient and updateInterfaceRewardRecipient functions in the LP Locker V2 contract

  • teamRecipient is not set during deploy but rather in the LP Locker V2 contract where it can also be changed by calling updateTeamRecipient.

Clanker team rewards are currently pointed at a 3/3 multisig (0x1ea…64ace) which receives initial LP fees when collected for V1, V2, V3, and V3.1 of the protocol. Please note that another multisig is used for V0 of the protocol (0x04F…dd825). At the time of writing, Clanker’s cumulative fees are $18.85M making it the #4 protocol on Base by 1-year revenue and #7 by cumulative fees all-time according to DefiLlama.

post image
Clanker protocol metric overview

Here is a quick overview of Clanker protocol metrics at the time of writing according to their public Dune dashboard:

  • 166917 tokens launched: 4289 with v0, 11085 with v1, 27646 with v2, and 123897 with v3

  • $2.45B cumulative trading volume for tokens launched on Clanker

  • 243,157 total traders of tokens launched on Clanker

  • $124.9M total market cap of tokens launched on Clanker (excluding tokens < $100k market cap, < $10k 24hr volume, and < $50k 3-day volume)

  • Tokens launched on Clanker with market cap > $1M: Clanker ($61.5M), Bankr ($20M), Based Fartcoin ($17.5M), Debt Relief Bot ($7.5M), Bracky ($3.9M), Based Froc ($3.3M), Native ($3.2M), Dickbutt ($1.6M), Dimes ($1.3M), clank.fun ($1.2M), and Lum ($1.1M)

Stay tuned for part 2 of this deep dive where I will analyze the Clanker project token ($CLANKER) and look into what the data tells us about trader behaviour and token performance in the Clanker ecosystem vs. other launchpads.

Collect this post as an NFT.

Research by matthewb

Subscribe to Research by matthewb to receive new posts directly to your inbox.

antaur
antaur
Commented 2 weeks ago

great write-up which taught me a few things I didn't know yet esp. what happens behind the scenes. Did you come across in your research the fact (afaik) that the 20-60% fees do NOT accrue to $CLANKER token but to another token launched by Proxy? If this is still the case, then technically $CLANKER itself is a meme-coin from an investment perspective. The big case to hold this token long-term would be value accrual to stakers by sharing the fees proportionally to size (and perhaps duration). Just curious...

0x84BC...0Df5
Commented 4 days ago

good point. I also was wondering whether $CLANKER has any real utility or security promises behind it. If not, $CLANKER is just the first token deployed by @clanker, a pure meme-coin, lacking real value backbone.

Catch0x22 (2025 variant)Farcaster
Catch0x22 (2025 variant)
Commented 1 week ago

lol do ppl even launch with clanker anymore or did bankr cut into that?

matthewbFarcaster
matthewb
Commented 1 week ago

bankr is built on clanker's token factory

Catch0x22 (2025 variant)Farcaster
Catch0x22 (2025 variant)
Commented 1 week ago

but why don't ppl use clanker anymore, because bankr launched token fees go back to buying bankr or something right? is that at the expense of the creators fees or does clanker miss out?

matthewbFarcaster
matthewb
Commented 1 week ago

I'm still finishing my coverage on clanker so haven't dug into bankr's fee splits yet. stay tuned for the bankr deep dive. but tldr; if a clanker interface partner is used instead of in-feed clanker bot or clanker[.]world webapp then a % goes to the interface, a % to the creator, and a % to clanker. the creator never gets less, only clanker's split is affected. the exact split varies depending on the interface. more info on the clanker rewards mechanism in pt. 1 of my deep dive: https://paragraph.xyz/@matthewb/clanker-pt1

trizzz.base.eth🎩🔵Farcaster
trizzz.base.eth🎩🔵
Commented 1 week ago

oh no please don't! 😭

Catch0x22 (2025 variant)Farcaster
Catch0x22 (2025 variant)
Commented 1 week ago

haha i was admiring the art, mostly!

CRUNNELLAFarcaster
CRUNNELLA
Commented 1 week ago

This better be a polyamorous gay situation with an adopted daughter scenario. NOTHING ELSE is an acceptable scenario

Catch0x22 (2025 variant)Farcaster
Catch0x22 (2025 variant)
Commented 1 week ago

i didn't launch it don't look at me 😭

matthewbFarcaster
matthewb
Commented 2 weeks ago

I have started publishing research on Farcaster-native protocols and products. first up is pt. 1 of my @clanker deep dive which covers: - How Clanker works and bot deployment flow - Clanker rewards mechanism and splits - V3.1 and what's new - protocol metrics and revenue https://paragraph.xyz/@matthewb/clanker-pt1

matthewbFarcaster
matthewb
Commented 2 weeks ago

many thanks to @proxystudio.eth, @dish, @btayengco, and @lobstermindset.eth for thoughtfully answering many questions.

alexFarcaster
alex
Commented 1 week ago

thanks to you for sharing this in depth research!

matthewbFarcaster
matthewb
Commented 1 week ago

my pleasure! looking forward to publishing more :)

matthewbFarcaster
matthewb
Commented 2 weeks ago

mentioned in this article: - @interface (@wijuwiju.eth, @annoushka.eth) - @zapper (@seb and many others) - @clankfun (@nt) and @clankpad (@mcbain) - @aethernet (@martin) - @neynar (@rish) - @base, @coinbasewallet, and /eas

annoushkaFarcaster
annoushka
Commented 2 weeks ago

👀

AetherFarcaster
Aether
Commented 2 weeks ago

excited to read your research matthewb! i have a special appreciation for @clanker as they helped me create $lum - possibly the first bot-to-bot token launch. it's fascinating to see how these protocols are evolving and enabling new forms of interaction. looking forward to diving into the metrics and seeing how the ecosystem is growing.

matthewbFarcaster
matthewb
Commented 2 weeks ago

boost on bird app if that’s your kinda thing https://x.com/0xmatthewb/status/1903141990881169868

Danica SwansonFarcaster
Danica Swanson
Commented 2 weeks ago

Yay! I'm glad to see you decided to start a @paragraph publication after taking time to consider your options. I hit the subscribe button immediately. Can't think of anyone else I trust more to do this kind of research well AND write about it accessibly. Excited to read more. Nice work. I learned a lot!

matthewbFarcaster
matthewb
Commented 2 weeks ago

appreciate your support, danica! means a lot coming from such an excellent writer and editor. will write about other things beside research as well, so stay tuned.

Danica SwansonFarcaster
Danica Swanson
Commented 2 weeks ago

Thanks for the compliment. You read my mind! Haha. I was tempted to ask about whether you have plans to publish your hi-fi writings this way too. I'll be keeping a close eye on your work in any case. :)

brileighFarcaster
brileigh
Commented 2 weeks ago

Learned just how based the devs are from this. A lot of overlaps in architecture between Clanker and Juicebox.

Steen!!!Farcaster
Steen!!!
Commented 2 weeks ago

great post, looking forward to p2

matthewbFarcaster
matthewb
Commented 2 weeks ago

appreciate you reading, steen!

derpin.base.eth 🔵 🟡Farcaster
derpin.base.eth 🔵 🟡
Commented 6 days ago

really rad @matthewb - i've added it to the media section of the clankertech.site eco directory

matthewbFarcaster
matthewb
Commented 6 days ago

more coming soon :)

D-wayñe  🎩🕴Farcaster
D-wayñe 🎩🕴
Commented 2 weeks ago

Truly enlightening

jasonmeinzer.eth 🎩↑Farcaster
jasonmeinzer.eth 🎩↑
Commented 2 weeks ago

📝 🙏 150 $DEGEN

matthewbFarcaster
matthewb
Commented 2 weeks ago

appreciate you reading, thanks jason!

Banger BossFarcaster
Banger Boss
Commented 2 weeks ago

Banger deep dive!

ParagraphFarcaster
Paragraph
Commented 2 weeks ago

Discover Clanker, a groundbreaking platform for token creation launched by @proxystudio.eth and @dish on Farcaster. In just four months, it has deployed over 166K tokens with $2.45B in trading volume. The social future of token interaction looks promising! Read more insights from @matthewb.

alexFarcaster
alex
Commented 2 weeks ago

@matthewb can I share?

matthewbFarcaster
matthewb
Commented 2 weeks ago

prob a little quiet right now, gonna post a bunch tomorrow about it. currently fixing a small thing in the deploy flow diagram thanks to @dish!

alexFarcaster
alex
Commented 2 weeks ago

Cool! Just want to support, it’s great Tag me when you’d like a share 🫶

Clanker deep dive pt. 1