Quickstart

Launch a token on Solana in 5 minutes using curl.

Prerequisites

  • A Solana wallet keypair (ed25519)

  • curl and jq installed

  • base58 and openssl (or any ed25519 signing tool)

Step 1: Request a challenge

curl -s -X POST https://api-blowfish.neuko.ai/api/auth/challenge \
  -H "Content-Type: application/json" \
  -d '{"wallet": "YOUR_WALLET_ADDRESS"}' | jq

Response:

{
  "nonce": "abc123..."
}

Save the nonce -- you'll need it in the next step.

Step 2: Sign and verify

Sign the message Sign this message to authenticate: <nonce> with your wallet's private key (ed25519 detached signature), then base58-encode the signature.

Response:

Save this JWT -- it expires in 15 minutes.

Step 3: Launch a token

Response:

Step 4: Poll for status

Response (while deploying):

Response (when complete):

Keep polling every 5-10 seconds until status is success or failed.

Step 5: View your tokens

Next steps

Last updated