> For the complete documentation index, see [llms.txt](https://zardoz.gitbook.io/zardoz-docs-1/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zardoz.gitbook.io/zardoz-docs-1/external-launchpads.md).

# External launchpads

## External launchpads

Zardoz can build **passthrough launch transactions** for third-party pads on Robinhood Chain. Those protocols own fee logic, bonding rules, and authorization — Zardoz is the unified UI + **platform fee wrapper**.

All external launches (except Klik’s two-step fee settle) pay **0.002 ETH** through `LaunchFeeRouter`.

***

### Supported pads

| Pad              | Site                                 | Factory / portal                                                                           | Token deep link                          |
| ---------------- | ------------------------------------ | ------------------------------------------------------------------------------------------ | ---------------------------------------- |
| **NOXA**         | [fun.noxa.fi](https://fun.noxa.fi)   | `0xd9ec2db5f3d1b236843925949fe5bd8a3836fccb`                                               | `fun.noxa.fi/rh/token/{address}`         |
| **Flap**         | [flap.sh](https://flap.sh)           | `0xe9f7ab7de8fb8756acbb6a1cd13316a43308197b`, `0x26605f322f7ff986f381bb9a6e3f5dab0beaeb09` | `flap.sh/robinhood/{address}`            |
| **Bankr**        | [bankr.bot](https://bankr.bot)       | `0x1b37d3a72082029c44b35b604ea473617580b69a`, `0xeb7c034704ef8dcd2d32324c1545f62fb4ad0862` | `bankr.bot/terminal/discover/{address}`  |
| **trench.today** | [trench.today](https://trench.today) | `0x2ecfb98bce4f3616115e4a2a7a2379af388dfbaa`                                               | `trench.today/token/robinhood/{address}` |
| **Bags**         | [bags.fm](https://bags.fm)           | `0x46ad6f53a3c26c8027826e2104cf0595b7b24d40`                                               | `bags.fm/token/{address}`                |
| **Klik**         | [klik.finance](https://klik.finance) | `0x16cf6788b762ee8969744586ed16fc5705140dd7`                                               | klik.finance                             |
| **ape.store**    | [ape.store](https://ape.store)       | passthrough                                                                                | ape.store                                |

Detection: factory address in create tx → pad badge on Discover (`lib/launchpads.ts`).

***

### Where to claim fees

| Pad             | Claim location                                                  |
| --------------- | --------------------------------------------------------------- |
| NOXA            | Portfolio / Farm → Launch fees (`collectFees` on locker)        |
| Flap            | Portfolio / Farm → Launch fees (Index Vault `claim`)            |
| Bankr / Doppler | Hook flush + initializer `collectFees(poolId)`                  |
| trench.today    | Creator registered at launch; claim on trench + Portfolio panel |
| Bags / others   | Pad’s own site / contracts                                      |
| Klik            | Klik fee model on klik.finance                                  |

***

### Klik exception

Klik requires the **creator EOA** as `msg.sender` for vanity address derivation. Flow:

1. `LaunchFeeRouter` — fee-only settle tx (`wrapPayFeeOnlyCall`)
2. Direct `deployCoin` from user wallet (no router wrap on deploy)

Other pads use single `LaunchFeeRouter.execute(target, data, launchValue, referrer)`.

***

### Bankr post-launch buy

After Bankr deploy, optional initial buy uses `{ skipFee: true }` — platform fee already paid on create.

***

### Launch fee router allowlist

Only allowlisted factory/portal targets can be called through the router. Deploy script: `scripts/allowlist-fee-router.ts` — includes Instant + Klik + external factories.

Router address: `0xB36Bd2A864cB5AD202c2b66Ba20C4e2da9484151`

***

### Indexing external pads

For Trenches / terminals, map factory address → pad id using `LAUNCHPAD_CREATORS`. Zardoz Instant uses platform id **`zardoz`**; others use their pad id (`noxa`, `flap`, `bankr`, …).

`GET /api/tokens?network=mainnet` returns merged feed — filter client-side by `launchpad` field.

Next: Launching · Platform fees


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://zardoz.gitbook.io/zardoz-docs-1/external-launchpads.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
