Plugins
Plugins provide the actions available in your workflows. Each plugin adds one or more actions that you can drag onto the workflow canvas and configure.
Available Plugins
| Plugin | Category | Actions | Credentials Required |
|---|---|---|---|
| Web3 | Blockchain | Balance checks, contract reads/writes, transfers, calldata decoding, risk assessment | Wallet (for writes) |
| Code | Code | Execute custom JavaScript in a sandboxed VM | None |
| Math | Math | Aggregation operations (sum, count, average, median, min, max, product) | None |
| Safe | Protocol | Safe multisig owners, threshold, nonce, module status, pending transactions | API key (for pending txs) |
| Aave V3 | Protocol | Supply, borrow, repay, collateral management, health factor monitoring | Wallet (for writes) |
| Aerodrome | Protocol | Pool reserves, swap quotes, ve(3,3) voting, gauge management, AERO token operations | Wallet (for writes) |
| Ajna | Protocol | Liquidation keeper operations, vault rebalancing, buffer management | Wallet (for writes) |
| Chainlink | Protocol | Oracle price feeds — latest prices, round data, decimals, feed metadata | None |
| Compound V3 | Protocol | Supply, withdraw, base/collateral/borrow balance monitoring | Wallet (for writes) |
| CoW Swap | Protocol | Order pre-signing, fill monitoring, conditional orders, order cancellation | Wallet (for writes) |
| Curve | Protocol | Pool swaps, LP management, virtual prices, CRV token operations | Wallet (for writes) |
| Frax Ether V2 | Protocol | Liquid staking on Ethereum mainnet. Mint frxETH 1:1 from native ETH, or mint and stake directly into sfrxETH in one transaction | Wallet (for writes) |
| Lido | Protocol | Wrap/unwrap stETH to wstETH, exchange rates, balances across Ethereum, Base, Sepolia | Wallet (for writes) |
| Morpho | Protocol | Supply, borrow, repay, liquidate, collateral management, position tracking, market monitoring | Wallet (for writes) |
| Pendle | Protocol | Yield tokenization, market data, PT/YT/SY balances, mint/redeem | Wallet (for writes) |
| Rocket Pool | Protocol | rETH exchange rate, balances, total supply, ETH deposits and withdrawals | Wallet (for writes) |
| Sky | Protocol | USDS savings, token balances, approvals, DAI/MKR converters | Wallet (for writes) |
| Spark | Protocol | Lending, borrowing, sDAI savings, health factor monitoring | Wallet (for writes) |
| Uniswap | Protocol | Pool discovery, LP position details, position NFT management | Wallet (for writes) |
| Yearn V3 | Protocol | ERC-4626 yield vaults, strategy monitoring, profit tracking | Wallet (for writes) |
| Discord | Notifications | Send messages to channels | Webhook URL |
| Telegram | Notifications | Send messages to chats | Bot token |
| SendGrid | Notifications | Send emails | API key |
| Webhook | Integrations | Send HTTP requests to external services | None |
| Hyperliquid | Data | Read-only Info API queries: clearinghouse state, vault details, validators, funding history, spot deploy state, referrals, sub-accounts, active asset data | None |
| Blockscout | Data | Read-only block explorer queries: address balance, transaction details, token info | None (optional instance URL/API key) |
How Plugins Work
- Add an action — Drag a plugin action from the action panel onto your workflow canvas
- Configure inputs — Set parameters in the right-side panel. Use
{{NodeName.field}}to reference outputs from previous steps - Connect nodes — Wire the action into your workflow flow using edges
- Run — Execute the workflow. Each action runs in sequence following the edges
Plugin Categories
Blockchain (Web3)
Core on-chain operations: reading balances, calling smart contracts, transferring tokens, and security analysis. Read-only actions work without a wallet. Write actions require a connected Para wallet.
Code
Execute custom JavaScript in a sandboxed VM environment with access to workflow data via template variables. Use for data transformation, aggregation, external API calls, and complex conditional logic. No credentials required.
Math
Pure computation nodes for aggregating numeric values from upstream nodes. Supports sum, count, average, median, min, max, and product operations with optional post-aggregation arithmetic. Automatically handles large integers using BigInt arithmetic to preserve precision.
Security
Security-focused actions for transaction analysis, risk assessment, and Safe multisig monitoring. These actions use maxRetries = 0 (fail-safe behavior) to ensure errors block execution rather than silently retrying.
Notifications
Send alerts and messages through Discord, Telegram, email, and webhooks. Typically used as the final step in monitoring workflows to notify your team when conditions are met.
Integrations
Connect to external services via webhooks and HTTP requests. Use these to trigger external systems, update dashboards, or integrate with third-party tools.