mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 18:15:19 +00:00
b72815387a
* concepts * messages * events * begin block * address revisions Co-authored-by: karzak <kjydavis3@gmail.com>
37 lines
1.3 KiB
Markdown
37 lines
1.3 KiB
Markdown
<!--
|
|
order: 4
|
|
-->
|
|
|
|
# Events
|
|
|
|
The `x/committee` module emits the following events:
|
|
|
|
## MsgSubmitProposal
|
|
|
|
| Type | Attribute Key | Attribute Value |
|
|
| --------------- | ------------- | ------------------ |
|
|
| proposal_submit | committee_id | {'committee ID}' |
|
|
| proposal_submit | proposal_id | {'proposal ID}' |
|
|
| message | module | committee |
|
|
| message | sender | {'sender address}' |
|
|
|
|
## MsgVote
|
|
|
|
| Type | Attribute Key | Attribute Value |
|
|
| ------------- | ------------- | ------------------ |
|
|
| proposal_vote | committee_id | {'committee ID}' |
|
|
| proposal_vote | proposal_id | {'proposal ID}' |
|
|
| proposal_vote | voter | {'voter address}' |
|
|
| proposal_vote | vote | {'vote type}' |
|
|
| message | module | committee |
|
|
| message | sender | {'sender address}' |
|
|
|
|
## BeginBlock
|
|
|
|
| Type | Attribute Key | Attribute Value |
|
|
| -------------- | ---------------- | ----------------------- |
|
|
| proposal_close | committee_id | {'committee ID}' |
|
|
| proposal_close | proposal_id | {'proposal ID}' |
|
|
| proposal_close | proposal_tally | {'proposal vote tally}' |
|
|
| proposal_close | proposal_outcome | {'proposal result}' |
|