System components
Five services work together to run the protocol.Safe accounts
Shared pools vs Blend
Safe deployment
Blend usesBlendSafeFactory to deploy Safes with CREATE2 determinism. Your Safe address is derived from your wallet address and a salt nonce. The same inputs produce the same address on every chain.
The factory reads the module and guard addresses from its own storage at deployment time rather than encoding them in the initializer bytecode. This means module and guard addresses can differ per chain while your Safe address stays the same everywhere.
Module architecture
Every Safe ships with three components installed during setup.- RolesReceiver acts as the authorized module. It extends
StrategyManagerand processes vault operations on your Safe. - RolesGuard validates every transaction. It enforces pause states and blocks unauthorized module calls.
- Safe4337Module enables ERC-4337 account abstraction for gas-sponsored transactions via paymaster.
Automation model
TheStrategyManager (inside RolesReceiver) orchestrates all vault operations. It does not contain strategy logic itself. Instead, it delegates calls to specialized VaultController contracts.
The execution chain works like this:
- An off-chain worker calls
StrategyManager.executeRebalance(safe, vault, rebalanceData) - The StrategyManager validates the vault config and checks the rate limit
- It calls
safe.execTransactionFromModule()targeting the VaultController - The VaultController runs inside the Safe’s context via delegatecall
The mandate in contract terms
Can Blend move assets outside the mandate? No. Here is why, in contract terms.- Single executor. Only the authorized executor address can call
executeRebalanceorexecuteVaultAction. - Delegatecall inside the Safe. VaultControllers run in the Safe’s own context. They can only call whitelisted functions on approved protocols.
- No arbitrary recipients. Withdrawals resolve the recipient on-chain from the Safe’s single owner. Off-chain input cannot redirect funds.
- Timelocked whitelist. New whitelisted actions wait out a timelock before going live, and your platform can opt out.
- No admin keys. Contracts are immutable. There is no upgrade path and no override.
Direct exit
You hold the owner keys to your Safe on every chain. If Blend’s interface went offline, your funds would still be in your Safes.- Go to safe.global or any block explorer
- Interact with your Safe contracts directly
- Withdraw your funds on each chain
Cross-chain coordination
Same address everywhere
Your Safe has the same address on every chain where it is deployed. CREATE2 determinism plus runtime module resolution make this possible. You deploy on Base first, and later deploy on Arbitrum with the same address.Bridge adapters
Blend uses two bridge adapters for cross-chain transfers.
Bridge selection happens server-side during quote generation. You receive an action plan. You do not interact with bridge contracts directly.
Role updates across chains
Configuration changes propagate cross-chain through LayerZero messaging.RolesBroadcasteron the source chain sends a role update message- LayerZero delivers the message to the destination chain
RolesReceiveron the destination chain validates the source (trusted broadcaster address + trusted chain ID)- The receiver processes the update (vault config change or executor change)
RolesBroadcaster calls RolesReceiver.processSameChainCall() directly instead of routing through LayerZero.
Deposit routing
When you deposit from a chain without Blend infrastructure, the API routes your funds through a bridge to the destination chain. The destination is the first configured chain with vault infrastructure. Bridge fees appear in the quote before you confirm.Withdrawal coordination
Withdrawals can pull from multiple source chains. The API scans your balance across all chains, allocates the withdrawal amount (largest balances first), and builds one action plan per source chain. Each plan includes liquidity reset, vault withdrawal, and bridge steps as needed.Contracts
Explore the 9 contract systems powering the protocol.
Security deep dive
See how every transaction passes through 4 security layers.
Supported chains
See where Blend is deployed and which tokens are supported.
Deployments
Find deployed contract addresses on each chain.