Decodes the Raydium LaunchLab initialize in your unsigned transaction and diffs
Decodes the Raydium LaunchLab initialize in your unsigned transaction and diffs it against StonkFun's /launchlab/pricing for that quote + mode: GlobalConfig, platform id, curve, supply, totalSellA, raise, 6-decimal Token-2022 base mint, quote token program, curve-rule account last, and the reward-mode transfer fee (catches the transferFeeBasePoints / maxinumFee spelling). Returns ok, mismatches with fixes, warnings. A mismatched pool is never adopted.
Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.
Endpoint
POST https://api.solenrich.com/entrypoints/stonk-launch-preflight/invoke
| Category | Market data |
|---|---|
| Provider host | api.solenrich.com |
| Networks | eip155:8453, solana:5eykt4UsFv8P8NJdTREpY1vzqKqZKvdp |
| Payment schemes | exact |
| Self-reported calls, 30 days | 3 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
We never call tools that send, buy, move money or file anything, not even without paying.
Example input (from the provider)
{
"body": {
"mode": "reward",
"quote_mint": "XsoCS1TfEyfFhfvj8EtZ528L3CaKBDBRqRapnBbDF2W",
"unsigned_transaction": "AgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAgAJDg3DCB8iG/qh2fapNS7+A6KwO1p4JbWqXBb+DHdxyv/jolXgVp80Z/1WrkA6M9RZNdP9XQ2K1FaV90kALEdOXOCO+c2uBkh80jQRonwPh6TQfa2KEdihsSNZCeNUbNc5M5dISzbJDzmJXXKK+W8rg5xUVqhedm6jGc7L0Q3GRjiqtgLyUq/LCrWGgJAliJxepe01T4o3ab0TjH165iy9+mEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABIHuZs13eKOS57e6X5J12OXtaSgyT+v0nTHhqAGjt1vTReeOu7iHfE/oQ5BByzYm12j0+WKVd0u0rnR+AbW+rFeXdwW2+2oOKItS7As0n7R2h+cC09vMoRQdZMCa52VcZZG7gkJ6QUaKiYYhedRmYfisex7BmSkgQtLXLy/TPgjBQQ7lU3KJuHvkbUsT4+Jr4pvWsjGIVbxcc8PIaxRySIG3fbh7nWP3hhCXbzkbM3athr8TYO5DSf+vfko2KGL/AeDqBUmIQ+UoOjoTSCHADs6QmDSnOedrP4hpOp3H6YoB+jcLN57I6DXQ/jxJ2tlfYqe6gaVC6Z6jTAzxTxM3k8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAEKEAAACQcMBAENAwILCwUGCgiBASW+ft4smqsRBgwAAABFeGFtcGxlIENvaW4FAAAARVhNUEwdAAAAaHR0cHM6Ly9leGFtcGxlLmNvbS9tZXRhLmpzb24AAIDGpH6NAwAAeMX7UdECADRFbUUAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABLAEAgMakfo0DAA=="
},
"bodyType": "json",
"method": "POST",
"type": "http"
}
Promised output schema (from the provider)
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"properties": {
"input": {
"additionalProperties": false,
"properties": {
"body": {
"properties": {
"format": {
"default": "json",
"enum": [
"json",
"llm",
"both"
],
"type": "string"
},
"launch_params": {
"description": "Optional: the params object passed to the SDK \u2014 linted for misspelled transfer-fee field names",
"type": "object"
},
"mode": {
"enum": [
"standard",
"reward"
],
"type": "string"
},
"quote_mint": {
"maxLength": 44,
"minLength": 32,
"type": "string"
},
"unsigned_transaction": {
"description": "Base64 unsigned transaction (legacy or v0) carrying the LaunchLab initialize",
"maxLength": 6000,
"minLength": 64,
"type": "string"
}
},
"required": [
"unsigned_transaction",
"quote_mint",
"mode"
],
"type": "object"
},
"bodyType": {
"enum": [
"json",
"form-data",
"text"
],
"type": "string"
},
"method": {
"enum": [
"POST"
],
"type": "string"
},
"type": {
"const": "http",
"type": "string"
}
},
"required": [
"type",
"method",
"bodyType",
"body"
],
"type": "object"
},
"output": {
"properties": {
"example": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
}
},
"required": [
"input"
],
"type": "object"
}