Back to Projects
ReactSolidityLayerZeroThe GraphAI Agents

BuilderFi

No-code blockchain automation platform ('Zapier for Web3') for AI-powered DeFi workflows.

2025

Objective

Enable non-technical users to create AI-powered DeFi workflows through drag-and-drop interfaces.

Technical Challenges

  • 1.Abstracting complex DeFi operations into intuitive visual components.
  • 2.Enabling secure, gasless execution of user-defined automation workflows.
  • 3.Building reliable cross-chain communication for multi-network strategies.

Outcomes & Impact

  • Reduced DeFi automation setup from hours of coding to 15-minute visual configuration.
  • Created 20+ pre-built workflow templates.
  • Positioned for potential acqui-hire with term sheets prepared.

Implementation

builderfi.sol
1// Automation Workflow Execution
2function executeWorkflow(uint256 workflowId, bytes[] calldata actions) external payable {
3 Workflow storage w = workflows[workflowId];
4 require(w.owner == msg.sender, "Auth");
5
6 for(uint i=0; i<actions.length; i++) {
7 (address target, bytes memory data) = abi.decode(actions[i], (address, bytes));
8 (bool success, ) = target.call{value: 0}(data);
9 require(success, "Action Failed");
10 }
11}