forked from TrueCloudLab/frostfs-contract
29 lines
1.3 KiB
Go
29 lines
1.3 KiB
Go
/*
|
|
FrostFSID contract is a contract deployed in FrostFS sidechain.
|
|
|
|
FrostFSID contract is used to store connection between an OwnerID and its public keys.
|
|
OwnerID is a 25-byte N3 wallet address that can be produced from a public key.
|
|
It is one-way conversion. In simple cases, FrostFS verifies ownership by checking
|
|
signature and relation between a public key and an OwnerID.
|
|
|
|
In more complex cases, a user can use public keys unrelated to the OwnerID to maintain
|
|
secure access to the data. FrostFSID contract stores relation between an OwnerID and
|
|
arbitrary public keys. Data owner can bind a public key with its account or unbind it
|
|
by invoking Bind or Unbind methods of FrostFS contract in the mainchain. After that,
|
|
Alphabet nodes produce multisigned AddKey and RemoveKey invocations of FrostFSID
|
|
contract.
|
|
|
|
# Contract notifications
|
|
|
|
FrostFSID contract does not produce notifications to process.
|
|
|
|
# Contract storage scheme
|
|
|
|
| Key | Value | Description |
|
|
|-----------------------------|------------|----------------------------------|
|
|
| `processingScriptHash` | Hash160 | netmap contract hash |
|
|
| `containerScriptHash` | Hash160 | container contract hash |
|
|
| `o` + ownerID + publicKey | ByteArray | it flags owner's public key |
|
|
|
|
*/
|
|
package frostfsid
|