action.launchSolana — Launch Solana
Requests a Solana coin launch.
Inputs
| Port | Kind | Type | Structure | Notes |
|---|---|---|---|---|
exec-in | exec | — | — | Required |
suggest_only | data | boolean | scalar | Optional |
name | data | string | scalar | Required |
ticker | data | string | scalar | Required |
image | data | image_url | scalar | Provide either this or image_blob |
image_blob | data | image_blob | scalar | Provide either this or image |
twitter | data | url | scalar | Optional |
website | data | url | scalar | Optional |
buy_amt | data | number | scalar | Required by schema |
tip_amt | data | number | scalar | Required by schema |
platform | data | solana_launch_platform | scalar | Required (e.g. pump_fun, bonk, bonk_usd1) |
wallet | data | solana_wallet | scalar | Required |
bundle_config | data | bundle_config | scalar | Optional |
| Port | Kind | Notes |
|---|---|---|
exec-out | exec | |
mint | data | Placeholder null |
lp | data | Placeholder null |
- Runtime requires exactly one of
imageorimage_blob(not both), and at least one must be present. - The
mintandlpoutputs are placeholders and are currently alwaysnull.
action.launchBnb — Launch BNB
Same as action.launchSolana, plus:
| Port | Kind | Type | Structure | Notes |
|---|---|---|---|---|
gwei | data | integer/number | scalar | Required |
platform | data | bnb_launch_platform | scalar | Required (e.g. four_meme) |
wallet | data | bnb_wallet | scalar | Required |
action.delay — Delay
Sleeps for a duration (seconds).
Inputs
| Port | Kind | Type | Structure | Notes |
|---|---|---|---|---|
exec-in | exec | — | — | Required |
delay | data | number | scalar | Optional; falls back to config default |
| Port | Kind |
|---|---|
exec-out | exec |
defaultDelaySeconds(number) — used whendelayisn’t wired
action.notify — Notify
Emits a notify effect with { level, message }.
Inputs
| Port | Kind | Type | Structure |
|---|---|---|---|
exec-in | exec | — | — |
message | data | string | scalar |
| Port | Kind |
|---|---|
exec-out | exec |
level(string, defaultinfo) — e.g.info,warning,error