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
The current minting has 2 things which we need to account for. These are fixed periods, and receipts. Receipts will be replaced by elaborate events when the minting happens, which will contain all the data the current receipts have. These events can then easily be extracted from graphql by whoever wants, possibly to build a UI on top.
The fixed periods also make it easy to transition from one system to the other. Once the code is complete, we decide when to transition. This will be at the boundary of a period. We then add checks in the minting code on chain to ignore most events from before this timestamp, only updating the last report received and last reported uptime fields. After the timestamp we handle extrinsics as described. In a future update, the checks can be removed. We then do a final mint off chain while the minting code is running and takes over.
The text was updated successfully, but these errors were encountered:
According to following specs:
The current minting has 2 things which we need to account for. These are fixed
periods
, andreceipts
. Receipts will be replaced by elaborate events when the minting happens, which will contain all the data the current receipts have. These events can then easily be extracted from graphql by whoever wants, possibly to build a UI on top.The fixed
periods
also make it easy to transition from one system to the other. Once the code is complete, we decide when to transition. This will be at the boundary of aperiod
. We then add checks in the minting code on chain to ignore most events from before this timestamp, only updating the last report received and last reported uptime fields. After the timestamp we handle extrinsics as described. In a future update, the checks can be removed. We then do a final mint off chain while the minting code is running and takes over.The text was updated successfully, but these errors were encountered: