Settlement is the point where a trade is actually finished: the buyer has the asset, the seller has the cash, and neither side can pull the transaction back. It is a separate event from the trade itself. Markets differ in how long the gap between the two lasts, and in what can go wrong inside it.
Most readers arrive holding half the picture. Crypto readers assume settlement is instant because a transfer confirms in seconds, while readers from traditional markets assume it takes days because that is what a securities trade does, and both halves describe real systems that a single fund may end up holding at the same time. How settlement works inside an onchain fund depends on that mix.
What does settlement actually mean?
It means the exchange of value is complete and irrevocable on both legs. A regulator describing the process puts it in exactly those two parts: payment of funds and delivery of securities.
Executing a trade creates an obligation. Settling it discharges the obligation. Between those two moments each side is exposed to the other, because a counterparty that fails before delivery leaves a trade that cannot simply unwind at no cost once the price has moved, and compressing that gap is what most settlement infrastructure is built to do. Delivery versus payment, conditioning the two legs on each other, is the design goal.
The settlement cycle in traditional markets, and why rule sets it
Delivery and payment run through several institutions, and the length of the cycle is set by rule rather than by physics. In the United States, SEC Rule 15c6-1 sets the standard settlement cycle. It ran at three business days after the trade until 2017, when it was shortened to two, and the Commission shortened it again to one business day after the trade, with a compliance date of 28 May 2024.
The gap is not idle time. A central counterparty stands between the two sides and nets the day's trades down to one obligation per participant, keeping the volume of actual deliveries manageable. Custodians confirm holdings, cash is funded, foreign exchange is arranged where the currency differs, and errors are corrected before delivery rather than after, so shortening the cycle removes counterparty exposure and removes slack from all of that at once. Each step took years to implement. The cycle is a convention with institutions behind it rather than a technical limit.
What changes when the asset is a token?
When the asset is a token the delivery leg collapses into the transaction itself: a token transfer moves the asset and, where the trade is structured as a swap in one transaction, moves the payment in the same step, so either both legs happen or neither does. That is atomic settlement. It removes the window where one side has delivered and the other has not.
What it does not remove is everything attached to the asset off the chain. A tokenized fund share can transfer in one block while the subscription behind it still sits with a transfer agent, and a position behind a compliance check cannot move until the check clears. This is why the asynchronous vault standard exists at all: its stated motivation covers real-world asset protocols, undercollateralized lending, cross-chain lending, liquid staking and insurance modules, and not one of those can deliver an exit on demand.
Is finality the same as settlement?
No. Finality is a property of the ledger; settlement is a property of the trade, and the distinction matters most when the two legs of one trade sit on different systems. On Ethereum, blocks are grouped into epochs of 32 slots at 12 seconds each; a block is finalized once validators have justified two consecutive checkpoints, roughly 13 minutes after it was proposed, and reverting a finalized block at that point would cost an attacker at least one third of all staked ETH.
That is a strong guarantee about one ledger entry, and it says nothing about whether the other side of the trade has paid: a transfer can be final within minutes while the trade it belongs to remains unsettled for a day, because the cash leg is in a bank. Confusing the two is the most common error when a treasury team maps an onchain position onto its existing settlement policy. It usually surfaces during an audit.
Mixed clocks inside one fund
A fund strikes one price and pays one redemption. Its holdings do not agree on what day it is. A lending position can be exited in a block, but a tokenized treasury runs on a business-day cycle with a dealing cutoff, so when a redemption request arrives the fast leg can be liquidated immediately and the slow leg cannot. The manager holds a cash buffer that drags on return, or the redemption waits for the slowest asset in the book.
Settlement and redemption in an onchain fund covers queue design and pricing across mixed clocks, including how a same-day cycle and a next-day cycle run against each other and what the exit side looks like on its own. The interface that expresses a delayed settlement onchain is ERC-7540.
Railnet exists to track both clocks in one accounting model rather than forcing a fund to choose one.
Frequently asked questions
What does T+1 mean?
T is the trade date and the number is the count of business days until settlement, so T+1 means the exchange of cash and securities completes one business day after the trade. In the United States this is set by SEC Rule 15c6-1, and the move from T+2 to T+1 carried a compliance date of 28 May 2024.
Is an onchain transaction settled as soon as it confirms?
The asset leg is transferred, but the trade is settled only if the payment leg moved too. Confirmation and settlement coincide when both legs sit in the same transaction, and they come apart when the other side is a bank payment, an offchain fund subscription or a compliance step, because the trade is still open after the transaction confirms.
Why does finality take about 13 minutes on Ethereum if blocks arrive in 12 seconds?
A block is proposed every 12 seconds, but finalization is a separate vote. Epochs of 32 slots produce checkpoints, and a checkpoint is finalized once two consecutive checkpoints have been justified by validators holding at least two thirds of staked ETH. Two epochs is roughly 13 minutes.
Does tokenization make settlement instant?
It makes the onchain leg instant. Whether the trade settles instantly depends on the slowest thing attached to it, usually a cash leg, a transfer agent or a compliance check, and a tokenized version of an instrument with a dealing cutoff still has a dealing cutoff.