# L1 Settlement

Bitcoin Layer 1 settlement provides the cryptographic and consensus foundation for all Nexus operations. The protocol leverages Bitcoin primitives to achieve trustless multi-party coordination without introducing bridging or wrapped-asset security assumptions.

#### Core Primitives

Nexus builds upon Bitcoin's fundamental cryptographic mechanisms:

* UTXO Model: Every transaction output represents verifiable ownership through cryptographic signatures, enabling precise tracking of asset states and ownership transfers.
* Multi-Signature Scripts: Native Bitcoin functionality requiring multiple parties for spending authorization, eliminating single points of control.
* PSBT Standard: As detailed in the [PSBT Engine](/protocol-architecture/psbt-engine.md), this format secures coordination across multiple parties before any transaction is broadcast.

#### The Settlement Concept

DotSwap Nexus achieves cryptographic trustlessness through the systematic elimination of trusted third parties in the settlement layer.

| Component             | Trust Elimination Method                                       | Verification Approach                              |
| --------------------- | -------------------------------------------------------------- | -------------------------------------------------- |
| Asset Custody         | Funds remain in user-controlled UTXOs until atomic execution   | Users verify ownership through private key control |
| Transaction Execution | All operations are embedded in verifiable Bitcoin transactions | Complete blockchain transparency and auditability  |
| Settlement Finality   | Bitcoin consensus provides irreversible confirmation           | Standard block explorer verification               |

#### Absolute Security Guarantees

Because L1 Settlement uses pure Bitcoin:

* No Smart Contract Risk: Execution relies on core Bitcoin script execution, avoiding Turing-complete vulnerabilities.
* No Bridge Risk: Direct Bitcoin Layer 1 settlement entirely eliminates cross-chain dependencies.
* No Upgrade Risk: Protocol changes require explicit user adoption of new UTXO formats rather than forced administrative updates.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.on.nexus/protocol-architecture/l1-settlement.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
