
A carbon exchange can display a beautiful order book and still have fundamentally broken trading infrastructure. The real test begins when a buyer submits an order for 10,000 tonnes, but the matching engine can only execute 3,842 tonnes across multiple eligible sellers.
What happens to the remaining 6,158 tonnes?
More importantly:
This is where carbon credit partial fill settlement becomes an architecture problem rather than a UI feature.
Traditional exchange infrastructure already understands partial fills. Carbon markets make the problem harder because the underlying asset isn’t simply “10,000 units.”
A carbon order can depend on vintage, methodology, geography, project, registry, authorization status, corresponding adjustment, removal/reduction classification, co-benefits, eligibility rules and available inventory.
That means the matching engine cannot simply ask:
“Does price match?”
It needs to ask:
“Does price match and does this exact inventory satisfy the buyer’s eligibility constraints at execution time?”
And settlement has to preserve that decision.

Consider this order:
| Order Parameter | Buyer Requirement |
|---|---|
| Quantity | 10,000 tCO₂e |
| Maximum price | $18/t |
| Registry | Approved registry |
| Vintage | 2022–2025 |
| Methodology | Removal |
| Geography | Eligible jurisdictions |
| Eligibility | Corporate procurement criteria |
| Time-in-force | IOC |
The order enters the exchange.
The engine finds:
But Seller D’s inventory subsequently fails an eligibility check. The executable quantity is therefore 3,840 tonnes, not 8,340. That single change creates several state transitions.
Order state
NEW → PARTIALLY_FILLED → CANCELLED/EXPIRED
Inventory state
AVAILABLE → RESERVED → TRADED → SETTLED
Settlement state
PENDING → PARTIALLY_SETTLED → SETTLED
Registry state
TRANSFER_REQUESTED → CONFIRMED / FAILED
A production platform must maintain these states independently without allowing them to contradict one another. That is the core challenge behind carbon credit partial fill settlement.

