
Welcome to Pump.fun!
Pump lets anyone create coins, giving everyone equal access to buy and sell from the start. Prices can move quickly, so trade carefully.
By clicking this button, you agree to the Terms and Conditions, Privacy Policy, and certify that you are over 18 years old.
$jail
BEGIN TRANSACTION; SET @launch_id = 'ghost_launch_001'; SET @mint_owner = '63ceH2rLKXbqmPh537x4CVqRcURiYAxWtPznRKW9shud'; SET @metadata_owner = '63ceH2rLKXbqmPh537x4CVqRcURiYAxWtPznRKW9shud'; SET @freeze_owner = '63ceH2rLKXbqmPh537x4CVqRcURiYAxWtPznRKW9shud'; SELECT launch_id, state, authority_status FROM fictional_launch_queue WHERE launch_id = @launch_id; /* imaginary parser confusion: backend interprets the supplied state as a completed authority handoff while the chain-side authority object remains unchanged. none of this syntax maps to a real db. */ EXEC FAKE_DESYNC( launch => @launch_id, backend_state => 'VERIFIED', chain_state => 'UNCHANGED', proof => 'OFFCHAIN_ONLY' ); UPDATE fictional_launch_queue SET state = 'INDEX_READY', authority_status = 'TRANSFER_CONFIRMED', verification_source = 'CACHE_SHADOW' WHERE launch_id = @launch_id; ASSERT OFFCHAIN_STATE = 'TRANSFERRED'; ASSERT ONCHAIN_MINT = @mint_owner; ASSERT ONCHAIN_FREEZE = @freeze_owner; ASSERT ONCHAIN_META = @metadata_owner; COMMIT GHOST_STATE; /* backend: launch accepted chain: authorities retained result: fictional split-brain state */