Aerodrome Claim Fees logo

Catalog action EVM Onchain wallet Gas receive

Claim accumulated trading fee rewards for a veNFT on Aerodrome Finance (Base). Use aerodrome-get-claimable-rewards first to discover claimable fees. Groups fees by fee contract and calls Voter.claimFees in a single transaction. Ideal for: automated fee harvesting, veNFT reward collection, DeFi yield automation.

This action can require a wallet connector, gas, token movement, or an external side effect. Test with simulation or a controlled amount before using it in a live workflow.

At a Glance

FieldValue
Action IDaerodrome-claim-fees
CategoryEVM Onchain
Connectorwallet
Requires gasYes
Funds movementreceive
Tagsdefi, fees, claim, base, onchain, write

Payload Schema

FieldTypeRequiredDescription
chainIdnumberYesChain ID. Supported: Base (8453)
tokenIdstringYesThe veNFT token ID to claim fees for
claimableFeesarrayYesArray of claimable fee items from aerodrome-get-claimable-rewards. Each item must include feeAddress and tokenAddress.

Result Schema

FieldTypeRequiredDescription
skippedbooleanNoTrue if no claimable fees were found and the claim was skipped
reasonstringNoReason the claim was skipped (only present when skipped is true)
txHashstring | nullNoTransaction hash of the claim (null when skipped)
tokenIdstringYesThe veNFT token ID claimed for
claimedarrayNoItems that were claimed (empty when skipped)

Examples

json
{ "type": "aerodrome-claim-fees", "payload": { "chainId": 8453, "tokenId": "1", "claimableFees": [] }, "children": [], "connector": { "type": "wallet", "id": "conn_wallet" }}

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