Clanker Wait Auction logo

Catalog action Blockchain Data

Wait for a Clanker token's MEV auction to end before trading. Polls on-chain auction state (round number, mevModuleEnabled) every 2s and returns when trading opens. Ideal for: token sniping workflows, automated buying after launch, Clanker trading bots.

At a Glance

FieldValue
Action IDclanker-wait-auction
CategoryBlockchain Data
ConnectorNot required
Requires gasNo
Funds movementNone declared
Tagsclanker, base, read

Payload Schema

FieldTypeRequiredDescription
poolIdstringYesThe Uniswap V4 pool ID (bytes32) from the TokenCreated event
chainIdnumberYesChain ID where the Clanker token was deployed (default: 8453 for Base)
pollIntervalMsnumberNoPolling interval in milliseconds (default: 2000, min: 1000, max: 10000)
timeoutMsnumberNoMaximum time to wait in milliseconds (default: 150000 = 2.5 minutes, max: 300000 = 5 minutes)

Result Schema

FieldTypeRequiredDescription
readybooleanYesWhether trading is now open (true) or timed out (false)
waitedMsnumberYesTotal time waited in milliseconds
auctionRoundnumberNoThe auction round when trading opened (>5 means auction ended naturally)
mevModuleEnabledbooleanNoWhether MEV module is still enabled (false means trading is fully open)
pollCountnumberNoNumber of polling iterations performed
exitReasonstringNoWhy the action exited: 'auction_ended', 'mev_disabled', 'timeout'

Examples

json
{ "type": "clanker-wait-auction", "payload": { "poolId": "example-poolId", "chainId": 8453 }, "children": []}

Payload fields can use workflow expressions such as {{$trigger.body.amount}}, {{$nodes.fetch.result.price}}, and {{$props.asset}} when the value should come from a trigger, prior node, or reusable workflow prop.

Ask a question... ⌘I