* x/authz: audit updates * audit with Aaron * authz: Update Authorization.Accept method * authz: add event proto definitions * update query service * authz: use typed events * refactore and rename query authorizations * remve Authorization infix from proto services * renames wip * refactoring * update tests * fix compilation * fixing gRPC query tests * fix simulation tests * few renames * more refactore * add missing file * moving export genesis to keeper * Update docs * update tests * rename event Msg attribute to MsgTypeURL * Upate Authorization interface * rollback Makefile changes * fix tests * Apply suggestions from code review Co-authored-by: Aaron Craelius <aaron@regen.network> * renames * refactore authz/exported * lint fix * authz/types refactore * comment update * conflict updates * Apply suggestions from code review Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com> * authz: move storage keys to keeper * review updates * docs update * Update x/authz/client/cli/query.go Co-authored-by: Aaron Craelius <aaron@regen.network> * move codec to the root package * authz CMD info update * comment update * update imports and build flags * fix functional tests * update proto comment * fix tests * fix test Co-authored-by: Aaron Craelius <aaron@regen.network> Co-authored-by: Amaury <1293565+amaurym@users.noreply.github.com>
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
package authz
|
|
|
|
import (
|
|
cdctypes "github.com/cosmos/cosmos-sdk/codec/types"
|
|
)
|
|
|
|
// NewGenesisState creates new GenesisState object
|
|
func NewGenesisState(entries []GrantAuthorization) *GenesisState {
|
|
return &GenesisState{
|
|
Authorization: entries,
|
|
}
|
|
}
|
|
|
|
// ValidateGenesis check the given genesis state has no integrity issues
|
|
func ValidateGenesis(data GenesisState) error {
|
|
return nil
|
|
}
|
|
|
|
// DefaultGenesisState - Return a default genesis state
|
|
func DefaultGenesisState() *GenesisState {
|
|
return &GenesisState{}
|
|
}
|
|
|
|
var _ cdctypes.UnpackInterfacesMessage = GenesisState{}
|
|
|
|
// UnpackInterfaces implements UnpackInterfacesMessage.UnpackInterfaces
|
|
func (data GenesisState) UnpackInterfaces(unpacker cdctypes.AnyUnpacker) error {
|
|
for _, a := range data.Authorization {
|
|
err := a.UnpackInterfaces(unpacker)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// UnpackInterfaces implements UnpackInterfacesMessage.UnpackInterfaces
|
|
func (msg GrantAuthorization) UnpackInterfaces(unpacker cdctypes.AnyUnpacker) error {
|
|
var a Authorization
|
|
return unpacker.UnpackAny(msg.Authorization, &a)
|
|
}
|