cosmos-sdk/x/authz/types/events.go

15 lines
366 B
Go

package types
// authz module events
const (
EventGrantAuthorization = "grant-authorization"
EventRevokeAuthorization = "revoke-authorization"
EventExecuteAuthorization = "execute-authorization"
AttributeKeyGrantType = "grant-type"
AttributeKeyGranteeAddress = "grantee"
AttributeKeyGranterAddress = "granter"
AttributeValueCategory = ModuleName
)