Settlement problems are frequently symptoms of weak execution architecture. A robust carbon exchange should separate at least these logical layers:
Order Gateway
↓
Pre-Trade Validation
↓
Eligibility Engine
↓
Smart Order Router
↓
Matching Engine
↓
Execution Ledger
↓
Settlement Orchestrator
↓
Registry / Custody / Cash
↓
Reconciliation EngineThe important architectural principle is that matching creates an execution commitment; settlement fulfils that commitment.
Settlement should not independently decide what was traded. If the settlement service recalculates eligibility or price independently from the matching engine, the platform can create discrepancies between:
That is precisely what an exchange operator wants to avoid.
A common architecture mistake is to treat eligibility as a front-end filter. For example:
“Show the buyer only CORSIA-eligible credits.”
That is not enough. The eligibility decision needs to survive all the way into execution. Suppose a buyer wants 5,000 tonnes of eligible inventory. The matching engine finds three lots:
| Seller | Available | Price | Eligibility | Executable |
|---|---|---|---|---|
| A | 1,200 | $14.80 | Yes | 1,200 |
| B | 2,000 | $15.10 | Yes | 2,000 |
| C | 3,000 | $15.40 | No | 0 |
The engine should not match 5,000 tonnes and “sort out eligibility later.” The correct result is:
3,200 tonnes executable + 1,800 tonnes residual.
This distinction becomes especially important when eligibility can change because of:
For institutional trading, eligibility should therefore be represented as a versioned execution condition, not simply a UI attribute.
Not every order should behave the same way. A carbon exchange may support several order instructions depending on its market design.
| Order Type | Partial Fill? | Typical Behaviour |
|---|---|---|
| Limit | Yes | Execute available eligible quantity and leave residual |
| Market | Usually yes | Execute against eligible liquidity subject to protection rules |
| IOC | Yes | Fill available quantity immediately; cancel residual |
| FOK | No | Execute only if entire eligible quantity can be filled |
| GTC | Yes | Leave residual active until filled/cancelled/expired |
| GTD | Yes | Remain active until specified expiry |
| Smart Order | Yes | Route across eligible liquidity sources |
For carbon credit partial fill settlement, this distinction matters because the residual order is not necessarily another settlement.
The platform must clearly separate:
Executed quantity
from
Remaining quantity
For example:
Original Order: 10,000 t
Executed: 3,842 t
Remaining: 6,158 t
Settlement obligation: 3,842 t
Open order quantity: 6,158 tThe settlement engine must never accidentally treat the original 10,000 tonnes as the settled amount.
This is a subtle but critical architecture decision. One order can generate multiple executions. For example:
ORDER-1042
│
├── EXEC-001 → 1,500 t @ $15.80
├── EXEC-002 → 2,000 t @ $16.20
└── EXEC-003 → 342 t @ $16.50The order has therefore executed:
3,842 tonnes
But the exchange has three separate execution records. Each execution should have its own immutable identifiers and economic details. At minimum:
This event-level structure is what makes downstream reconciliation possible.
A smart order router should not simply find the cheapest credit. It should find the best executable eligible liquidity according to the exchange’s routing policy.
Imagine:
Buyer
│
▼
Smart Order Router
│
├── Internal Order Book
├── External Exchange A
├── Broker Liquidity
├── OTC RFQ
└── Registry-linked InventoryThe router can evaluate:
This becomes particularly valuable when the exchange operates as an aggregation layer rather than a single order book. The router should also preserve execution provenance. If 10,000 tonnes are sourced through four venues, the platform needs to know exactly where every tonne originated.
This is where many marketplace architectures become fragile. Suppose:
Buyer order = 10,000 tonnes
The engine executes:
Total:
3,842 tonnes
Settlement should operate on the 3,842-tonne execution set, not the original order. A simplified flow looks like:
10,000 t Order
│
▼
Eligibility Validation
│
▼
Matching
│
├── 1,500 t → Execution A
├── 2,000 t → Execution B
└── 342 t → Execution C
│
▼
Settlement Batch
│
┌───────────┴───────────┐
▼ ▼
Carbon Transfer Cash Movement
│ │
└───────────┬───────────┘
▼
ReconciliationThe settlement orchestrator should maintain a state machine rather than a single Boolean such as:
settled = true
A more useful model is:
MATCHED
RESERVED
SETTLEMENT_PENDING
PARTIALLY_SETTLED
SETTLED
SETTLEMENT_FAILED
RECONCILIATION_REQUIREDThat distinction becomes essential when registry APIs are asynchronous or unreliable.
Carbon exchanges often depend on external registry infrastructure. The exchange might successfully execute a trade, but the registry transfer could:
Therefore:
Trade execution ≠ registry settlement. The platform needs a durable settlement workflow. For example:
Execution Confirmed
↓
Inventory Reserved
↓
Settlement Instruction Created
↓
Registry Transfer Requested
↓
Registry Confirmation
↓
Ledger Updated
↓
Cash Released
↓
Reconciliation CompleteThe exact ordering can vary depending on custody and counterparty-risk design, but the state transitions must be explicit.
Imagine the registry confirms a transfer. Your webhook receives the confirmation. The service processes it. Then the same webhook arrives again. If the system simply says:
“Transfer confirmed → add 1,500 tonnes”
you have a serious accounting problem. Instead, settlement events need unique evidence identifiers. For example:
Settlement ID:
SET-2026-000184
Registry Transfer ID:
REG-883921
Execution ID:
EXEC-1042-003The settlement processor should verify whether that evidence has already been consumed. Conceptually:
if registry_transfer_id already settled:
ignore duplicate event
else:
apply settlement
mark evidence consumedThis is one of the most important safeguards in carbon credit partial fill settlement.
A trade should be traceable from the original order to the final registry state. A reconciliation engine should be able to answer: Where did every tonne go? For every execution:
Order
↓
Execution
↓
Inventory Reservation
↓
Settlement Instruction
↓
Registry Transfer
↓
Cash Ledger
↓
Final PositionA reconciliation report might identify:
| Control | Expected | Actual | Status |
|---|---|---|---|
| Executed quantity | 3,842 t | 3,842 t | ✓ |
| Seller inventory reduction | 3,842 t | 3,842 t | ✓ |
| Buyer credit receipt | 3,842 t | 3,842 t | ✓ |
| Cash movement | $61,184* | $61,184 | ✓ |
| Registry transfer | 3,842 t | 3,842 t | ✓ |
*Illustrative calculation based on blended execution prices.
If one side says 3,842 tonnes and another says 3,800, the system should flag the discrepancy rather than silently correcting it. That is the difference between reconciliation and reporting.
Spot carbon credits are already heterogeneous. Derivatives introduce another layer. A carbon futures or forward instrument may represent:
Now the matching engine is no longer matching immediately transferable inventory alone. It may be matching contractual exposure. The platform therefore needs separate concepts for:
This is why a derivatives engine should not simply be bolted onto a basic spot marketplace. The lifecycle is fundamentally different.
For an exchange operator evaluating its existing infrastructure, a practical architecture could look like this:
┌────────────────────┐
│ Trading Interfaces │
└─────────┬──────────┘
│
┌─────────▼──────────┐
│ Order Gateway │
└─────────┬──────────┘
│
┌────────────▼────────────┐
│ Pre-Trade Risk & Rules │
└────────────┬────────────┘
│
┌────────────────▼────────────────┐
│ Eligibility / Attribute Engine │
└────────────────┬────────────────┘
│
┌─────────▼──────────┐
│ Smart Order Router │
└─────────┬──────────┘
│
┌─────────▼──────────┐
│ Matching Engine │
└─────────┬──────────┘
│
┌─────────▼──────────┐
│ Execution Ledger │
└─────────┬──────────┘
│
┌─────────▼──────────┐
│Settlement Engine │
└──────┬───────┬─────┘
│ │
┌───────▼─┐ ┌──▼────────┐
│Registry │ │Cash/Asset │
│Systems │ │Settlement │
└─────────┘ └───────────┘
│
┌──────▼──────┐
│Reconciliation│
└─────────────┘The important point is not the technology stack. It is separation of responsibilities. The matching engine should not become a giant service responsible for:
That architecture becomes difficult to test and dangerous to modify.
If your exchange already exists, you don’t necessarily need a rebuild. Start with a trading-logic audit.
If the answer to several of these is “we handle that manually”, your exchange probably has a trading-infrastructure problem rather than a UI problem.
A serious carbon exchange should treat a trade as a chain of immutable, auditable events rather than one mutable database record.
Order
↓
Eligibility Decision
↓
Match
↓
Execution
↓
Reservation
↓
Settlement
↓
Registry Confirmation
↓
ReconciliationEach stage should have its own state, identifier and audit trail. That approach makes carbon credit partial fill settlement manageable even when one buyer’s order is fulfilled through dozens of sellers, multiple registries and different settlement events. And it gives the exchange something more valuable than a functioning demo: deterministic trading infrastructure.
Carbon exchanges do not fail only because they lack liquidity. They can fail because their infrastructure cannot correctly represent what happens after liquidity is found. A 10,000-tonne order becoming a 3,842-tonne execution is perfectly normal. The problem begins when the system cannot explain: which 3,842 tonnes, from whom, at what price, under which eligibility rules, with what settlement status, and where those tonnes ultimately landed. That is why carbon credit partial fill settlement deserves to be designed as a first-class exchange capability.
For CTOs and product leaders, the architecture question is therefore not:
“Can our platform match carbon credits?”
It is:
“Can our platform deterministically execute, partially settle and reconcile heterogeneous carbon inventory without losing the chain of custody?”
If the answer isn’t confidently yes, the next institutional trading volume could expose the weakness.
If you already operate a carbon marketplace or exchange, Techaroha can review the trading architecture around:
The goal isn’t to replace working infrastructure unnecessarily. It’s to identify the exact trading-logic bottlenecks before they become settlement incidents.