Skip to content

Commit fb96eca

Browse files
authored
Update ERC-7585: fix typo
Merged by EIP-Bot.
1 parent 4c9859f commit fb96eca

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

ERCS/erc-7585.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ requires: 165, 721, 1155
1313

1414
## Abstract
1515

16-
This proposal introduces a design for `minimum value selection` storage proofs on Merkle trees. The design consists of two main components:
16+
This proposal introduces a design for "minimum value selection" storage proofs on Merkle trees. The design consists of two main components:
1717

1818
1. A hashing algorithm termed MixHash, aimed to replace the commonly used Keccak256 and SHA256 algorithms.
1919
2. Public data storage proofs. This enables anyone to present a proof to a public network, verifying their possession of a copy of specific public data marked by MixHash.
@@ -192,7 +192,7 @@ def generateProofWithPow(mixHash, blockHeight,file)
192192
noise = noise + 1
193193

194194
m_path = getMerkleTreePath(chunk_hash_array, min_index)
195-
return strorage_proof(mixHash, blockHeight, min_index, m_path, min_chunk,noise)
195+
return storage_proof(mixHash, blockHeight, min_index, m_path, min_chunk,noise)
196196
```
197197

198198
Applying this mechanism increases the cost of generating storage proofs, which deviates from our initial intent to reduce the widespread effective storage of public data. Moreover, heavily relying on a PoW-based economic model may allow Suppliers with significant advantages in PoW through specialized hardware to disrupt the basic participatory nature of the game, reducing the widespread distribution of public data. Therefore, it is advised not to enable the PoW mechanism unless absolutely necessary.
@@ -262,12 +262,15 @@ PublicDataProofDemo includes test cases written using Hardhat.
262262
## Reference Implementation
263263

264264
PublicDataProof Demo
265+
265266
- A standard reference implementation
266267

267268
DMC public data inscription
269+
268270
- Based on public data storage certification, a complete economic model and gameplay has been designed on ETH network and BTC inscription network
269271

270272
Learn more background and existing attempts
273+
271274
- DMC Main Chain
272275
- CYFS
273276

@@ -280,4 +283,3 @@ The design of MixHash can support storage proofs for private files, but this req
280283
## Copyright
281284

282285
Copyright and related rights waived via [CC0](../LICENSE.md).
283-

0 commit comments

Comments
 (0)