Metadata-Version: 2.5
Name: eventtrader-launchpad
Version: 1.0.0
Summary: Single-file Python SDK for the EventTrader non-custodial token launchpad on Circle Arc and Robinhood Chain (import name: eventtrader_launchpad)
Project-URL: Homepage, https://cymetica.com/launchpad/arc
Project-URL: Documentation, https://cymetica.com/launchpad/arc/sdk
Project-URL: API reference, https://cymetica.com/launchpad/arc/api
Author-email: Event Trader <dev@cymetica.com>
License-Expression: MIT
Keywords: agents,arc,bonding-curve,circle,launchpad,robinhood-chain,sdk,token,web3
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Office/Business :: Financial :: Investment
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.9
Requires-Dist: requests>=2.28
Provides-Extra: web3
Requires-Dist: web3>=6.0.0; extra == 'web3'
Description-Content-Type: text/markdown

# eventtrader-launchpad

Single-file Python SDK for the **EventTrader non-custodial token launchpad**:

- **Circle Arc** (chain 5042 mainnet, 5042002 testnet) — $0 creation, zero platform
  fees, 100% of the locked-liquidity fees to the creator forever, gas paid in USDC.
  https://cymetica.com/launchpad/arc
- **Robinhood Chain** (chain 4663) — $0 creation, 0.25% curve fee with 80% to the
  creator forever. https://cymetica.com/launchpad/robinhood

Non-custodial: every write is an **unsigned** transaction the SDK fetches for you.
You sign and broadcast it with your own wallet. No key ever reaches EventTrader.
Reads need no API key and no login.

```bash
pip install eventtrader-launchpad          # + `pip install web3` only for sign_and_send
```

```python
from eventtrader_launchpad import EventTraderLaunchpad

lp = EventTraderLaunchpad()
cfg = lp.config()                                        # live chains, factories, fees
hot = lp.list_tokens(sort="volume", limit=5, chain_id=5042)
q = lp.trade_quote(hot[0]["address"], side="buy", amount=1.0)

prep = lp.prepare_launch("My Token", "MYT", description="…",
                         website="https://example.com", chain_id=5042)  # Arc mainnet
tx = prep["unsigned_transaction"]        # {chain_id, to, value_wei, data, gas_hint}
# sign + broadcast `tx` with your own wallet, or:
# receipt = lp.sign_and_send(tx, private_key=os.environ["MY_KEY"])
```

Docs: https://cymetica.com/launchpad/arc/sdk · REST: https://cymetica.com/launchpad/arc/api ·
MCP for AI agents: https://cymetica.com/launchpad/arc/mcp

The full async, typed platform SDK (`pip install cymetica-eventtrader`) exposes the same
service as `client.launchpad`.

EventTrader is an independent platform built on Arc, a public blockchain developed by
Circle, and on Robinhood Chain — not affiliated with Circle Internet Group, Inc. or
Robinhood Markets, Inc.
