# Comparing Mechanisms

Each of the previously discussed verification mechanisms ([native](/the-nomad-protocol/verification-mechanisms/native-verification.md), [external](/the-nomad-protocol/verification-mechanisms/external-verification.md), [optimistic](/the-nomad-protocol/verification-mechanisms/optimistic-verification.md)) has its benefits and costs. As the famous economist, Thomas Sowell, once said:

> “There are no solutions. There are only trade-offs.”

Therefore, there is no *best* solution for all use cases, rather trade-offs that must be made by the application developer deciding to use the messaging system. In this section, we will present a simplified exploration of the trade-off space.

### Comparison of Mechanisms

<table><thead><tr><th width="150">Verification Mechanism</th><th width="150">Trust Assumption</th><th width="150">Security</th><th width="150">Extensibility / Reusability</th><th width="150">Cost</th></tr></thead><tbody><tr><td>Light Client Relay</td><td>Untrusted with synchrony assumptions</td><td><mark style="background-color:green;">Very High</mark></td><td><mark style="background-color:red;">Low</mark></td><td><mark style="background-color:red;">High</mark></td></tr><tr><td>Optimistic</td><td>Honest 1-of-n</td><td><mark style="background-color:green;">High</mark></td><td><mark style="background-color:green;">High</mark></td><td><mark style="background-color:yellow;">Medium</mark></td></tr><tr><td>Validator / PoS</td><td>Honest k-of-n with social slashing</td><td><mark style="background-color:yellow;">Medium</mark></td><td><mark style="background-color:green;">High</mark></td><td><mark style="background-color:yellow;">Medium</mark></td></tr><tr><td>Multi-signature Addresses</td><td>Honest k-of-n</td><td><mark style="background-color:red;">Low</mark></td><td><mark style="background-color:green;">Very High</mark></td><td><mark style="background-color:green;">Low</mark></td></tr></tbody></table>


---

# 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.nomad.xyz/the-nomad-protocol/verification-mechanisms/comparing-mechanisms.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.
