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
where TemporalUnit is either 0x01 for block number based scheduling or 0x02 for unix timestamp based scheduling. Transaction parameters recipient, value, callGas, gasPrice, executionWindowStart, executionWindowLength, bounty, and fee are ABI encoded. The end of the string of bytes contains the callData.
so thats the encoding I'm using right now for temporal scheduling. We could come up with another encoding type for conditional. Such as TemporalUnit byte would == 0x03, and executionwindowstart is now the event to watched
and some extra stuff at the end before the callData starts since callData is just [-n] bytes in the string where n is the beginning of callData and can be set to anything as long as its standardized and timenodes are aware of the standard encoding
We define the transaction encoding to be
where
TemporalUnit
is either0x01
for block number based scheduling or0x02
for unix timestamp based scheduling. Transaction parametersrecipient
,value
,callGas
,gasPrice
,executionWindowStart
,executionWindowLength
,bounty
, andfee
are ABI encoded. The end of the string of bytes contains the callData.Serialized this will look like this:
The text was updated successfully, but these errors were encountered: