# BRC-20 Liquidity Experiment - Original

**Identifying "tick"**

As many of you are aware the standard for deploying BRC-20 consists of:

```
{ 
  "p": "brc-20",
  "op": "deploy",
  "tick": "ordi",
  "max": "21000000",
  "lim": "1000"
}
```

The issue is "tick" does not specify particular ticker, anyone can make another ticker and it would be indistinguishable. This I believe is the most significant issue at this point if we are to progress to the level of 'swaps'.

**Adding a verification 'number' to future events**

If the inscription number from the first inscription is added to future events, you can verify that it is meant for this BRC token.&#x20;

```
{ 
  "p": "brc-20",
  "op": "mint",
  "tick": "ordi",
  "veri": "430602",
  "amt": "1000"
}
```


---

# 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://brc-20-liquidity-experiment.gitbook.io/brc-20-liquidity-experiment/brc-20-liquidity-experiment-original.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.
