MindLake.Permission
Last updated
Last updated
In Mind Lake, users can access others' data, but private encrypted data is presented as ciphertext. To share private data with a specific user, the data owner must grant the target user permission to decrypt the ciphertext, thereby enabling access to the plaintext.
Grant decryption permissions to the recipient to enable them to access the encrypted data in the specified columns.
When the Grant
method is called by a grantor for the same recipient again, the existing grant policy from the grantor to the recipient is overwritten. The previous policy becomes invalid immediately, and the new policy, which includes the new set of columns, takes effect only after the recipient invokes the Confirm
method for this grant policy.
targetChain
- string
: the target chain ID.
targetWalletAddress
- string
: the wallet address of the recipient
columns
- Array<string>
: the columns to be shared with the recipient. Each column should be defined as a string that combines the table name, and column name, separated by dots. Specifically, the format for defining a column should be "TableName.ColumnName"
An object of Promise<
>
. .
result
- string
: the UUID string of the grant policy. The granter should share this UUID with the recipient. The recipient then needs to confirm the policy for it to take effect.
Confirm the grant policy as the recipient. The policy will take effect after the confirmation.
policyID
- string
: the UUID string of the grant policy. The recipient should receive it from the granter.
Revoke decryption permissions for the target user. Consequently, the target user loses access to all the encrypted data belonging to the owner who invokes this method.
targetWalletAddress
- string
: the wallet address of the target whose permission is to be revoked.
targetChain
- string
: the target chain ID.
columns
- Array<object>
: the columns to be revoked. The target user will lose access to the data in these columns.
Retrieve a list of wallet addresses of users who have been granted permission by the invoking user.
result
- Array<string>
: a list of wallet addresses of users who have been granted permission by the invoking user.
Retrieve a list of wallet addresses of users who have granted permission to the invoking user.
result
- Array<string>
: a list of wallet addresses of users who have granted permission to the invoking user.
Retrieve a list of column names for which decryption permission has been granted to the specified user.
targetWalletAddress
- string
: specify the target user by the wallet address.
targetChain
- string
:the target chain ID.
result
- Array<string>
: a list of column names for which decryption permission has been granted to the specified user.
Retrieve a list of column names authorized for decryption by the specified user.
targetWalletAddress
- string
: sspecify the owner user of the authorized columns by the wallet address.
targetChain
- string
: the target chain ID.
result
- Array<string>
: a list of column names authorized for decryption by the specified user.
An object of Promise<
>
. .
An object of Promise<
>
. .
An object of Promise<
>
. .
An object of Promise<
>
. .
An object of Promise<
>
. .
An object of Promise<
>
. .