@gearbox-protocol/sdk 3.0.0-vfourabi.3 → 3.0.0-vfourabi.5

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.
Files changed (60) hide show
  1. package/dist/cjs/abi/compressors.cjs +3848 -3823
  2. package/dist/cjs/abi/compressors.d.ts +13 -15
  3. package/dist/cjs/abi/errors.cjs +188 -195
  4. package/dist/cjs/abi/errors.d.ts +6 -8
  5. package/dist/cjs/abi/iERC20.cjs +123 -122
  6. package/dist/cjs/abi/iERC20.d.ts +1 -3
  7. package/dist/cjs/abi/iPausable.cjs +37 -39
  8. package/dist/cjs/abi/iPausable.d.ts +1 -3
  9. package/dist/cjs/abi/iPriceFeedStore.cjs +229 -231
  10. package/dist/cjs/abi/iPriceFeedStore.d.ts +1 -3
  11. package/dist/cjs/abi/iUpdatablePriceFeed.cjs +18 -20
  12. package/dist/cjs/abi/iUpdatablePriceFeed.d.ts +1 -3
  13. package/dist/cjs/abi/iVersion.cjs +30 -32
  14. package/dist/cjs/abi/iVersion.d.ts +1 -3
  15. package/dist/cjs/abi/iZapper.cjs +85 -84
  16. package/dist/cjs/abi/iZapper.d.ts +1 -3
  17. package/dist/cjs/abi/index.cjs +27 -0
  18. package/dist/cjs/abi/index.d.ts +11 -0
  19. package/dist/cjs/abi/routerV300.cjs +378 -381
  20. package/dist/cjs/abi/routerV300.d.ts +2 -4
  21. package/dist/cjs/abi/v300.cjs +4125 -4138
  22. package/dist/cjs/abi/v300.d.ts +12 -14
  23. package/dist/cjs/abi/v310.cjs +5141 -5116
  24. package/dist/cjs/abi/v310.d.ts +13 -15
  25. package/dist/cjs/dev/index.d.ts +287 -1
  26. package/dist/cjs/sdk/index.cjs +18865 -18931
  27. package/dist/cjs/sdk/index.d.ts +13552 -8345
  28. package/dist/esm/abi/compressors.d.mts +13 -15
  29. package/dist/esm/abi/compressors.mjs +3845 -3809
  30. package/dist/esm/abi/errors.d.mts +6 -8
  31. package/dist/esm/abi/errors.mjs +185 -188
  32. package/dist/esm/abi/iERC20.d.mts +1 -3
  33. package/dist/esm/abi/iERC20.mjs +120 -120
  34. package/dist/esm/abi/iPausable.d.mts +1 -3
  35. package/dist/esm/abi/iPausable.mjs +34 -37
  36. package/dist/esm/abi/iPriceFeedStore.d.mts +1 -3
  37. package/dist/esm/abi/iPriceFeedStore.mjs +226 -229
  38. package/dist/esm/abi/iUpdatablePriceFeed.d.mts +1 -3
  39. package/dist/esm/abi/iUpdatablePriceFeed.mjs +15 -18
  40. package/dist/esm/abi/iVersion.d.mts +1 -3
  41. package/dist/esm/abi/iVersion.mjs +27 -30
  42. package/dist/esm/abi/iZapper.d.mts +1 -3
  43. package/dist/esm/abi/iZapper.mjs +82 -82
  44. package/dist/esm/abi/index.d.mts +11 -0
  45. package/dist/esm/abi/index.mjs +11 -0
  46. package/dist/esm/abi/routerV300.d.mts +2 -4
  47. package/dist/esm/abi/routerV300.mjs +375 -378
  48. package/dist/esm/abi/v300.d.mts +12 -14
  49. package/dist/esm/abi/v300.mjs +4122 -4125
  50. package/dist/esm/abi/v310.d.mts +13 -15
  51. package/dist/esm/abi/v310.mjs +5138 -5102
  52. package/dist/esm/dev/index.d.mts +287 -1
  53. package/dist/esm/sdk/index.d.mts +13552 -8345
  54. package/dist/esm/sdk/index.mjs +18866 -18908
  55. package/package.json +1 -31
  56. package/src/abi/index.ts +11 -0
  57. package/src/sdk/index.ts +0 -1
  58. package/tsconfig.abi.json +4 -0
  59. package/tsup.config.ts +58 -8
  60. package/tsconfig.build.json +0 -4
