Overview of the product

Opus is a decentralized automation framework for on-chain operations powered by EIP-7702. It enables permissioned task execution via our smart contract automation engine.

// Task struct definition
struct Task {
    address user;
    bytes encodedStrategy;
    uint256 createdAt;
    bool isActive;
}

Tasks are managed on-chain, executed via a permissioned executor, and signed with session keys scoped by time and intent.

Last updated