@gearbox-protocol/deploy-tools 5.16.5 → 5.16.6
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 +40 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -408796,12 +408796,50 @@ 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
|
+
|
|
408799
408836
|
// ../../packages/node/dist/parsers/CreditFacadeV3Parser.js
|
|
408800
408837
|
var CreditFacadeV3Parser = class extends AbstractParser {
|
|
408801
408838
|
constructor(contractType) {
|
|
408802
408839
|
super(contractType, "constructor(address creditManager, address degenNFT, bool expirable)");
|
|
408803
408840
|
this._abi = [
|
|
408804
408841
|
...iCreditFacadeV3Abi,
|
|
408842
|
+
...iPausableAbi2,
|
|
408805
408843
|
...parseAbi(["function setController(address newController) external"])
|
|
408806
408844
|
];
|
|
408807
408845
|
this.parameterParsers = {
|
|
@@ -409840,6 +409878,7 @@ var PoolV3Parser = class extends AbstractParser {
|
|
|
409840
409878
|
super(contractType, "constructor(address addressProvider, address underlyingToken, address interestRateModel, uint256 totalDebtLimit, string name, string symbol)");
|
|
409841
409879
|
this._abi = [
|
|
409842
409880
|
...iPoolV3Abi,
|
|
409881
|
+
...iPausableAbi2,
|
|
409843
409882
|
...parseAbi(["function setController(address newController) external"])
|
|
409844
409883
|
];
|
|
409845
409884
|
this.parameterParsers = {
|
|
@@ -411996,7 +412035,7 @@ function getRenderer(opts) {
|
|
|
411996
412035
|
var package_default = {
|
|
411997
412036
|
name: "@gearbox-protocol/deploy-tools",
|
|
411998
412037
|
description: "Gearbox deploy tools",
|
|
411999
|
-
version: "5.16.
|
|
412038
|
+
version: "5.16.6",
|
|
412000
412039
|
homepage: "https://gearbox.fi",
|
|
412001
412040
|
keywords: [
|
|
412002
412041
|
"gearbox"
|