Vanity mint addresses (…orbit / …orb) + OrbitX ticker presets - #106
Open
audifyx wants to merge 2 commits into
Open
Vanity mint addresses (…orbit / …orb) + OrbitX ticker presets#106audifyx wants to merge 2 commits into
audifyx wants to merge 2 commits into
Conversation
… ticker presets - Generate & partial-sign the mint keypair server-side (secret never hits frontend) - Pluggable mint source: live grind (short suffix e.g. orb) or pre-ground pool (orbit) - Supabase: vanity_mint_pool + atomic claim RPC + token_launches record - Offline multi-core grinder script for filling the orbit pool - ORBITX/ORB/ORBIT ticker quick-picks on the launch form
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
… ticker presets - Generate & partial-sign the mint keypair server-side (secret never hits frontend) - Pluggable mint source: live grind (short suffix e.g. orb) or pre-ground pool (orbit) - Supabase: vanity_mint_pool + atomic claim RPC + token_launches record - Offline multi-core grinder script for filling the orbit pool - ORBITX/ORB/ORBIT ticker quick-picks on the launch form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this adds
Vanity mint addresses — every launched coin gets a mint address ending in the OrbitX tag.
/api/pump-create— the secret key never reaches the browser (previouslyKeypair.generate()ran client-side).orb, ~49k keys ≈ a few seconds) OR pops from a pre-ground pool for a long suffix (orbit, ~82M keys — infeasible live).VANITY_SUFFIX(defaultorb),VANITY_CASE_INSENSITIVE,VANITY_LIVE_BUDGET_MS,VANITY_USE_POOL.vanity_mint_pool+ atomicclaim_vanity_mintRPC (FOR UPDATE SKIP LOCKED) +token_launchesrecord table.web/scripts/grind-vanity.mjs: multi-core offline grinder to fill the pool fororbit.Why orbit is not live-grindable
Base58 (case-insensitive):
orb≈ 49k keys avg;orbit≈ 82M keys avg = hours per address, impossible in a serverless function. Hence the pool path fororbit.Before merge
SUPABASE_SERVICE_ROLE_KEYin Vercel env.orbit: run the grinder to fill the pool, then setVANITY_SUFFIX=orbit+VANITY_USE_POOL=true.