You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment, gravity events emitted from the contract have the following signature:
SendToPalomaEvent(address,address,string,uint256)
BatchSendEvent(address,uint256)
It's necessary that all events observed by Pigeons contain an event nonce, that is continuously increased with every event emitted by the contract.
At the moment, the uint256 field of the BatchSendEvent() only emits the batch nonce that was used when calling it, so it's signature would need to look like this: BatchSendEvent(address,batchNonce,eventNonce) instead.
I do not know what the uint256 field of the SendToPalomaEvent emits at the moment.
But the event nonce should be included in all events emitted, and shared across every event.
The text was updated successfully, but these errors were encountered:
taariq
changed the title
Update Compass to emit the event nonce
URGENT: Update Compass to emit the event nonce for Testnet and Mainnet Proposal 11/14
Nov 14, 2023
At the moment, gravity events emitted from the contract have the following signature:
SendToPalomaEvent(address,address,string,uint256)
BatchSendEvent(address,uint256)
It's necessary that all events observed by Pigeons contain an
event nonce
, that is continuously increased with every event emitted by the contract.At the moment, the
uint256
field of theBatchSendEvent()
only emits thebatch nonce
that was used when calling it, so it's signature would need to look like this:BatchSendEvent(address,batchNonce,eventNonce)
instead.I do not know what the
uint256
field of theSendToPalomaEvent
emits at the moment.But the event nonce should be included in all events emitted, and shared across every event.
The text was updated successfully, but these errors were encountered: