Composability
struct Perms {
bool composable; // Whether or not the account has an active composable EtherEthos.
bool accountIsBlocked; // Whether or not the account is blocked.
bool moderator; // Whether or not the account is a moderator. *
string verificationResponse; // The response to a verification request.
}Composability is checked in every public view function on the contract, and app developers should only retrieve blockchain data from these public view functions, ideally live. This will ensure that the account owner's data is respected.
Last updated