forked from TrueCloudLab/frostfs-contract
25 lines
1 KiB
Go
25 lines
1 KiB
Go
/*
|
|
Reputation contract is a contract deployed in FrostFS sidechain.
|
|
|
|
Inner Ring nodes produce data audit for each container during each epoch. In the end,
|
|
nodes produce DataAuditResult structure that contains information about audit
|
|
progress. Reputation contract provides storage for such structures and simple
|
|
interface to iterate over available DataAuditResults on specified epoch.
|
|
|
|
During settlement process, Alphabet nodes fetch all DataAuditResult structures
|
|
from the epoch and execute balance transfers from data owners to Storage and
|
|
Inner Ring nodes if data audit succeeds.
|
|
|
|
# Contract notifications
|
|
|
|
Reputation contract does not produce notifications to process.
|
|
|
|
# Contract storage scheme
|
|
|
|
| Key | Value | Description |
|
|
|-----------------------------|------------|-----------------------------------|
|
|
| `c` + epoch + peerID | int | peer reputation count |
|
|
| `r` + count | ByteArray | serialized DataAuditResult struct |
|
|
|
|
*/
|
|
package reputation
|