# Co-resolution

A co-resolution (or multi-request, or trustless lookup mechanism) is the operation that a client performs when he queries at least two members of a given Dappy network to read something from the blockchain. It is the main operation at the core of the dappy paradigm.

By doing a multi-request instead of a unique client-server request, a client is able to read from a public database that he does not have locally (the state of a blockchain), without having to trust any single entity. Multi-requests in Dappy are a sort of trustless remote database query mechanism.

![](https://1727014848-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-Mh-BJ11omoXk4lvwU-B%2F-MhKJ4OowFVO3uDRAHsL%2F-MhKJ7LMqttofBr-h9s1%2F58.jpg?alt=media\&token=894109ed-81dd-4b82-94c5-c7d707d33938)

When a client receives response from a multi-request (ex: AAAAABA), he can apply arbitrary consensus rules to accept or reject the result (sometimes called synchrony constraints also). The client may require 100%, 90% or 80% of identical responses. He may also require that a maximum of 2 groups of different answers.

![](https://1727014848-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-Mh-BJ11omoXk4lvwU-B%2F-MhY7nFumWS-1bUqkaZp%2F-MhY8l8mJMuB2-kVgMBl%2F61.jpg?alt=media\&token=d89f00dc-2578-4f3a-8978-5eaa1dab8346)

**Example:** In all releases of dappy, the list of the names is recovered by asking all the members of the Dappy network and requiring 100% accuracy (all the responses must be the same).

The library [bees JS](https://github.com/fabcotech/beesjs) is currently the library that handles the co-resolution and reconciliation, it is used by dappy browser (web browser) and dappy lookup (node JS).


---

# 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://fabco.gitbook.io/dappy-spec/glossary/multi-request.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.