@@ -1,4 +1,4 @@
1
- declare const iAddressProviderV300Abi: readonly [{
1
+ export declare const iAddressProviderV300Abi: readonly [{
2
2
  readonly type: "function";
3
3
  readonly name: "addresses";
4
4
  readonly inputs: readonly [{
@@ -83,7 +83,7 @@ declare const iAddressProviderV300Abi: readonly [{
83
83
  }];
84
84
  readonly anonymous: false;
85
85
  }];
86
- declare const iBotListV300Abi: readonly [{
86
+ export declare const iBotListV300Abi: readonly [{
87
87
  readonly type: "function";
88
88
  readonly name: "activeBots";
89
89
  readonly inputs: readonly [{
@@ -391,7 +391,7 @@ declare const iBotListV300Abi: readonly [{
391
391
  }];
392
392
  readonly anonymous: false;
393
393
  }];
394
- declare const iCreditConfiguratorV300Abi: readonly [{
394
+ export declare const iCreditConfiguratorV300Abi: readonly [{
395
395
  readonly type: "function";
396
396
  readonly name: "addCollateralToken";
397
397
  readonly inputs: readonly [{
@@ -989,7 +989,7 @@ declare const iCreditConfiguratorV300Abi: readonly [{
989
989
  }];
990
990
  readonly anonymous: false;
991
991
  }];
992
- declare const iCreditFacadeV300Abi: readonly [{
992
+ export declare const iCreditFacadeV300Abi: readonly [{
993
993
  readonly type: "function";
994
994
  readonly name: "botList";
995
995
  readonly inputs: readonly [];
@@ -1532,7 +1532,7 @@ declare const iCreditFacadeV300Abi: readonly [{
1532
1532
  }];
1533
1533
  readonly anonymous: false;
1534
1534
  }];
1535
- declare const iCreditFacadeV300MulticallAbi: readonly [{
1535
+ export declare const iCreditFacadeV300MulticallAbi: readonly [{
1536
1536
  readonly type: "function";
1537
1537
  readonly name: "addCollateral";
1538
1538
  readonly inputs: readonly [{
@@ -1729,7 +1729,7 @@ declare const iCreditFacadeV300MulticallAbi: readonly [{
1729
1729
  readonly outputs: readonly [];
1730
1730
  readonly stateMutability: "nonpayable";
1731
1731
  }];
1732
- declare const iCreditManagerV300Abi: readonly [{
1732
+ export declare const iCreditManagerV300Abi: readonly [{
1733
1733
  readonly type: "function";
1734
1734
  readonly name: "accountFactory";
1735
1735
  readonly inputs: readonly [];
@@ -2745,7 +2745,7 @@ declare const iCreditManagerV300Abi: readonly [{
2745
2745
  }];
2746
2746
  readonly anonymous: false;
2747
2747
  }];
2748
- declare const iGaugeV300Abi: readonly [{
2748
+ export declare const iGaugeV300Abi: readonly [{
2749
2749
  readonly type: "function";
2750
2750
  readonly name: "addQuotaToken";
2751
2751
  readonly inputs: readonly [{
@@ -3080,7 +3080,7 @@ declare const iGaugeV300Abi: readonly [{
3080
3080
  }];
3081
3081
  readonly anonymous: false;
3082
3082
  }];
3083
- declare const iGearStakingV300Abi: readonly [{
3083
+ export declare const iGearStakingV300Abi: readonly [{
3084
3084
  readonly type: "function";
3085
3085
  readonly name: "allowedVotingContract";
3086
3086
  readonly inputs: readonly [{
@@ -3577,7 +3577,7 @@ declare const iGearStakingV300Abi: readonly [{
3577
3577
  }];
3578
3578
  readonly anonymous: false;
3579
3579
  }];
3580
- declare const iLinearInterestRateModelV300Abi: readonly [{
3580
+ export declare const iLinearInterestRateModelV300Abi: readonly [{
3581
3581
  readonly type: "function";
3582
3582
  readonly name: "availableToBorrow";
3583
3583
  readonly inputs: readonly [{
@@ -3668,7 +3668,7 @@ declare const iLinearInterestRateModelV300Abi: readonly [{
3668
3668
  }];
3669
3669
  readonly stateMutability: "view";
3670
3670
  }];
3671
- declare const iPoolQuotaKeeperV300Abi: readonly [{
3671
+ export declare const iPoolQuotaKeeperV300Abi: readonly [{
3672
3672
  readonly type: "function";
3673
3673
  readonly name: "accrueQuotaInterest";
3674
3674
  readonly inputs: readonly [{
@@ -4102,7 +4102,7 @@ declare const iPoolQuotaKeeperV300Abi: readonly [{
4102
4102
  }];
4103
4103
  readonly anonymous: false;
4104
4104
  }];
4105
- declare const iPoolV300Abi: readonly [{
4105
+ export declare const iPoolV300Abi: readonly [{
4106
4106
  readonly type: "function";
4107
4107
  readonly name: "DOMAIN_SEPARATOR";
4108
4108
  readonly inputs: readonly [];
@@ -5163,7 +5163,7 @@ declare const iPoolV300Abi: readonly [{
5163
5163
  }];
5164
5164
  readonly anonymous: false;
5165
5165
  }];
5166
- declare const iPriceOracleV300Abi: readonly [{
5166
+ export declare const iPriceOracleV300Abi: readonly [{
5167
5167
  readonly type: "function";
5168
5168
  readonly name: "convert";
5169
5169
  readonly inputs: readonly [{
@@ -5482,5 +5482,3 @@ declare const iPriceOracleV300Abi: readonly [{
5482
5482
  }];
5483
5483
  readonly anonymous: false;
5484
5484
  }];
5485
-
5486
- export { iAddressProviderV300Abi, iBotListV300Abi, iCreditConfiguratorV300Abi, iCreditFacadeV300Abi, iCreditFacadeV300MulticallAbi, iCreditManagerV300Abi, iGaugeV300Abi, iGearStakingV300Abi, iLinearInterestRateModelV300Abi, iPoolQuotaKeeperV300Abi, iPoolV300Abi, iPriceOracleV300Abi };