From 8e8a4ba35192107da678c75469a763fa85fc4878 Mon Sep 17 00:00:00 2001 From: LHerskind Date: Mon, 18 Nov 2024 22:15:30 +0000 Subject: [PATCH] chore: extra comment --- l1-contracts/src/core/libraries/FeeMath.sol | 3 +++ 1 file changed, 3 insertions(+) diff --git a/l1-contracts/src/core/libraries/FeeMath.sol b/l1-contracts/src/core/libraries/FeeMath.sol index fa8bfd4be87e..6b3b08661b8d 100644 --- a/l1-contracts/src/core/libraries/FeeMath.sol +++ b/l1-contracts/src/core/libraries/FeeMath.sol @@ -73,6 +73,9 @@ library FeeMath { /** * @notice An approximation of the exponential function: factor * e ** (numerator / denominator) * + * The function is the same as used in EIP-4844 + * https://github.com/ethereum/EIPs/blob/master/EIPS/eip-4844.md + * * Approximated using a taylor series. * For shorthand below, let `a = factor`, `x = numerator`, `d = denominator` *