# Reveal Operation

### Description

The operation is for revealing the ownership previously committed on mint.

The hiding commitment will be opened by the specified owner plus a random number selected when the commitment is generated.

If the owner already exists, the operation will make no effects.

The outputs are not interpreted by the protocol.

### Payload Schema

```json
{
  "op": "reveal",
  "symbol": "<symbol>",
  "owner": "<owner address>",
  "r": "<hex-encoded random number>"
}
```

<table><thead><tr><th width="176">Field</th><th>Type</th><th>Description</th><th>Memo</th></tr></thead><tbody><tr><td>symbol</td><td>string</td><td>The unique SBT identifier</td><td></td></tr><tr><td>owner</td><td>string</td><td>The hidden owner address</td><td></td></tr><tr><td>r</td><td>string</td><td>Hex-encoded random number in 32 bytes</td><td>The random number is generated when committing the ownership</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://btc-sbt.gitbook.io/btc-sbt-protocol/protocol-spec/reveal-operation.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.
