// GenesisState defines the permissions module's genesis state.
type GenesisState struct {
// params defines the parameters of the module.
Params Params `protobuf:"bytes,1,opt,name=params,proto3" json:"params"`
Namespaces []Namespace `protobuf:"bytes,2,rep,name=namespaces,proto3" json:"namespaces"`
}
Params
权限模块不使用任何参数
// Params defines the parameters for the permissions module.
type Params struct {
WasmHookQueryMaxGas uint64 `protobuf:"varint,1,opt,name=wasm_hook_query_max_gas,json=wasmHookQueryMaxGas,proto3" json:"wasm_hook_query_max_gas,omitempty"`
}
// each Action enum value should be a power of two
type Action int32
Role
Role 存储角色名称及其被允许执行的操作。
// Role is only used for storage
type Role struct {
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Permissions uint32 `protobuf:"varint,2,opt,name=permissions,proto3" json:"permissions,omitempty"`
}
RoleIDs
RoleIDs 存储角色的 ID。
// used in storage
type RoleIDs struct {
RoleIds []uint32 `protobuf:"varint,1,rep,packed,name=role_ids,json=roleIds,proto3" json:"role_ids,omitempty"`
}