From 4725ef351aed8ee4169038a0e8ee3c98f9a19df2 Mon Sep 17 00:00:00 2001 From: Filipp Makarov Date: Fri, 29 Nov 2024 13:18:08 +0400 Subject: [PATCH] inline docs --- contracts/token/BiconomyTokenPaymaster.sol | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/contracts/token/BiconomyTokenPaymaster.sol b/contracts/token/BiconomyTokenPaymaster.sol index 3e9e50c..39d283a 100644 --- a/contracts/token/BiconomyTokenPaymaster.sol +++ b/contracts/token/BiconomyTokenPaymaster.sol @@ -58,6 +58,13 @@ contract BiconomyTokenPaymaster is uint256 private immutable _NATIVE_TOKEN_DECIMALS; // gas savings uint256 private immutable _NATIVE_ASSET_PRICE_EXPIRY_DURATION; // gas savings + /** + * @dev markup and expiry duration are provided for each token. + * Price expiry duration should be set to the heartbeat value of the token. + * Additionally, priceMarkup must be higher than Chainlink’s deviation threshold value. + * More: https://docs.chain.link/architecture-overview/architecture-decentralized-model + */ + constructor( address owner, address verifyingSignerArg,