Documentation

How it actually works

Continuo turns an investment thesis into rules that a contract enforces. This page is the mechanism, including the parts that are inconvenient.

The trust model

A keeper watches your portfolio and proposes a route. The executor decides whether to carry it out. The keeper is untrusted: rebalance() is permissionless, so anyone may call it, and the caller chooses only how to trade — never whether to.

Before anything moves, the contract checks, on chain:

And after the trades, before the transaction is allowed to succeed:

If any check fails the whole transaction reverts, which means nothing moved. A bad route costs the keeper gas and costs you nothing.

Custody

Your tokens never leave your wallet, not even for a block. Continuo holds a Permit2 allowance — scoped to named tokens, capped, and expiring on its own. During a rebalance the executor pulls what the route needs, swaps it, and sweeps everything back to you inside the same transaction. It ends every call holding nothing.

Revoking calls permit2.lockdown() on Permit2 0x0000…8BA3 directly. It does not route through any Continuo contract and works if Continuo is offline.

Pricing

Assets are priced from their own Uniswap v3 pool against USDG. Three details on this chain make that less trivial than it sounds:

What the chain cannot do

Robinhood Chain keeps roughly twelve minutes of state. Ask it for a balance an hour old and it answers metadata is not found. That has one honest consequence: trailing returns cannot be read from history, so momentum has to record its own prices from the day it starts and says “warming up” until the lookback fills. It is not a placeholder for a number we have and are hiding — the number does not exist yet.

Fees

The protocol fee is zero. If it is ever switched on it is charged on notional moved, never on your portfolio, and each strategy stores its own cap that the contract refuses to exceed. You always pay the pool's trading fee and the gas for each rebalance.

Risk

Contracts

Build a strategy