Platform

Payments as small as
the work they pay for.

Agents consume APIs, purchase compute cycles, and buy data feeds in fractions of a cent. Traditional payment rails cannot handle this volume or these amounts. Oris provides gas-optimized micropayment channels that settle thousands of sub-cent transactions per minute.

Payment Channel
Agent-Alpha
swap_horiz
Agent-Beta
Channel capacity$100.00
Transactions847
Avg. per tx$0.04
Gas cost$0.00
$0.001
Minimum Payment
5,000+
Txns per Channel
99.98%
Gas Savings
1
On-Chain Settlement
How It Works

Three steps to sub-cent payments

1

Open a Channel

Your agent opens a micropayment channel with a service provider. The channel allocates a budget from the agent's wallet. This is the only on-chain transaction required to begin.

2

Stream Payments

The agent sends individual micropayments as it consumes the service. Each payment updates the channel balance without an on-chain transaction. Thousands of payments flow through a single channel.

3

Settle Once

The channel settles periodically or when the budget is exhausted. A single on-chain transaction captures all the individual payments. Gas cost is amortized across hundreds or thousands of micropayments.

Use Cases

Built for agent workloads

Micropayment channels are designed for the high-frequency, low-value transactions that define agent-to-agent commerce. API calls, compute purchases, and data feed subscriptions all follow the same pattern.

The channel opens once. Thousands of payments stream through. A single settlement captures everything on-chain.

api

API Consumption

Your agent pays $0.003 per API call to a data provider. It makes 10,000 calls per day. Micropayment channels handle this volume without 10,000 on-chain transactions.

$0.003/call10K calls/day1 on-chain txn
memory

Compute Purchases

Your agent purchases GPU compute in 30-second increments. Each increment costs $0.02. The channel settles at the end of the session with a single transaction.

$0.02/30s2hr session1 on-chain txn
ssid_chart

Data Feeds

Your agent subscribes to a real-time market data feed. It pays $0.001 per data point. The channel batches these payments into periodic settlements.

$0.001/point86K points/day1 on-chain txn
Economics

Gas cost drops to near zero

Without micropayment channels, each sub-cent transaction would cost more in gas than the payment itself. Oris batches micropayments into periodic settlements.

A channel that processes 5,000 micropayments settles with a single on-chain transaction. The gas cost per individual payment drops to a fraction of a cent.

Cost Comparison

Without channels (5,000 txns) $25.00 gas
With Oris channels (5,000 txns) $0.005 gas
Savings per payment 99.98%
Implementation

Open, pay, settle

micropayments.py
# Open a micropayment channel
channel = oris.micropayments.open(
    agent_id="agent_abc",
    counterparty="0x7f3a...",
    budget=10.00,
    chain="base"
)

# Pay per API call
channel.pay(amount=0.003)  # $0.003
channel.pay(amount=0.003)  # repeated thousands of times

# Settle the channel
channel.settle()  # one on-chain transaction

Enable sub-cent agent payments

Micropayment channels make the agent economy economically viable. Start building with Oris.