@gearbox-protocol/deploy-tools 4.63.3 → 4.64.0
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/dist/index.mjs +4 -3
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -350692,9 +350692,10 @@ var MultiPauseParser = class extends AbstractParser {
|
|
|
350692
350692
|
var OneInchFarmingPoolParser = class extends AbstractParser {
|
|
350693
350693
|
constructor(contractType) {
|
|
350694
350694
|
super(contractType, "constructor(address stakingToken_, address rewardsToken_)");
|
|
350695
|
-
this._iFace = augmentInterface(IFarmingPool__factory.createInterface(), "function transferOwnership(address newOwner)");
|
|
350695
|
+
this._iFace = augmentInterface(IFarmingPool__factory.createInterface(), "function transferOwnership(address newOwner)", "function setDistributor(address distributor_) external");
|
|
350696
350696
|
this.parameterParsers = {
|
|
350697
|
-
constructor: [parseToken("staking token"), parseToken("rewards token")]
|
|
350697
|
+
constructor: [parseToken("staking token"), parseToken("rewards token")],
|
|
350698
|
+
"setDistributor(address)": [parseAddress()]
|
|
350698
350699
|
};
|
|
350699
350700
|
}
|
|
350700
350701
|
};
|
|
@@ -352427,7 +352428,7 @@ function getRenderer(opts) {
|
|
|
352427
352428
|
var package_default = {
|
|
352428
352429
|
name: "@gearbox-protocol/deploy-tools",
|
|
352429
352430
|
description: "Gearbox deploy tools",
|
|
352430
|
-
version: "4.
|
|
352431
|
+
version: "4.64.0",
|
|
352431
352432
|
homepage: "https://gearbox.fi",
|
|
352432
352433
|
keywords: [
|
|
352433
352434
|
"gearbox"
|