Building on chaos, then locking the door.
Over the past seven days, a quiet signal emerged from the infrastructure layer. Magic Labs, the team behind the embedded wallet SDK used by Polymarket and WalletConnect, sold its core wallet business to Payward—Kraken’s parent company. Then rebranded to Newton Labs, claiming a pivot toward an “on-chain authorization layer”: a pre-transaction policy engine that executes rules before settlement.
Most took this as a routine M&A. I read it as a strategic carve-out of compliance infrastructure—one that reveals how regulated incumbents plan to tame DeFi’s permissionless chaos without shouting about it. Silicon ghosts in the machine, verified.
Context: The Asset Divestiture
Magic Labs was never a flashy consumer wallet. It was infrastructure—an embedded wallet-as-a-service that let dApps like Polymarket onboard users without requiring MetaMask or browser extensions. According to public data, it processed millions of transactions across its client base. But April 2025 saw the team split the company in two: the wallet product goes to Payward (Kraken’s parent); the remaining shell renames to Newton Labs and pivots to a blockchain-native “authorization layer.”
CEO Sean Li framed the move as a natural evolution: “We believe every transaction should be secure and compliant by default”. The implication is clear—Newton Labs will sit between the user’s signature and the mempool, inspecting and potentially blocking transactions based on configurable policies.

Core: From Wallet Guards to Protocol Police
Let’s break down what an “on-chain authorization layer” actually requires at the code level. It is not a smart contract in the traditional sense. It is a middleware that must:
- Receive signed transactions from users (or dApps).
- Simulate or analyze the transaction against a policy set (e.g., “block transfer to Tornado Cash addresses”, “enforce max slippage of 1%”, “require KYC attestation”).
- Either forward the approved transaction to the mempool or reject it.
- Return a signed attestation or proof of policy execution.
This is similar to Flashbots’ MEV-Share infrastructure, but with a compliance twist. Flashbots allows users to choose which searchers see their transactions; Newton Labs appears to want mandatory policy enforcement at the authorization layer.
From my work auditing smart contracts and reverse-engineering dYdX’s order book matching in 2020, I know that any pre-execution middleware introduces two fundamental risks: centralized censorship surface and latency race conditions. If the authorization layer is run by a single entity—Newton Labs itself, or a validator consortium it controls—the system becomes a choke point. A malicious or coerced operator can pause, filter, or front-run transactions.
Worse, the policy execution itself must be verifiable. If Newton Labs claims to check against a blacklist, users need cryptographic proof that the check was performed correctly. Without that, the layer is just a server with a promise. Proving existence without revealing the source is non-trivial; zero-knowledge proofs add cost and complexity.
Based on my experience designing the payment layer for the Autonomous Agent Network (AAN) in 2026, I can tell you that building a trustless authorization layer is engineering hell. You need: - A deterministic policy engine (e.g., WASM or a custom DSL). - Fast state access to simulate transactions against current chain state. - Incentive alignment to prevent the operator from stealing the user’s transaction value. - A fallback mechanism if the authorization service goes down.
Newton Labs has not published any tech spec. That silence is the loudest signal. Logic is the only law that doesn’t lie.
Contrarian: The Real Product Is Regulatory Arbitrage
Everyone frames this as a pivot to a more innovative tech stack. I see it differently. The sale of the wallet business to Kraken is a regulatory partition. By spinning out the compliance layer into a separate entity, Kraken can claim that Newton Labs is an independent infrastructure provider—not an arm of the exchange. This legal fiction allows Kraken to shield itself from liability if the authorization layer blocks a transaction that should have gone through.
Meanwhile, the authorization layer itself becomes a perfect compliance honeypot. If Kraken’s exchange and its ecosystem mandate that all transactions must pass through Newton Labs’ policy engine, they can enforce OFAC sanctions, KYC checks, and transaction limits without touching the underlying blockchain. The layer is a regulatory-controlled off-ramp for permissionless activity.
Consider the downstream effects: Polymarket, a client of the original Magic Labs wallet, might be forced to migrate its user flow through Newton Labs if it wants to maintain Kraken’s partnership. The authorization layer becomes a tool for jurisdictional gatekeeping—a clean way to say “yes” to regulated institutions and “no” to dissidents.
This is not innovation. It is regulatory capture via middleware. The team moved from building user-controlled wallets to building institution-controlled policy enforcers. Static analysis reveals what intuition ignores.
Takeaway: Watch the Hiring Signal
Newton Labs currently has zero open-source code and zero publicly known customers beyond Kraken’s implied support. The tokenomic model is nonexistent—no token, no revenue split, no governance. The team that built a solid embedded wallet is now asking the market to trust them with a vastly more complex and sensitive piece of infrastructure.

I’ll be watching three signals over the next six months: - Hiring: If they recruit for Rust, ZK, or Solidity engineers with formal verification experience, they’re serious about decentralization. If they hire policy analysts and lawyers, they’re building a compliance tool. - First external integration: Will a protocol outside Kraken’s orbit adopt the authorization layer? If yes, it’s product-market fit. If not, it’s a captive service. - Open-sourcing the policy engine: A proprietary engine is a black box. An open-source engine can be audited and forked. The team’s choice will reveal their true intent.
Breaking the block to see what spins.
My guess: Newton Labs will launch a closed-beta, focused on Kraken’s own trading ecosystem, and never open-source the core authorization logic. The narrative will be “security and compliance require opacity.” The reality will be a centralized censorship layer disguised as a protocol upgrade.
Composability is just controlled anarchy—and Kraken just hired the sheriff.