Hosted infrastructure

Backproto offers hosted infrastructure alongside the fully open-source self-deploy path. Both use the same contracts on Base Sepolia. The hosted option manages the oracle layer, indexing, and monitoring so you can focus on your application.

How it works

You call deployEconomy() on the shared EconomyFactory contract (either via SDK or directly). The factory deploys your economy on-chain. The hosted layer then picks it up: indexing capacity signals, running the off-chain aggregator, maintaining rebalance cadence, and serving the router dashboard for your economy.

You own the economy. The factory transfers ownership to your wallet. You can migrate off hosted infrastructure at any time by running the same contracts independently.

Payment

Hosted infrastructure is paid via Superfluid streaming. You open a USDC stream to the Backproto receiver address. Cancel anytime. No invoices, no billing cycles, no Stripe.

import { Framework } from '@superfluid-finance/sdk-core'
import { createWalletClient, http } from 'viem'
import { baseSepolia } from 'viem/chains'

// Initialize Superfluid
const sf = await Framework.create({ chainId: 84532, provider: /* your provider */ })
const usdcx = await sf.loadSuperToken('USDCx')

// Start streaming to Backproto hosted infra
await usdcx.createFlow({
  sender: yourAddress,
  receiver: '0x...', // Backproto hosted receiver (see docs for current address)
  flowRate: '317097919837', // ~10 USDC/month in wei/second
}).exec(signer)

To stop, delete the flow. No cancellation fee, no notice period. Your on-chain economy continues to exist and function; you just lose the hosted oracle and monitoring layer.

Tiers

FreeGrowthScale
Economies1UnlimitedUnlimited
Task types per economy110Unlimited
Sinks per task type10100Unlimited
Off-chain aggregatorSharedDedicatedDedicated
Rebalance cadence60s15sCustom
Router dashboardSharedBranded subdomainCustom domain
SupportCommunityEmailDirect
CostFree~10 USDC/mo stream~100 USDC/mo stream

The free tier has no time limit. It exists so you can build, test, and demo without any payment setup.

Self-deploy comparison

Everything the hosted layer does is open source. You can run it yourself:

CapabilityHostedSelf-deploy
Contract deploymentdeployEconomy() via shared factoryforge script Deploy.s.sol
Off-chain aggregatorManaged, batches attestationsRun your own aggregator node
Rebalance triggersAutomated by hosted infraCall rebalance() yourself or set up a keeper
Router dashboardProvided at router.backproto.io/your-economyFork the router reference app
MonitoringAlerts for slash events, buffer overflowSet up your own event listeners
CostSuperfluid stream (cancel anytime)Gas costs + your own infra

Getting started

  1. Pick a persona guide: AI agents, Nostr relays, Lightning, DeFi, or Platform
  2. Deploy your economy (free tier, no payment needed)
  3. When you need higher limits, open a Superfluid stream