feat(x/gov): emit depositor in proposal_deposit event (#19853)
This commit is contained in:
parent
00b2b9d3b0
commit
d1c3547d8e
@ -34,6 +34,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
|
||||
* [#18532](https://github.com/cosmos/cosmos-sdk/pull/18532) Add proposal types to proposals.
|
||||
* [#18620](https://github.com/cosmos/cosmos-sdk/pull/18620) Add optimistic proposals.
|
||||
* [#18762](https://github.com/cosmos/cosmos-sdk/pull/18762) Add multiple choice proposals.
|
||||
* [#19853](https://github.com/cosmos/cosmos-sdk/pull/19853) Emit `depositor` in `EventTypeProposalDeposit` and `proposal_type` in `EventTypeSubmitProposal`
|
||||
|
||||
### Improvements
|
||||
|
||||
|
||||
@ -179,6 +179,7 @@ func (k Keeper) AddDeposit(ctx context.Context, proposalID uint64, depositorAddr
|
||||
|
||||
if err := k.environment.EventService.EventManager(ctx).EmitKV(
|
||||
types.EventTypeProposalDeposit,
|
||||
event.NewAttribute(types.AttributeKeyDepositor, depositorAddr.String()),
|
||||
event.NewAttribute(sdk.AttributeKeyAmount, depositAmount.String()),
|
||||
event.NewAttribute(types.AttributeKeyProposalID, fmt.Sprintf("%d", proposalID)),
|
||||
); err != nil {
|
||||
|
||||
@ -146,6 +146,7 @@ func (k Keeper) SubmitProposal(ctx context.Context, messages []sdk.Msg, metadata
|
||||
|
||||
if err := k.environment.EventService.EventManager(ctx).EmitKV(
|
||||
types.EventTypeSubmitProposal,
|
||||
event.NewAttribute(types.AttributeKeyProposalType, proposalType.String()),
|
||||
event.NewAttribute(types.AttributeKeyProposalID, fmt.Sprintf("%d", proposalID)),
|
||||
event.NewAttribute(types.AttributeKeyProposalProposer, proposer.String()),
|
||||
event.NewAttribute(types.AttributeKeyProposalMessages, strings.Join(msgs, ",")),
|
||||
|
||||
@ -13,6 +13,7 @@ const (
|
||||
AttributeKeyVoter = "voter"
|
||||
AttributeKeyOption = "option"
|
||||
AttributeKeyProposalID = "proposal_id"
|
||||
AttributeKeyDepositor = "depositor"
|
||||
AttributeKeyProposalMessages = "proposal_messages" // Msg type_urls in the proposal
|
||||
AttributeKeyVotingPeriodStart = "voting_period_start"
|
||||
AttributeKeyProposalLog = "proposal_log" // log of proposal execution
|
||||
|
||||
Loading…
Reference in New Issue
Block a user