Nakamoto Release Live

DeFi on Bitcoin.
Unleashed.

Experience the security of Bitcoin with the speed of Stacks. Build, trade, and earn in the most robust decentralized economy on the planet.

Bitcoin Finality

Every transaction on the Stacks layer is settled on the Bitcoin blockchain. Your assets are protected by the most secure computing network in history.

Sub-second Tx

The Nakamoto upgrade brings fast blocks, enabling seamless UX for DeFi applications without compromising on base-layer security.

sBTC Native

Move Bitcoin in and out of the Stacks layer trustlessly. Deploy your dormant BTC into productive decentralized finance protocols.

Clarity Smart Contracts

Decidable, uncompiled, and secure by design. Read exactly what the contract does before execution.

(define-public (transfer
  (amount uint)
  (sender principal)
  (recipient principal))
  (begin
    (asserts! (is-eq tx-sender sender)
      ERR-NOT-AUTHORIZED)
    (ft-transfer? my-token amount
      sender recipient)
  )
)