Gelalens

Market Prices

Coin Price 24h
BTC Bitcoin
$75,899.3 -3.97%
ETH Ethereum
$2,403.11 -5.34%
SOL Solana
$97.65 -5.27%
BNB BNB Chain
$719.2 -0.84%
XRP XRP Ledger
$1.3 -11.03%
DOGE Dogecoin
$0.0807 -4.71%
ADA Cardano
$0.1972 -7.02%
AVAX Avalanche
$7.33 -3.58%
DOT Polkadot
$0.9563 -6.06%
LINK Chainlink
$11.07 -5.46%

Fear & Greed

69

Greed

Market Sentiment

Event Calendar

{{年份}}
12
05
halving BCH Halving

Block reward halving event

30
04
upgrade Celestia Mainnet Upgrade

Improves data availability sampling efficiency

15
04
halving Bitcoin Halving

Block reward reduced to 3.125 BTC

28
03
unlock Arbitrum Token Unlock

92 million ARB released

18
03
unlock Sui Token Unlock

Team and early investor shares released

22
03
unlock Optimism Unlock

Circulating supply increases by about 2%

10
05
upgrade Ethereum Pectra Upgrade

Raises validator limit and account abstraction

08
04
upgrade Solana Firedancer

Independent validator client goes live on mainnet

Altseason Index

42

Bitcoin Season

BTC Dominance Altseason

Gas Tracker

Ethereum 28 Gwei
BNB Chain 3 Gwei
Polygon 42 Gwei
Arbitrum 0.5 Gwei
Optimism 0.3 Gwei

Market Cap

All →
1
Bitcoin
BTC
$75,899.3
1
Ethereum
ETH
$2,403.11
1
Solana
SOL
$97.65
1
BNB Chain
BNB
$719.2
1
XRP Ledger
XRP
$1.3
1
Dogecoin
DOGE
$0.0807
1
Cardano
ADA
$0.1972
1
Avalanche
AVAX
$7.33
1
Polkadot
DOT
$0.9563
1
Chainlink
LINK
$11.07

🐋 Whale Tracker

🟢
0x00fd...a72b
6h ago
In
40,223 BNB
🔴
0xc67a...41ee
2m ago
Out
2,857,633 DOGE
🔵
0x758f...dd1e
1d ago
Stake
2,617,410 USDT

💡 Smart Money

0x8527...2192
Institutional Custody
+$1.8M
95%
0xd102...271e
Early Investor
-$0.6M
72%
0xf75c...3e77
Experienced On-chain Trader
+$1.6M
64%

🧮 Tools

All →
Exchanges

The Kill Switch That Wasn't: the UK's Rejected AI Halt and the On-Chain Agents Nobody Can Stop

