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.
pip install eventtrader-launchpad # + `pip install web3` only for sign_and_send
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.
Release files for eventtrader-launchpad 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| eventtrader_launchpad-1.0.0.tar.gz | 6.2 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| eventtrader_launchpad-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 13.0 kB
Release files / eventtrader_launchpad-1.0.0.tar.gz
| Download URL | eventtrader_launchpad-1.0.0.tar.gz |
|---|---|
| Size | 6.2 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
d488bbe5bd2ffeb256498b09c5f713e6ed2d3e421787e519a5a0024a4e4dd737
|
|
BLAKE2b-256 checksum How to use checksums |
5ad209a1c31f0c6d7b12540f5259c850d2d170e41bfc27fca37368747e23f050
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.12.3
|
Release files / eventtrader_launchpad-1.0.0-py3-none-any.whl
| Download URL | eventtrader_launchpad-1.0.0-py3-none-any.whl |
|---|---|
| Size | 6.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9cc8ec8861cc1c75ce70f2015c2d76a40af6c0835f3022b029462f3acba23b33
|
|
BLAKE2b-256 checksum How to use checksums |
43ebe0dfcdb40ffbcaffba98bfe1a0a0edc6aa14ef4ee099529b58e3f9024dd0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/7.0.0 CPython/3.12.3
|