We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29a10da commit 30c3ec4Copy full SHA for 30c3ec4
protocol/hash.go
@@ -23,7 +23,15 @@ type HashID string
23
// Hash IDs for specific object types, in lexicographic order.
24
// Hash IDs must be PREFIX-FREE (no hash ID is a prefix of another).
25
const (
26
- AppIndex HashID = "appID"
+ AppIndex HashID = "appID"
27
+
28
+ // ARCReserved is used to reserve prefixes starting with `arc` to
29
+ // ARCs-related hashes https://github.com/algorandfoundation/ARCs
30
+ // The prefix for ARC-XXXX should start with:
31
+ // "arcXXXX" (where "XXXX" is the 0-padded number of the ARC)
32
+ // For example ARC-0003 can use any prefix starting with "arc0003"
33
+ ARCReserved HashID = "arc"
34
35
AuctionBid HashID = "aB"
36
AuctionDeposit HashID = "aD"
37
AuctionOutcomes HashID = "aO"
0 commit comments