How relayers vote for proposal? #753
-
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi @Kvenessa,
Yes, all of the relayers listen and receive the proposal event.
Currently, the relayers all default to passing the vote, though this can be configured based on your own custom logic for deciding what conditions are to be passed. shouldVote perfoms a few checks on conditions such as,
The relayers all execute proposals (votes) unless certain conditions are not met that prevent them from voting, but the |
Beta Was this translation helpful? Give feedback.
Hi @Kvenessa,
Yes, all of the relayers listen and receive the proposal event.
Currently, the relayers all default to passing the vote, though this can be configured based on your own custom logic for deciding what conditions are to be passed.
shouldVote perfoms a few checks on conditions such as,
hasVoted
andproposalIsComplete
but can include additional logic if deemed necessary.…