@gearbox-protocol/deploy-tools 5.16.6 → 5.16.7
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 +11 -42
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -408796,51 +408796,17 @@ var CreditFacadeV2Parser = class extends AbstractParser {
|
|
|
408796
408796
|
}
|
|
408797
408797
|
};
|
|
408798
408798
|
|
|
408799
|
-
// ../../node_modules/@gearbox-protocol/sdk/dist/esm/abi/iPausable.mjs
|
|
408800
|
-
var iPausableAbi2 = [
|
|
408801
|
-
{
|
|
408802
|
-
type: "function",
|
|
408803
|
-
name: "paused",
|
|
408804
|
-
inputs: [],
|
|
408805
|
-
outputs: [{ name: "", type: "bool", internalType: "bool" }],
|
|
408806
|
-
stateMutability: "view"
|
|
408807
|
-
},
|
|
408808
|
-
{
|
|
408809
|
-
type: "event",
|
|
408810
|
-
name: "Paused",
|
|
408811
|
-
inputs: [
|
|
408812
|
-
{
|
|
408813
|
-
name: "account",
|
|
408814
|
-
type: "address",
|
|
408815
|
-
indexed: false,
|
|
408816
|
-
internalType: "address"
|
|
408817
|
-
}
|
|
408818
|
-
],
|
|
408819
|
-
anonymous: false
|
|
408820
|
-
},
|
|
408821
|
-
{
|
|
408822
|
-
type: "event",
|
|
408823
|
-
name: "Unpaused",
|
|
408824
|
-
inputs: [
|
|
408825
|
-
{
|
|
408826
|
-
name: "account",
|
|
408827
|
-
type: "address",
|
|
408828
|
-
indexed: false,
|
|
408829
|
-
internalType: "address"
|
|
408830
|
-
}
|
|
408831
|
-
],
|
|
408832
|
-
anonymous: false
|
|
408833
|
-
}
|
|
408834
|
-
];
|
|
408835
|
-
|
|
408836
408799
|
// ../../packages/node/dist/parsers/CreditFacadeV3Parser.js
|
|
408837
408800
|
var CreditFacadeV3Parser = class extends AbstractParser {
|
|
408838
408801
|
constructor(contractType) {
|
|
408839
408802
|
super(contractType, "constructor(address creditManager, address degenNFT, bool expirable)");
|
|
408840
408803
|
this._abi = [
|
|
408841
408804
|
...iCreditFacadeV3Abi,
|
|
408842
|
-
...
|
|
408843
|
-
|
|
408805
|
+
...parseAbi([
|
|
408806
|
+
"function setController(address newController) external",
|
|
408807
|
+
"function pause() external",
|
|
408808
|
+
"function unpause() external"
|
|
408809
|
+
])
|
|
408844
408810
|
];
|
|
408845
408811
|
this.parameterParsers = {
|
|
408846
408812
|
constructor: [parseAddress(), parseAddress(), void 0],
|
|
@@ -409878,8 +409844,11 @@ var PoolV3Parser = class extends AbstractParser {
|
|
|
409878
409844
|
super(contractType, "constructor(address addressProvider, address underlyingToken, address interestRateModel, uint256 totalDebtLimit, string name, string symbol)");
|
|
409879
409845
|
this._abi = [
|
|
409880
409846
|
...iPoolV3Abi,
|
|
409881
|
-
...
|
|
409882
|
-
|
|
409847
|
+
...parseAbi([
|
|
409848
|
+
"function setController(address newController) external",
|
|
409849
|
+
"function pause() external",
|
|
409850
|
+
"function unpause() external"
|
|
409851
|
+
])
|
|
409883
409852
|
];
|
|
409884
409853
|
this.parameterParsers = {
|
|
409885
409854
|
constructor: [
|
|
@@ -412035,7 +412004,7 @@ function getRenderer(opts) {
|
|
|
412035
412004
|
var package_default = {
|
|
412036
412005
|
name: "@gearbox-protocol/deploy-tools",
|
|
412037
412006
|
description: "Gearbox deploy tools",
|
|
412038
|
-
version: "5.16.
|
|
412007
|
+
version: "5.16.7",
|
|
412039
412008
|
homepage: "https://gearbox.fi",
|
|
412040
412009
|
keywords: [
|
|
412041
412010
|
"gearbox"
|