@gearbox-protocol/sdk 3.0.0-vfourabi.4 → 3.0.0-vfourabi.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/.yarn/install-state.gz +0 -0
- package/dist/cjs/abi/compressors.cjs +3848 -3823
- package/dist/cjs/abi/compressors.d.ts +13 -15
- package/dist/cjs/abi/errors.cjs +188 -195
- package/dist/cjs/abi/errors.d.ts +6 -8
- package/dist/cjs/abi/iCurvePool.cjs +1 -0
- package/dist/cjs/abi/iCurvePool.d.ts +0 -0
- package/dist/cjs/abi/iERC20.cjs +123 -122
- package/dist/cjs/abi/iERC20.d.ts +1 -3
- package/dist/cjs/abi/iPausable.cjs +37 -39
- package/dist/cjs/abi/iPausable.d.ts +1 -3
- package/dist/cjs/abi/iPriceFeedStore.cjs +229 -231
- package/dist/cjs/abi/iPriceFeedStore.d.ts +1 -3
- package/dist/cjs/abi/iUpdatablePriceFeed.cjs +18 -20
- package/dist/cjs/abi/iUpdatablePriceFeed.d.ts +1 -3
- package/dist/cjs/abi/iVersion.cjs +30 -32
- package/dist/cjs/abi/iVersion.d.ts +1 -3
- package/dist/cjs/abi/iZapper.cjs +85 -84
- package/dist/cjs/abi/iZapper.d.ts +1 -3
- package/dist/cjs/abi/index.cjs +27 -0
- package/dist/cjs/abi/index.d.ts +11 -0
- package/dist/cjs/abi/routerV300.cjs +378 -381
- package/dist/cjs/abi/routerV300.d.ts +2 -4
- package/dist/cjs/abi/v300.cjs +4125 -4138
- package/dist/cjs/abi/v300.d.ts +12 -14
- package/dist/cjs/abi/v310.cjs +5141 -5116
- package/dist/cjs/abi/v310.d.ts +13 -15
- package/dist/cjs/dev/index.d.ts +287 -1
- package/dist/cjs/sdk/index.cjs +18865 -18931
- package/dist/cjs/sdk/index.d.ts +13552 -8345
- package/dist/esm/abi/compressors.d.mts +13 -15
- package/dist/esm/abi/compressors.mjs +3845 -3809
- package/dist/esm/abi/errors.d.mts +6 -8
- package/dist/esm/abi/errors.mjs +185 -188
- package/dist/esm/abi/iCurvePool.d.mts +0 -0
- package/dist/esm/abi/iCurvePool.mjs +1 -0
- package/dist/esm/abi/iERC20.d.mts +1 -3
- package/dist/esm/abi/iERC20.mjs +120 -120
- package/dist/esm/abi/iPausable.d.mts +1 -3
- package/dist/esm/abi/iPausable.mjs +34 -37
- package/dist/esm/abi/iPriceFeedStore.d.mts +1 -3
- package/dist/esm/abi/iPriceFeedStore.mjs +226 -229
- package/dist/esm/abi/iUpdatablePriceFeed.d.mts +1 -3
- package/dist/esm/abi/iUpdatablePriceFeed.mjs +15 -18
- package/dist/esm/abi/iVersion.d.mts +1 -3
- package/dist/esm/abi/iVersion.mjs +27 -30
- package/dist/esm/abi/iZapper.d.mts +1 -3
- package/dist/esm/abi/iZapper.mjs +82 -82
- package/dist/esm/abi/index.d.mts +11 -0
- package/dist/esm/abi/index.mjs +11 -0
- package/dist/esm/abi/routerV300.d.mts +2 -4
- package/dist/esm/abi/routerV300.mjs +375 -378
- package/dist/esm/abi/v300.d.mts +12 -14
- package/dist/esm/abi/v300.mjs +4122 -4125
- package/dist/esm/abi/v310.d.mts +13 -15
- package/dist/esm/abi/v310.mjs +5138 -5102
- package/dist/esm/dev/index.d.mts +287 -1
- package/dist/esm/sdk/index.d.mts +13552 -8345
- package/dist/esm/sdk/index.mjs +18866 -18908
- package/package.json +1 -2
- package/src/abi/iCurvePool.ts +0 -0
- package/src/abi/index.ts +11 -0
- package/src/sdk/index.ts +0 -1
- package/tsconfig.abi.json +4 -0
- package/tsup.config.ts +58 -8
- package/tsconfig.build.json +0 -4
package/dist/esm/abi/v310.d.mts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
declare const iAddressProviderV310Abi: readonly [{
|
|
1
|
+
export declare const iAddressProviderV310Abi: readonly [{
|
|
2
2
|
readonly type: "function";
|
|
3
3
|
readonly inputs: readonly [];
|
|
4
4
|
readonly name: "contractType";
|
|
@@ -248,7 +248,7 @@ declare const iAddressProviderV310Abi: readonly [{
|
|
|
248
248
|
}];
|
|
249
249
|
readonly name: "ZeroAddressException";
|
|
250
250
|
}];
|
|
251
|
-
declare const iBotListV310Abi: readonly [{
|
|
251
|
+
export declare const iBotListV310Abi: readonly [{
|
|
252
252
|
readonly type: "function";
|
|
253
253
|
readonly inputs: readonly [{
|
|
254
254
|
readonly name: "creditAccount";
|
|
@@ -414,7 +414,7 @@ declare const iBotListV310Abi: readonly [{
|
|
|
414
414
|
}];
|
|
415
415
|
readonly name: "SetBotPermissions";
|
|
416
416
|
}];
|
|
417
|
-
declare const iCreditConfiguratorV310Abi: readonly [{
|
|
417
|
+
export declare const iCreditConfiguratorV310Abi: readonly [{
|
|
418
418
|
readonly type: "function";
|
|
419
419
|
readonly inputs: readonly [];
|
|
420
420
|
readonly name: "acl";
|
|
@@ -892,7 +892,7 @@ declare const iCreditConfiguratorV310Abi: readonly [{
|
|
|
892
892
|
}];
|
|
893
893
|
readonly name: "UpdateFees";
|
|
894
894
|
}];
|
|
895
|
-
declare const iCreditFacadeMulticallV310Abi: readonly [{
|
|
895
|
+
export declare const iCreditFacadeMulticallV310Abi: readonly [{
|
|
896
896
|
readonly type: "function";
|
|
897
897
|
readonly inputs: readonly [{
|
|
898
898
|
readonly name: "token";
|
|
@@ -1065,7 +1065,7 @@ declare const iCreditFacadeMulticallV310Abi: readonly [{
|
|
|
1065
1065
|
readonly outputs: readonly [];
|
|
1066
1066
|
readonly stateMutability: "nonpayable";
|
|
1067
1067
|
}];
|
|
1068
|
-
declare const iCreditFacadeV310Abi: readonly [{
|
|
1068
|
+
export declare const iCreditFacadeV310Abi: readonly [{
|
|
1069
1069
|
readonly type: "function";
|
|
1070
1070
|
readonly inputs: readonly [];
|
|
1071
1071
|
readonly name: "acl";
|
|
@@ -1705,7 +1705,7 @@ declare const iCreditFacadeV310Abi: readonly [{
|
|
|
1705
1705
|
}];
|
|
1706
1706
|
readonly name: "WithdrawPhantomToken";
|
|
1707
1707
|
}];
|
|
1708
|
-
declare const iCreditManagerV310Abi: readonly [{
|
|
1708
|
+
export declare const iCreditManagerV310Abi: readonly [{
|
|
1709
1709
|
readonly type: "function";
|
|
1710
1710
|
readonly inputs: readonly [];
|
|
1711
1711
|
readonly name: "accountFactory";
|
|
@@ -2678,7 +2678,7 @@ declare const iCreditManagerV310Abi: readonly [{
|
|
|
2678
2678
|
}];
|
|
2679
2679
|
readonly name: "SetCreditConfigurator";
|
|
2680
2680
|
}];
|
|
2681
|
-
declare const iGaugeV310Abi: readonly [{
|
|
2681
|
+
export declare const iGaugeV310Abi: readonly [{
|
|
2682
2682
|
readonly type: "function";
|
|
2683
2683
|
readonly inputs: readonly [];
|
|
2684
2684
|
readonly name: "acl";
|
|
@@ -3053,7 +3053,7 @@ declare const iGaugeV310Abi: readonly [{
|
|
|
3053
3053
|
}];
|
|
3054
3054
|
readonly name: "Vote";
|
|
3055
3055
|
}];
|
|
3056
|
-
declare const iLossPolicyV310Abi: readonly [{
|
|
3056
|
+
export declare const iLossPolicyV310Abi: readonly [{
|
|
3057
3057
|
readonly type: "function";
|
|
3058
3058
|
readonly inputs: readonly [];
|
|
3059
3059
|
readonly name: "accessMode";
|
|
@@ -3179,7 +3179,7 @@ declare const iLossPolicyV310Abi: readonly [{
|
|
|
3179
3179
|
}];
|
|
3180
3180
|
readonly name: "SetChecksEnabled";
|
|
3181
3181
|
}];
|
|
3182
|
-
declare const iMarketConfiguratorV310Abi: readonly [{
|
|
3182
|
+
export declare const iMarketConfiguratorV310Abi: readonly [{
|
|
3183
3183
|
readonly type: "function";
|
|
3184
3184
|
readonly inputs: readonly [];
|
|
3185
3185
|
readonly name: "acl";
|
|
@@ -4703,7 +4703,7 @@ declare const iMarketConfiguratorV310Abi: readonly [{
|
|
|
4703
4703
|
}];
|
|
4704
4704
|
readonly name: "UnauthorizedFactoryException";
|
|
4705
4705
|
}];
|
|
4706
|
-
declare const iPoolQuotaKeeperV310Abi: readonly [{
|
|
4706
|
+
export declare const iPoolQuotaKeeperV310Abi: readonly [{
|
|
4707
4707
|
readonly type: "function";
|
|
4708
4708
|
readonly inputs: readonly [{
|
|
4709
4709
|
readonly name: "creditAccount";
|
|
@@ -5167,7 +5167,7 @@ declare const iPoolQuotaKeeperV310Abi: readonly [{
|
|
|
5167
5167
|
}];
|
|
5168
5168
|
readonly name: "UpdateTokenQuotaRate";
|
|
5169
5169
|
}];
|
|
5170
|
-
declare const iPoolV310Abi: readonly [{
|
|
5170
|
+
export declare const iPoolV310Abi: readonly [{
|
|
5171
5171
|
readonly type: "function";
|
|
5172
5172
|
readonly inputs: readonly [];
|
|
5173
5173
|
readonly name: "DOMAIN_SEPARATOR";
|
|
@@ -6260,7 +6260,7 @@ declare const iPoolV310Abi: readonly [{
|
|
|
6260
6260
|
}];
|
|
6261
6261
|
readonly name: "Withdraw";
|
|
6262
6262
|
}];
|
|
6263
|
-
declare const iPriceOracleV310Abi: readonly [{
|
|
6263
|
+
export declare const iPriceOracleV310Abi: readonly [{
|
|
6264
6264
|
readonly type: "function";
|
|
6265
6265
|
readonly inputs: readonly [];
|
|
6266
6266
|
readonly name: "acl";
|
|
@@ -6595,7 +6595,7 @@ declare const iPriceOracleV310Abi: readonly [{
|
|
|
6595
6595
|
}];
|
|
6596
6596
|
readonly name: "SetReservePriceFeed";
|
|
6597
6597
|
}];
|
|
6598
|
-
declare const iTumblerV310Abi: readonly [{
|
|
6598
|
+
export declare const iTumblerV310Abi: readonly [{
|
|
6599
6599
|
readonly type: "function";
|
|
6600
6600
|
readonly inputs: readonly [];
|
|
6601
6601
|
readonly name: "acl";
|
|
@@ -6769,5 +6769,3 @@ declare const iTumblerV310Abi: readonly [{
|
|
|
6769
6769
|
}];
|
|
6770
6770
|
readonly name: "SetRate";
|
|
6771
6771
|
}];
|
|
6772
|
-
|
|
6773
|
-
export { iAddressProviderV310Abi, iBotListV310Abi, iCreditConfiguratorV310Abi, iCreditFacadeMulticallV310Abi, iCreditFacadeV310Abi, iCreditManagerV310Abi, iGaugeV310Abi, iLossPolicyV310Abi, iMarketConfiguratorV310Abi, iPoolQuotaKeeperV310Abi, iPoolV310Abi, iPriceOracleV310Abi, iTumblerV310Abi };
|