@curvefi/api 2.57.3 → 2.57.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/utils.js +2 -2
- package/package.json +1 -1
package/lib/utils.js
CHANGED
|
@@ -1017,7 +1017,7 @@ var memoizedContract = function () {
|
|
|
1017
1017
|
}
|
|
1018
1018
|
};
|
|
1019
1019
|
};
|
|
1020
|
-
var
|
|
1020
|
+
var memoizedMulticallContract = function () {
|
|
1021
1021
|
var cache = {};
|
|
1022
1022
|
return function (address, abi) {
|
|
1023
1023
|
if (address in cache) {
|
|
@@ -1031,4 +1031,4 @@ var memoizedulticallContract = function () {
|
|
|
1031
1031
|
};
|
|
1032
1032
|
};
|
|
1033
1033
|
export var initContract = memoizedContract();
|
|
1034
|
-
export var initMulticallContract =
|
|
1034
|
+
export var initMulticallContract = memoizedMulticallContract();
|