DFO / DAO / Customized Smart Contract Integration

The architecture of Covenants fixed Inflation contracts is designed to be as general purpose as possible so as to make it easy for individual wallets, organizations such as DFOs and DAOs, and all customized smart contracts to host and integrate them.

To this end, integration with these contracts is represented by an extension that can adapt to the needs of different projects. And, in fact, the contracts do not even have to know who their host is, since integration with them is carried out entirely by the extension.

For this reason, it is important that the extension that is in line with general integration needs. While it can be freely programmed, it has three mandatory functions that enable it to interact correctly with the underlying inflation contract. These three functions are:

  1. function active() public view returns (bool)

  2. function receiveTokens(address[] memory tokenAddresses, uint256[] memory transferAmounts, uint256[] memory amountsToMint) public

  3. function deactivationByFailure() public

However, the content of these functions is also at the discretion of the extension developer.

This means that in order to integrate from the outside, you only need to write the extension and link it to the contract in the manner explained here. The general function of the contract remains the same regardless of whether the host is a wallet, a DFO, a DAO or a customized smart contract. The only thing that changes is the way the extension is integrated.

Last updated