Building EOSIO dapps independent from history solutions

cc32d9
1 min readMar 18, 2021

It’s a common struggle for every dapp builder that transactions may disappear from the blockchain while their blocks are not final. A microfork, resulting in a few blocks reevaluated and newly signed, might not include the transaction you’ve already seen. It might be dropped due to congestion, or because its timeout period is too short.

So if your service is receiving or sending payments, you always need to make sure that the transaction has survived and made it into an irreversible block. There’s a number of other transactions where it’s important to track the finality.

Most services are relying on history solutions to track the finality: they check if a transaction ID exists in the history and if the block number is below the last irreversible block. This makes them dependent on third party history services. Any failure or outage at such services may cause a financial loss.

In this design document I propose a method to track the transaction finality without the need for a history API. The smart contract is recording its important events and their timestamps, and an oracle reports the irreversible timestamp to the contract.

The model is implemented in my POS contract, and a few other projects are adopting the method. It makes the dapps more resilient and independent from public infratructure.

--

--

cc32d9

Telegram: cc32d9, Discord: cc32d9#8327, EOS account: "cc32dninexxx"