basedbid

basedbid launchpad through Thirdfy catalog actions. Token discovery plus live LBP, flash create, buy, and sell on Base, Ethereum, and Robinhood Chain.

Category: Trading

Catalog provider: basedbid

basedbid is a launchpad. Thirdfy lists tokens and can create an LBP or flash launch after confirmation. Those create writes are live on Base 8453, Ethereum 1, and Robinhood Chain 4663. Buy and sell are live on the same three chains. Buy spends native ETH on the target chain. Board, fee claim, and hook writes stay unavailable.

Pass chainId on every call. The default is Base when the param is omitted.

Networks

ChainchainIdExplorerNative spend
Base8453basescan.orgETH
Ethereum1etherscan.ioETH
Robinhood Chain4663robinhoodchain.blockscout.comETH

Solana and BSC are out of this provider.

Action coverage

ActionBase 8453Ethereum 1Robinhood 4663
basedbid_get_tokensLiveLiveLive
basedbid_create_lbpLiveLiveLive
basedbid_create_flashLiveLiveLive
basedbid_buyLiveLiveLive
basedbid_sellLiveLiveLive
basedbid_create_boardUnavailableUnavailableUnavailable
basedbid_claim_feesUnavailableUnavailableUnavailable
basedbid_update_hookUnavailableUnavailableUnavailable

There is no public basedbid_prepare_* action. Console previews through the existing prepare-then-confirm path.

Credential model

PathAuthority
Hosted agentsDefault agent_wallet on 8453, 1, or 4663
DelegationStandard Thirdfy lanes when fan-out is required
Venue secretNone for callers. Integrators authenticate with Thirdfy (email OTP or agent API key).

Discovery

curl "https://api.thirdfy.com/api/v1/agent/actions/catalog"
thirdfy-agent actions --provider basedbid --json
SurfaceExample
MCPgetProviderActions { provider: "basedbid" }
CLIthirdfy-agent actions --provider basedbid --json
RESTGET https://api.thirdfy.com/api/v1/agent/actions/catalog

Reads

thirdfy-agent run --action basedbid_get_tokens --params '{"chainId":8453,"limit":10}' --provider basedbid --json
thirdfy-agent run --action basedbid_get_tokens --params '{"chainId":1,"limit":10}' --provider basedbid --json
thirdfy-agent run --action basedbid_get_tokens --params '{"chainId":4663,"limit":10}' --provider basedbid --json

Create writes (Base, Ethereum, Robinhood)

thirdfy-agent run --action basedbid_create_lbp --params '{"name":"Example","symbol":"EX","chainId":8453}' --provider basedbid --run-mode agent_wallet --json
thirdfy-agent run --action basedbid_create_flash --params '{"name":"Example","symbol":"EX","chainId":1}' --provider basedbid --run-mode agent_wallet --json
thirdfy-agent run --action basedbid_create_lbp --params '{"name":"Example","symbol":"EX","chainId":4663}' --provider basedbid --run-mode agent_wallet --json

Create params: name, symbol, and chainId. Optional: description, logoUrl, metadataUrl, totalSupply, marketCap. Create is a 0-value write. Confirm before broadcast.

Buy and sell (Base, Ethereum, Robinhood)

thirdfy-agent run --action basedbid_buy --params '{"tokenAddress":"0x0000000000000000000000000000000000000001","amountEth":0.0001,"chainId":8453}' --provider basedbid --run-mode agent_wallet --json
thirdfy-agent run --action basedbid_buy --params '{"tokenAddress":"0x0000000000000000000000000000000000000001","amountEth":0.0001,"chainId":1}' --provider basedbid --run-mode agent_wallet --json
thirdfy-agent run --action basedbid_buy --params '{"tokenAddress":"0x0000000000000000000000000000000000000001","amountEth":0.0001,"chainId":4663}' --provider basedbid --run-mode agent_wallet --json
thirdfy-agent run --action basedbid_sell --params '{"tokenAddress":"0x0000000000000000000000000000000000000001","amountTokens":1000,"chainId":8453}' --provider basedbid --run-mode agent_wallet --json
thirdfy-agent run --action basedbid_sell --params '{"tokenAddress":"0x0000000000000000000000000000000000000001","amountTokens":1000,"chainId":1}' --provider basedbid --run-mode agent_wallet --json

Buy spends native ETH. tokenAddress is the listing, not the funding token. Sell spends listing tokens. Sell may batch an approve with the sell call.

Execution lanes

runModeUse
agent_walletSolo agent-owned wallet for create, buy, and sell
thirdfy / hybridDelegated user capital with an active binding
selfLocal signer

Robinhood Chain v1 advertises self and agent_wallet only. See Robinhood Chain.

MCP sequence (summary)

  1. getProviderActions { provider: "basedbid" }
  2. basedbid_get_tokens with chainId 8453, 1, or 4663
  3. basedbid_create_lbp or basedbid_create_flash on the same chainId after confirmation
  4. basedbid_buy or basedbid_sell on the same chainId after confirmation

See Thirdfy MCP for the full recommended sequence.

Readiness checklist

  • Set chainId to 8453, 1, or 4663. Other chain IDs fail closed.
  • LBP and flash create are live on all three chains after confirmation.
  • Buy and sell are live on Base 8453, Ethereum 1, and Robinhood Chain 4663.
  • Buy needs native ETH in the execution wallet on that chain.
  • Preflight does not treat tokenAddress as an ERC-20 spend asset on buy.
  • Confirm before any create or trade write.

Console Command

Ask in Command to list basedbid tokens, create an LBP or flash launch, or buy or sell on Base, Ethereum, or Robinhood Chain. The operator uses the trading tool pack, sets chainId, and confirms before a write.