Fixed Point Numbers
See our tutorial on fixed point numbers in the learn section.
AssetParams
Each reserve asset in the ReserveManager has its own AssetParams struct that contains its configuration properties.
struct AssetParams {
address assetAddress,
uint88 allocation, // a 0.88 fixed point number
uint8 decimals
}AssetAmount
A simple type that groups assets and their token quantities
struct AssetAmount {
address assetAddress;
uint256 amount;
}Last updated on