github.com/Finschia/finschia-sdk@v0.49.1/proto/cosmos/authz/v1beta1/event.proto (about) 1 // Since: cosmos-sdk 0.43 2 syntax = "proto3"; 3 package cosmos.authz.v1beta1; 4 5 option go_package = "github.com/Finschia/finschia-sdk/x/authz"; 6 7 // EventGrant is emitted on Msg/Grant 8 message EventGrant { 9 // Msg type URL for which an autorization is granted 10 string msg_type_url = 2; 11 // Granter account address 12 string granter = 3; 13 // Grantee account address 14 string grantee = 4; 15 } 16 17 // EventRevoke is emitted on Msg/Revoke 18 message EventRevoke { 19 // Msg type URL for which an autorization is revoked 20 string msg_type_url = 2; 21 // Granter account address 22 string granter = 3; 23 // Grantee account address 24 string grantee = 4; 25 }