> For the complete documentation index, see [llms.txt](https://doc.cryptostone.org/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://doc.cryptostone.org/mining-system/10_hash_power_mining_power_and_proof_of_mining.md).

# 10 Proof of Mining

In Bitcoin, miners obtain the probability of creating blocks through hash power. The higher the hash power, the higher the likelihood of discovering a block. However, hash power cannot arbitrarily change Bitcoin’s overall issuance rules or difficulty structure. In other words, hash power is not authority to change network rules, but a computational resource for obtaining more mining opportunities within fixed rules.

CryptoStone abstracts this concept into a digital gemstone mining structure. In CryptoStone, the concept corresponding to hash power is **Mining Power**, and the work amount accumulated by Mining Power over time is **Proof of Mining**, or **PoM**.

| Bitcoin                 | CryptoStone              |
| ----------------------- | ------------------------ |
| Hash Power              | Mining Power             |
| Proof of Work           | Proof of Mining, PoM     |
| ASIC / Mining Equipment | Staked STONX             |
| Block Reward            | Gem NFT                  |
| Network Difficulty      | Pool Difficulty          |
| Halving                 | Scarcity Multiplier      |
| BTC Issuance            | Gem NFT Issuance         |
| Miner                   | STONX Staker / Gem Miner |

PoM is not a separately transferable or tradable token. PoM is an on-chain work amount indicator recorded by the contract based on the user’s mining participation and the passage of time. PoM is also not a network consensus algorithm. In CryptoStone, PoM is an internal protocol value used to determine whether a user has reached the condition to claim a Gem NFT from a specific stone pool.

When user (i) stakes an amount of STONX ((s\_{i,j})) into STONX pool ((j)), and the lock-up multiplier is ((L\_i)), the user’s Mining Power ((P\_{i,j})) is defined as follows.

$$
P\_{i,j} = s\_{i,j} \times L\_i
$$

The user’s PoM value accumulates over time as follows.

$$
PoM\_{i,j}(t + \Delta t) = PoM\_{i,j}(t) + P\_{i,j} \times \Delta t
$$

Here, (PoM\_{i,j}(t)) is the Proof of Mining value accumulated by user ((i)) in STONX pool ((j)) up to time ((t)).

PoM accumulates independently for each STONX pool. For example, PoM accumulated in the Diamond Pool can only be used to claim a Diamond NFT, and cannot be converted into PoM for the Ruby Pool or Sapphire Pool. This structure protects the independence, scarcity, and mining difficulty of each STONX pool.

A user with higher Mining Power can reach the required PoM threshold more quickly, but cannot arbitrarily increase the probability of receiving a rarer gemstone or select a specific gemstone grade.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://doc.cryptostone.org/mining-system/10_hash_power_mining_power_and_proof_of_mining.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