CredWolf
A mandatory kill switch is not a safety feature. It is an access-control primitive wearing a safety feature's clothes. When the UK government rejected a proposal that would have required developers of "dangerous" AI systems to build in an externally triggerable shutdown, the headlines wrote themselves: deregulation, innovation-first, a nod in the direction of the London labs. That is the surface reading, and surface readings are where audits go to die. I have spent the better part of a decade pulling apart systems that claimed to expose a halt function and did not possess the semantics to invoke it. The pattern repeats with depressing regularity. The function exists in the interface. The privilege model behind it is undefined. The edge case arrives anyway — the model that will not stop generating, the inference loop that will not terminate, the agent that keeps signing transactions — and you discover the halt was never wired to anything capable of stopping the machine. Tracing the gas leak in the untested edge case is the entire job. This leak runs from both ends of the pipe. Let me be precise about what was rejected, because the imprecision is doing a lot of work. The proposal would have compelled developers of systems classified as dangerous to implement a mechanism — a kill switch, in the colloquial — by which an external authority could arrest the system's operation. The UK declined to make it mandatory. Read through the lens of the UK's broader posture, this is not surprising. The country built its AI governance identity around the AI Safety Institute, launched in the wake of the 2023 Bletchley Park summit, and structured that identity around voluntary evaluation rather than binding constraint. The AISI tests models. It does not command them. The refusal extends a philosophy that was already legible in the architecture: the state observes, the lab self-regulates, the market sorts what remains. Now set that against the international baseline, because a policy only means something relative to its neighbors. The EU AI Act writes human oversight and the capacity to interrupt or halt high-risk systems directly into its obligations. The NIST AI Risk Management Framework in the United States speaks in the same register, framing the ability to safely deactivate a system as a governance property rather than a courtesy. The American executive-order tradition went further, tying red-team findings to shutdown capability as a condition of deployment for frontier models. The UK, by rejecting the mandate, has positioned itself not as a fast follower but as an explicit outlier. That is a choice, and choices in a network have externalities that extend well past the border that made them. Here is why this lands on my desk and not merely on a policy analyst's. The most consequential deployment surface for autonomous AI systems in 2026 is not a browser tab. It is the chain, and the adjacent verifiable-compute layers that feed it. Agents now hold on-chain identities. They issue credentials through zero-knowledge proofs. They sign transactions, manage treasuries, and execute strategies without a human in the loop by design. Months ago I audited a protocol that issued on-chain identity to AI agents using zk-SNARKs, and I found a soundness error in the proof-aggregation logic that could have let a single actor mint identities indefinitely — a Sybil attack dressed as a credential. The novelty of the design was overshadowed by a fundamental cryptographic flaw. Substitute "halt capability" for "credential soundness" and you have the UK decision in miniature: a system that works beautifully until the assumption it silently depends on is violated, and no lever exists to pull when it is. Understand the kill switch as an interrupt vector, because that is what it is at the machine level. Every system that runs has an execution context, and every execution context has a way to be stopped — a signal, a trap, a break. On-chain, the closest analog is the pausable contract: a privileged function, almost always gated by an owner or a multisig, that flips a boolean and halts state transitions. OpenZeppelin shipped this pattern years ago. It is battle-tested, and it is also a textbook example of a halt that exists but cannot be trusted to hold. The function is only as reliable as the key behind it. If the key is a single EOA, the halt is one compromised private key away from being an attacker's tool. If the key is a multisig, the halt inherits the multisig's coordination latency — and latency is the tax we pay for decentralization, except here the tax is charged at the exact moment when seconds matter. The technical objection the UK almost certainly weighed, and did not articulate in public, is that a remote halt is a remote attack surface. Make the shutdown externally triggerable and you have created a function whose invocation must be authenticated, authorized, and protected against replay. Get that wrong — a misconfigured role, an unguarded admin path, a signature-verification bug — and the safety mechanism becomes the exploit. I have reviewed bridges that died exactly this way. The optimistic-verification module I dissected for a venture firm in 2025 had a reentrancy path in its message-passing logic, and the lesson generalized: the machinery you add to make a system stoppable is itself stateful, and stateful machinery is where reentrancy lives. A mandatory kill switch, if written carelessly into law, would have forced thousands of teams to add a privileged call path they do not know how to defend. That is not a hypothetical risk. It is a supply chain of new vulnerabilities, manufactured by fiat. Then there is the definitional problem, and it is the one that quietly kills the whole proposal. The mandate would have applied to "dangerous" AI systems. Draw the boundary. Where, precisely, is the threshold? A hallucinating model is not dangerous in the same way a self-replicating agent is. A recommendation system that amplifies polarization is not dangerous in the same way a protein-design tool is. There is no oracle for "dangerous." There is no on-chain price feed for it, no consensus mechanism that resolves the question, no committee whose judgment survives contact with a motivated litigant. A kill switch attached to an undefined predicate is not a safety mechanism. It is a liability engine, because it demands that an engineer prove a negative — that the thing they built is not on the wrong side of a line nobody has drawn. Consider what the halt has to reach, physically and logically. For a closed, server-hosted model, an external kill switch is tractable: you cut the process, you starve the GPU, you revoke the API key. For an open-weight model, the halt is fiction. Once the weights are downloaded, they are inert data on someone else's disk, and no regulator can reach into a machine it does not own to flip a bit. This is the exact shape of the objection I have to BRC-20 and Runes on Bitcoin — the effort to force fungible token semantics onto a substrate that was never designed to carry them insults the substrate and barely carries the load. Demanding a kill switch for an open-weight model insults the engineering and stops nothing. The only substrates you can actually halt are the centralized ones, which means a mandatory kill switch would have concentrated its bite precisely on the compliant, well-resourced labs while the open-weight edge — the part you cannot reach — proliferates untouched. You would regulate the reachable and ignore the relevant. And even where the halt is reachable, it does not verify anything. This is the distinction that zero-knowledge practitioners learned the hard way, and the AI governance conversation has not internalized it: proving that a system behaved correctly is not the same as being able to stop it behaving incorrectly, and being able to stop a system is not the same as knowing when you should. I spent six weeks optimizing circom circuits for ERC-20 batch processing, chasing a fifteen-percent reduction in proof-generation time, optimizing the prover until the math screamed. The circuit could prove, with cryptographic certainty, that a batch was processed according to a rule. It could not tell anyone whether the rule was the right one. A kill switch gives you a button. It does not give you the judgment behind pressing it, and a button wired to an ambiguous judgment call is worse than no button at all — because now the liability attaches to whoever failed to press it. That is the institutional risk, and it is where this stops being a thought experiment. Bring insurance into the frame. The whole reason a venture firm hired me to review a bridge was that capital does not move without a defensible account of failure modes. Remove the mandatory halt, and the failure mode does not disappear; it migrates. It moves from a regulatory checklist to an underwriting question. A financial institution deploying an autonomous trading agent will demand a halt capability not because a regulator demands it but because its risk committee cannot underwrite an unbounded-loss scenario. An insurer writing coverage for a medical-decisioning system will require a documented interrupt path, tested, logged, and rehearsed. The market will invent the kill switch the government declined to mandate — and it will do so unevenly, concentrated where the money is, absent where the risk is diffuse. The cross-chain analogy is not decorative here; it is structural. Every new interoperability protocol was sold as a way to unify liquidity, and every one of them fragmented it further. Each bridge added a new trust assumption, a new failure domain, a new set of wrapped representations of the same underlying asset. The result was not a single market but a lattice of partial markets, each convinced it was the connector. Regulatory fragmentation behaves identically. The UK rejecting a halt mandate is, by itself, one jurisdiction's choice. Stacked against the EU's oversight obligations and the US red-team-plus-shutdown regime, it produces a lattice of compliance surfaces that no multinational can serve with one artifact. Companies will ship region-specific builds — a halted variant for Europe, an unhalting one for the UK — and the fragmentation will be justified as market adaptation. It is the same delusion as the bridge that thinks it is the liquidity layer. The next protocol does not unify the fragments. It adds another one. Now the contrarian turn, because the obvious reading is that the UK chose innovation over safety, and the obvious reading is not the interesting one. The interesting reading is that the UK may have rejected the mandate for reasons that are technically sound and rhetorically fatal. A remote kill switch, made mandatory, is a centralized point of failure that every adversary now knows to attack. It is a single function that, if compromised, grants an attacker the ability to halt — or, more insidiously, to appear to halt while the system keeps running underneath. The code is a hypothesis waiting to break, and a mandated halt is a hypothesis about authentication, authorization, atomicity, and provenance all holding at once. The state would have been betting that thousands of teams could implement that correctly under deadline pressure. The state declined the bet. Whether it declined for the right reasons or merely found the right reasons afterward, the outcome is a governance gap that looks a great deal like a security posture. The real blind spot is not the missing button. It is that nobody has written the halt semantics. The proposal asked for a mechanism; it did not specify what state the system lands in after the halt, who is notified, what happens to in-flight work, how the halt is audited, or how it is reversed. That is the same as a contract exposing a pause() with no event emission, no timelock on unpause, and no documented invariant about what "paused" guarantees. The function type-checks. The behavior is undefined. An audit of such a contract would flag exactly this and refuse to bless it. The UK rejected a specification that was never finished, and the honest critique is not that it said no to safety — it is that it said no to a proposal that never earned a yes. So where does this leave an operator, a builder, an institution trying to position for the next twelve months? The market will fill the vacuum, and where the market fills vacuums it installs incentives — and incentives subsidize appearance. This is the liquidity-mining problem restated for safety. Offer a subsidy for TVL and you get TVL that leaves the moment the subsidy stops; offer reputational credit for a voluntary halt capability and you will get halt capabilities that exist on a slide and nowhere in a test suite. The voluntary framework the UK favors will work exactly as long as the incentives hold and no incident tests it, which is to say it will work until it is needed. Watch the AISI testing protocols. If they begin to assess interrupt semantics rather than merely document their absence, the voluntary path has teeth. If they do not, the framework is theater with a publication budget. What I am watching, concretely: first, whether the UK attaches any substitute — a voluntary standard, an incident-reporting duty, a liability safe harbor conditioned on documented halt capability. A refusal without a replacement is not a policy; it is an abdication with good press. Second, whether the EU's oversight obligations force region-specific builds and whether any multinational relocates its deployment surface rather than its headquarters. Third, and most important, the first incident. There will be a system — an agent, an inference pipeline, a trading loop — that fails to halt when it should have, and the absence of a mandated interrupt will become a liability question in a courtroom rather than a policy question in a committee. Whoever is on the hook in that moment will have wished the halt semantics had been specified before the failure, not after. Debugging the future one opcode at a time, the pattern is always the same: the function that exists without the semantics to invoke it. The UK has not removed the kill switch from the world. It has removed the obligation to pretend one exists. What remains is a gap shaped exactly like an interrupt vector, waiting for the first team that needs it and cannot find it. The question is not whether AI systems should be stoppable. Of course they should. The question is who holds the key, who audits the wiring, and who is responsible when the button is pressed and nothing happens. Nobody has answered that, and the answer was never going to come from a headline that read the word "reject."