@defisaver/positions-sdk 2.0.13 → 2.0.14-dev-portfolio

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 (117) hide show
  1. package/CLAUDE.md +32 -0
  2. package/cjs/aaveV2/index.js +1 -0
  3. package/cjs/aaveV3/index.d.ts +12 -0
  4. package/cjs/aaveV3/index.js +93 -1
  5. package/cjs/claiming/aaveV3.d.ts +9 -0
  6. package/cjs/claiming/aaveV3.js +148 -0
  7. package/cjs/claiming/compV3.d.ts +15 -0
  8. package/cjs/claiming/compV3.js +34 -0
  9. package/cjs/claiming/index.d.ts +6 -0
  10. package/cjs/claiming/index.js +46 -0
  11. package/cjs/claiming/king.d.ts +4 -0
  12. package/cjs/claiming/king.js +72 -0
  13. package/cjs/claiming/morphoBlue.d.ts +6 -0
  14. package/cjs/claiming/morphoBlue.js +113 -0
  15. package/cjs/claiming/spark.d.ts +6 -0
  16. package/cjs/claiming/spark.js +188 -0
  17. package/cjs/config/contracts.d.ts +2667 -0
  18. package/cjs/config/contracts.js +103 -2
  19. package/cjs/constants/index.d.ts +4 -0
  20. package/cjs/constants/index.js +6 -2
  21. package/cjs/contracts.d.ts +2882 -23
  22. package/cjs/contracts.js +10 -1
  23. package/cjs/index.d.ts +2 -1
  24. package/cjs/index.js +3 -1
  25. package/cjs/liquity/index.d.ts +11 -0
  26. package/cjs/liquity/index.js +39 -1
  27. package/cjs/liquityV2/index.d.ts +8 -0
  28. package/cjs/liquityV2/index.js +161 -0
  29. package/cjs/markets/aave/marketAssets.js +1 -1
  30. package/cjs/markets/compound/marketsAssets.js +2 -2
  31. package/cjs/markets/spark/marketAssets.js +1 -1
  32. package/cjs/morphoBlue/index.d.ts +5 -0
  33. package/cjs/morphoBlue/index.js +38 -4
  34. package/cjs/portfolio/index.d.ts +6 -1
  35. package/cjs/portfolio/index.js +256 -10
  36. package/cjs/services/utils.d.ts +5 -0
  37. package/cjs/services/utils.js +33 -1
  38. package/cjs/services/viem.d.ts +12 -12
  39. package/cjs/spark/index.js +1 -0
  40. package/cjs/staking/staking.js +3 -1
  41. package/cjs/types/claiming.d.ts +93 -0
  42. package/cjs/types/claiming.js +27 -0
  43. package/cjs/umbrella/index.d.ts +5 -0
  44. package/cjs/umbrella/index.js +50 -0
  45. package/cjs/umbrella/umbrellaUtils.d.ts +22 -0
  46. package/cjs/umbrella/umbrellaUtils.js +34 -0
  47. package/esm/aaveV2/index.js +1 -0
  48. package/esm/aaveV3/index.d.ts +12 -0
  49. package/esm/aaveV3/index.js +91 -1
  50. package/esm/claiming/aaveV3.d.ts +9 -0
  51. package/esm/claiming/aaveV3.js +139 -0
  52. package/esm/claiming/compV3.d.ts +15 -0
  53. package/esm/claiming/compV3.js +30 -0
  54. package/esm/claiming/index.d.ts +6 -0
  55. package/esm/claiming/index.js +6 -0
  56. package/esm/claiming/king.d.ts +4 -0
  57. package/esm/claiming/king.js +64 -0
  58. package/esm/claiming/morphoBlue.d.ts +6 -0
  59. package/esm/claiming/morphoBlue.js +104 -0
  60. package/esm/claiming/spark.d.ts +6 -0
  61. package/esm/claiming/spark.js +179 -0
  62. package/esm/config/contracts.d.ts +2667 -0
  63. package/esm/config/contracts.js +102 -1
  64. package/esm/constants/index.d.ts +4 -0
  65. package/esm/constants/index.js +5 -1
  66. package/esm/contracts.d.ts +2882 -23
  67. package/esm/contracts.js +9 -0
  68. package/esm/index.d.ts +2 -1
  69. package/esm/index.js +2 -1
  70. package/esm/liquity/index.d.ts +11 -0
  71. package/esm/liquity/index.js +38 -1
  72. package/esm/liquityV2/index.d.ts +8 -0
  73. package/esm/liquityV2/index.js +162 -1
  74. package/esm/markets/aave/marketAssets.js +1 -1
  75. package/esm/markets/compound/marketsAssets.js +2 -2
  76. package/esm/markets/spark/marketAssets.js +1 -1
  77. package/esm/morphoBlue/index.d.ts +5 -0
  78. package/esm/morphoBlue/index.js +38 -5
  79. package/esm/portfolio/index.d.ts +6 -1
  80. package/esm/portfolio/index.js +260 -14
  81. package/esm/services/utils.d.ts +5 -0
  82. package/esm/services/utils.js +31 -0
  83. package/esm/services/viem.d.ts +12 -12
  84. package/esm/spark/index.js +1 -0
  85. package/esm/staking/staking.js +3 -1
  86. package/esm/types/claiming.d.ts +93 -0
  87. package/esm/types/claiming.js +24 -0
  88. package/esm/umbrella/index.d.ts +5 -0
  89. package/esm/umbrella/index.js +46 -0
  90. package/esm/umbrella/umbrellaUtils.d.ts +22 -0
  91. package/esm/umbrella/umbrellaUtils.js +28 -0
  92. package/package.json +2 -2
  93. package/src/aaveV2/index.ts +2 -1
  94. package/src/aaveV3/index.ts +100 -2
  95. package/src/claiming/aaveV3.ts +163 -0
  96. package/src/claiming/compV3.ts +23 -0
  97. package/src/claiming/index.ts +13 -0
  98. package/src/claiming/king.ts +66 -0
  99. package/src/claiming/morphoBlue.ts +119 -0
  100. package/src/claiming/spark.ts +226 -0
  101. package/src/config/contracts.ts +105 -5
  102. package/src/constants/index.ts +5 -1
  103. package/src/contracts.ts +14 -1
  104. package/src/index.ts +2 -0
  105. package/src/liquity/index.ts +57 -2
  106. package/src/liquityV2/index.ts +177 -2
  107. package/src/markets/aave/marketAssets.ts +1 -1
  108. package/src/markets/compound/marketsAssets.ts +2 -2
  109. package/src/markets/spark/marketAssets.ts +1 -1
  110. package/src/morphoBlue/index.ts +43 -6
  111. package/src/portfolio/index.ts +263 -15
  112. package/src/services/utils.ts +37 -1
  113. package/src/spark/index.ts +2 -1
  114. package/src/staking/staking.ts +2 -1
  115. package/src/types/claiming.ts +109 -0
  116. package/src/umbrella/index.ts +70 -0
  117. package/src/umbrella/umbrellaUtils.ts +30 -0
@@ -40778,6 +40778,33 @@ export declare const CompV3View: {
40778
40778
  }];
40779
40779
  readonly stateMutability: "view";
40780
40780
  readonly type: "function";
40781
+ }, {
40782
+ readonly inputs: readonly [{
40783
+ readonly internalType: "address";
40784
+ readonly name: "_market";
40785
+ readonly type: "address";
40786
+ }, {
40787
+ readonly internalType: "address";
40788
+ readonly name: "_user";
40789
+ readonly type: "address";
40790
+ }];
40791
+ readonly name: "getRewardsOwed";
40792
+ readonly outputs: readonly [{
40793
+ readonly components: readonly [{
40794
+ readonly internalType: "address";
40795
+ readonly name: "token";
40796
+ readonly type: "address";
40797
+ }, {
40798
+ readonly internalType: "uint256";
40799
+ readonly name: "owed";
40800
+ readonly type: "uint256";
40801
+ }];
40802
+ readonly internalType: "struct ICometRewards.RewardOwed";
40803
+ readonly name: "rewardsOwed";
40804
+ readonly type: "tuple";
40805
+ }];
40806
+ readonly stateMutability: "view";
40807
+ readonly type: "function";
40781
40808
  }];
40782
40809
  readonly networks: {
40783
40810
  readonly "1": {
@@ -77783,3 +77810,2643 @@ export declare const McdCdpManager: {
77783
77810
  };
77784
77811
  };
77785
77812
  };
77813
+ export declare const AaveIncentivesController: {
77814
+ readonly abi: readonly [{
77815
+ readonly inputs: readonly [{
77816
+ readonly internalType: "address[]";
77817
+ readonly name: "assets";
77818
+ readonly type: "address[]";
77819
+ }, {
77820
+ readonly internalType: "address";
77821
+ readonly name: "user";
77822
+ readonly type: "address";
77823
+ }];
77824
+ readonly name: "getRewardsBalance";
77825
+ readonly outputs: readonly [{
77826
+ readonly internalType: "uint256";
77827
+ readonly name: "";
77828
+ readonly type: "uint256";
77829
+ }];
77830
+ readonly stateMutability: "view";
77831
+ readonly type: "function";
77832
+ }];
77833
+ readonly networks: {
77834
+ readonly "1": {
77835
+ readonly address: "0xd784927Ff2f95ba542BfC824c8a8a98F3495f6b5";
77836
+ };
77837
+ };
77838
+ };
77839
+ export declare const Erc20: {
77840
+ readonly abi: readonly [{
77841
+ readonly constant: true;
77842
+ readonly inputs: readonly [];
77843
+ readonly name: "name";
77844
+ readonly outputs: readonly [{
77845
+ readonly name: "";
77846
+ readonly type: "string";
77847
+ }];
77848
+ readonly payable: false;
77849
+ readonly stateMutability: "view";
77850
+ readonly type: "function";
77851
+ }, {
77852
+ readonly constant: false;
77853
+ readonly inputs: readonly [];
77854
+ readonly name: "stop";
77855
+ readonly outputs: readonly [];
77856
+ readonly payable: false;
77857
+ readonly stateMutability: "nonpayable";
77858
+ readonly type: "function";
77859
+ }, {
77860
+ readonly constant: false;
77861
+ readonly inputs: readonly [{
77862
+ readonly name: "guy";
77863
+ readonly type: "address";
77864
+ }, {
77865
+ readonly name: "wad";
77866
+ readonly type: "uint256";
77867
+ }];
77868
+ readonly name: "approve";
77869
+ readonly outputs: readonly [{
77870
+ readonly name: "";
77871
+ readonly type: "bool";
77872
+ }];
77873
+ readonly payable: false;
77874
+ readonly stateMutability: "nonpayable";
77875
+ readonly type: "function";
77876
+ }, {
77877
+ readonly constant: false;
77878
+ readonly inputs: readonly [{
77879
+ readonly name: "owner_";
77880
+ readonly type: "address";
77881
+ }];
77882
+ readonly name: "setOwner";
77883
+ readonly outputs: readonly [];
77884
+ readonly payable: false;
77885
+ readonly stateMutability: "nonpayable";
77886
+ readonly type: "function";
77887
+ }, {
77888
+ readonly constant: true;
77889
+ readonly inputs: readonly [];
77890
+ readonly name: "totalSupply";
77891
+ readonly outputs: readonly [{
77892
+ readonly name: "";
77893
+ readonly type: "uint256";
77894
+ }];
77895
+ readonly payable: false;
77896
+ readonly stateMutability: "view";
77897
+ readonly type: "function";
77898
+ }, {
77899
+ readonly constant: false;
77900
+ readonly inputs: readonly [{
77901
+ readonly name: "src";
77902
+ readonly type: "address";
77903
+ }, {
77904
+ readonly name: "dst";
77905
+ readonly type: "address";
77906
+ }, {
77907
+ readonly name: "wad";
77908
+ readonly type: "uint256";
77909
+ }];
77910
+ readonly name: "transferFrom";
77911
+ readonly outputs: readonly [{
77912
+ readonly name: "";
77913
+ readonly type: "bool";
77914
+ }];
77915
+ readonly payable: false;
77916
+ readonly stateMutability: "nonpayable";
77917
+ readonly type: "function";
77918
+ }, {
77919
+ readonly constant: true;
77920
+ readonly inputs: readonly [];
77921
+ readonly name: "decimals";
77922
+ readonly outputs: readonly [{
77923
+ readonly name: "";
77924
+ readonly type: "uint256";
77925
+ }];
77926
+ readonly payable: false;
77927
+ readonly stateMutability: "view";
77928
+ readonly type: "function";
77929
+ }, {
77930
+ readonly constant: false;
77931
+ readonly inputs: readonly [{
77932
+ readonly name: "guy";
77933
+ readonly type: "address";
77934
+ }, {
77935
+ readonly name: "wad";
77936
+ readonly type: "uint256";
77937
+ }];
77938
+ readonly name: "mint";
77939
+ readonly outputs: readonly [];
77940
+ readonly payable: false;
77941
+ readonly stateMutability: "nonpayable";
77942
+ readonly type: "function";
77943
+ }, {
77944
+ readonly constant: false;
77945
+ readonly inputs: readonly [{
77946
+ readonly name: "wad";
77947
+ readonly type: "uint256";
77948
+ }];
77949
+ readonly name: "burn";
77950
+ readonly outputs: readonly [];
77951
+ readonly payable: false;
77952
+ readonly stateMutability: "nonpayable";
77953
+ readonly type: "function";
77954
+ }, {
77955
+ readonly constant: false;
77956
+ readonly inputs: readonly [{
77957
+ readonly name: "name_";
77958
+ readonly type: "bytes32";
77959
+ }];
77960
+ readonly name: "setName";
77961
+ readonly outputs: readonly [];
77962
+ readonly payable: false;
77963
+ readonly stateMutability: "nonpayable";
77964
+ readonly type: "function";
77965
+ }, {
77966
+ readonly constant: true;
77967
+ readonly inputs: readonly [{
77968
+ readonly name: "src";
77969
+ readonly type: "address";
77970
+ }];
77971
+ readonly name: "balanceOf";
77972
+ readonly outputs: readonly [{
77973
+ readonly name: "";
77974
+ readonly type: "uint256";
77975
+ }];
77976
+ readonly payable: false;
77977
+ readonly stateMutability: "view";
77978
+ readonly type: "function";
77979
+ }, {
77980
+ readonly constant: true;
77981
+ readonly inputs: readonly [];
77982
+ readonly name: "stopped";
77983
+ readonly outputs: readonly [{
77984
+ readonly name: "";
77985
+ readonly type: "bool";
77986
+ }];
77987
+ readonly payable: false;
77988
+ readonly stateMutability: "view";
77989
+ readonly type: "function";
77990
+ }, {
77991
+ readonly constant: false;
77992
+ readonly inputs: readonly [{
77993
+ readonly name: "authority_";
77994
+ readonly type: "address";
77995
+ }];
77996
+ readonly name: "setAuthority";
77997
+ readonly outputs: readonly [];
77998
+ readonly payable: false;
77999
+ readonly stateMutability: "nonpayable";
78000
+ readonly type: "function";
78001
+ }, {
78002
+ readonly constant: true;
78003
+ readonly inputs: readonly [];
78004
+ readonly name: "owner";
78005
+ readonly outputs: readonly [{
78006
+ readonly name: "";
78007
+ readonly type: "address";
78008
+ }];
78009
+ readonly payable: false;
78010
+ readonly stateMutability: "view";
78011
+ readonly type: "function";
78012
+ }, {
78013
+ readonly constant: true;
78014
+ readonly inputs: readonly [];
78015
+ readonly name: "symbol";
78016
+ readonly outputs: readonly [{
78017
+ readonly name: "";
78018
+ readonly type: "string";
78019
+ }];
78020
+ readonly payable: false;
78021
+ readonly stateMutability: "view";
78022
+ readonly type: "function";
78023
+ }, {
78024
+ readonly constant: false;
78025
+ readonly inputs: readonly [{
78026
+ readonly name: "guy";
78027
+ readonly type: "address";
78028
+ }, {
78029
+ readonly name: "wad";
78030
+ readonly type: "uint256";
78031
+ }];
78032
+ readonly name: "burn";
78033
+ readonly outputs: readonly [];
78034
+ readonly payable: false;
78035
+ readonly stateMutability: "nonpayable";
78036
+ readonly type: "function";
78037
+ }, {
78038
+ readonly constant: false;
78039
+ readonly inputs: readonly [{
78040
+ readonly name: "wad";
78041
+ readonly type: "uint256";
78042
+ }];
78043
+ readonly name: "mint";
78044
+ readonly outputs: readonly [];
78045
+ readonly payable: false;
78046
+ readonly stateMutability: "nonpayable";
78047
+ readonly type: "function";
78048
+ }, {
78049
+ readonly constant: false;
78050
+ readonly inputs: readonly [{
78051
+ readonly name: "dst";
78052
+ readonly type: "address";
78053
+ }, {
78054
+ readonly name: "wad";
78055
+ readonly type: "uint256";
78056
+ }];
78057
+ readonly name: "transfer";
78058
+ readonly outputs: readonly [{
78059
+ readonly name: "";
78060
+ readonly type: "bool";
78061
+ }];
78062
+ readonly payable: false;
78063
+ readonly stateMutability: "nonpayable";
78064
+ readonly type: "function";
78065
+ }, {
78066
+ readonly constant: false;
78067
+ readonly inputs: readonly [{
78068
+ readonly name: "dst";
78069
+ readonly type: "address";
78070
+ }, {
78071
+ readonly name: "wad";
78072
+ readonly type: "uint256";
78073
+ }];
78074
+ readonly name: "push";
78075
+ readonly outputs: readonly [];
78076
+ readonly payable: false;
78077
+ readonly stateMutability: "nonpayable";
78078
+ readonly type: "function";
78079
+ }, {
78080
+ readonly constant: false;
78081
+ readonly inputs: readonly [{
78082
+ readonly name: "src";
78083
+ readonly type: "address";
78084
+ }, {
78085
+ readonly name: "dst";
78086
+ readonly type: "address";
78087
+ }, {
78088
+ readonly name: "wad";
78089
+ readonly type: "uint256";
78090
+ }];
78091
+ readonly name: "move";
78092
+ readonly outputs: readonly [];
78093
+ readonly payable: false;
78094
+ readonly stateMutability: "nonpayable";
78095
+ readonly type: "function";
78096
+ }, {
78097
+ readonly constant: false;
78098
+ readonly inputs: readonly [];
78099
+ readonly name: "start";
78100
+ readonly outputs: readonly [];
78101
+ readonly payable: false;
78102
+ readonly stateMutability: "nonpayable";
78103
+ readonly type: "function";
78104
+ }, {
78105
+ readonly constant: true;
78106
+ readonly inputs: readonly [];
78107
+ readonly name: "authority";
78108
+ readonly outputs: readonly [{
78109
+ readonly name: "";
78110
+ readonly type: "address";
78111
+ }];
78112
+ readonly payable: false;
78113
+ readonly stateMutability: "view";
78114
+ readonly type: "function";
78115
+ }, {
78116
+ readonly constant: false;
78117
+ readonly inputs: readonly [{
78118
+ readonly name: "guy";
78119
+ readonly type: "address";
78120
+ }];
78121
+ readonly name: "approve";
78122
+ readonly outputs: readonly [{
78123
+ readonly name: "";
78124
+ readonly type: "bool";
78125
+ }];
78126
+ readonly payable: false;
78127
+ readonly stateMutability: "nonpayable";
78128
+ readonly type: "function";
78129
+ }, {
78130
+ readonly constant: true;
78131
+ readonly inputs: readonly [{
78132
+ readonly name: "src";
78133
+ readonly type: "address";
78134
+ }, {
78135
+ readonly name: "guy";
78136
+ readonly type: "address";
78137
+ }];
78138
+ readonly name: "allowance";
78139
+ readonly outputs: readonly [{
78140
+ readonly name: "";
78141
+ readonly type: "uint256";
78142
+ }];
78143
+ readonly payable: false;
78144
+ readonly stateMutability: "view";
78145
+ readonly type: "function";
78146
+ }, {
78147
+ readonly constant: false;
78148
+ readonly inputs: readonly [{
78149
+ readonly name: "src";
78150
+ readonly type: "address";
78151
+ }, {
78152
+ readonly name: "wad";
78153
+ readonly type: "uint256";
78154
+ }];
78155
+ readonly name: "pull";
78156
+ readonly outputs: readonly [];
78157
+ readonly payable: false;
78158
+ readonly stateMutability: "nonpayable";
78159
+ readonly type: "function";
78160
+ }, {
78161
+ readonly inputs: readonly [{
78162
+ readonly name: "symbol_";
78163
+ readonly type: "bytes32";
78164
+ }];
78165
+ readonly payable: false;
78166
+ readonly stateMutability: "nonpayable";
78167
+ readonly type: "constructor";
78168
+ }, {
78169
+ readonly anonymous: false;
78170
+ readonly inputs: readonly [{
78171
+ readonly indexed: true;
78172
+ readonly name: "guy";
78173
+ readonly type: "address";
78174
+ }, {
78175
+ readonly indexed: false;
78176
+ readonly name: "wad";
78177
+ readonly type: "uint256";
78178
+ }];
78179
+ readonly name: "Mint";
78180
+ readonly type: "event";
78181
+ }, {
78182
+ readonly anonymous: false;
78183
+ readonly inputs: readonly [{
78184
+ readonly indexed: true;
78185
+ readonly name: "guy";
78186
+ readonly type: "address";
78187
+ }, {
78188
+ readonly indexed: false;
78189
+ readonly name: "wad";
78190
+ readonly type: "uint256";
78191
+ }];
78192
+ readonly name: "Burn";
78193
+ readonly type: "event";
78194
+ }, {
78195
+ readonly anonymous: false;
78196
+ readonly inputs: readonly [{
78197
+ readonly indexed: true;
78198
+ readonly name: "authority";
78199
+ readonly type: "address";
78200
+ }];
78201
+ readonly name: "LogSetAuthority";
78202
+ readonly type: "event";
78203
+ }, {
78204
+ readonly anonymous: false;
78205
+ readonly inputs: readonly [{
78206
+ readonly indexed: true;
78207
+ readonly name: "owner";
78208
+ readonly type: "address";
78209
+ }];
78210
+ readonly name: "LogSetOwner";
78211
+ readonly type: "event";
78212
+ }, {
78213
+ readonly anonymous: true;
78214
+ readonly inputs: readonly [{
78215
+ readonly indexed: true;
78216
+ readonly name: "sig";
78217
+ readonly type: "bytes4";
78218
+ }, {
78219
+ readonly indexed: true;
78220
+ readonly name: "guy";
78221
+ readonly type: "address";
78222
+ }, {
78223
+ readonly indexed: true;
78224
+ readonly name: "foo";
78225
+ readonly type: "bytes32";
78226
+ }, {
78227
+ readonly indexed: true;
78228
+ readonly name: "bar";
78229
+ readonly type: "bytes32";
78230
+ }, {
78231
+ readonly indexed: false;
78232
+ readonly name: "wad";
78233
+ readonly type: "uint256";
78234
+ }, {
78235
+ readonly indexed: false;
78236
+ readonly name: "fax";
78237
+ readonly type: "bytes";
78238
+ }];
78239
+ readonly name: "LogNote";
78240
+ readonly type: "event";
78241
+ }, {
78242
+ readonly anonymous: false;
78243
+ readonly inputs: readonly [{
78244
+ readonly indexed: true;
78245
+ readonly name: "src";
78246
+ readonly type: "address";
78247
+ }, {
78248
+ readonly indexed: true;
78249
+ readonly name: "guy";
78250
+ readonly type: "address";
78251
+ }, {
78252
+ readonly indexed: false;
78253
+ readonly name: "wad";
78254
+ readonly type: "uint256";
78255
+ }];
78256
+ readonly name: "Approval";
78257
+ readonly type: "event";
78258
+ }, {
78259
+ readonly anonymous: false;
78260
+ readonly inputs: readonly [{
78261
+ readonly indexed: true;
78262
+ readonly name: "src";
78263
+ readonly type: "address";
78264
+ }, {
78265
+ readonly indexed: true;
78266
+ readonly name: "dst";
78267
+ readonly type: "address";
78268
+ }, {
78269
+ readonly indexed: false;
78270
+ readonly name: "wad";
78271
+ readonly type: "uint256";
78272
+ }];
78273
+ readonly name: "Transfer";
78274
+ readonly type: "event";
78275
+ }];
78276
+ readonly networks: {};
78277
+ };
78278
+ export declare const Erc4626: {
78279
+ readonly abi: readonly [{
78280
+ readonly inputs: readonly [{
78281
+ readonly internalType: "contract IFluidLiquidity";
78282
+ readonly name: "liquidity_";
78283
+ readonly type: "address";
78284
+ }, {
78285
+ readonly internalType: "contract IFluidLendingFactory";
78286
+ readonly name: "lendingFactory_";
78287
+ readonly type: "address";
78288
+ }, {
78289
+ readonly internalType: "contract IERC20";
78290
+ readonly name: "asset_";
78291
+ readonly type: "address";
78292
+ }];
78293
+ readonly stateMutability: "nonpayable";
78294
+ readonly type: "constructor";
78295
+ }, {
78296
+ readonly inputs: readonly [{
78297
+ readonly internalType: "uint256";
78298
+ readonly name: "errorId_";
78299
+ readonly type: "uint256";
78300
+ }];
78301
+ readonly name: "FluidLendingError";
78302
+ readonly type: "error";
78303
+ }, {
78304
+ readonly inputs: readonly [{
78305
+ readonly internalType: "uint256";
78306
+ readonly name: "errorId_";
78307
+ readonly type: "uint256";
78308
+ }];
78309
+ readonly name: "FluidLiquidityCalcsError";
78310
+ readonly type: "error";
78311
+ }, {
78312
+ readonly inputs: readonly [{
78313
+ readonly internalType: "uint256";
78314
+ readonly name: "errorId_";
78315
+ readonly type: "uint256";
78316
+ }];
78317
+ readonly name: "FluidSafeTransferError";
78318
+ readonly type: "error";
78319
+ }, {
78320
+ readonly anonymous: false;
78321
+ readonly inputs: readonly [{
78322
+ readonly indexed: true;
78323
+ readonly internalType: "address";
78324
+ readonly name: "owner";
78325
+ readonly type: "address";
78326
+ }, {
78327
+ readonly indexed: true;
78328
+ readonly internalType: "address";
78329
+ readonly name: "spender";
78330
+ readonly type: "address";
78331
+ }, {
78332
+ readonly indexed: false;
78333
+ readonly internalType: "uint256";
78334
+ readonly name: "value";
78335
+ readonly type: "uint256";
78336
+ }];
78337
+ readonly name: "Approval";
78338
+ readonly type: "event";
78339
+ }, {
78340
+ readonly anonymous: false;
78341
+ readonly inputs: readonly [{
78342
+ readonly indexed: true;
78343
+ readonly internalType: "address";
78344
+ readonly name: "sender";
78345
+ readonly type: "address";
78346
+ }, {
78347
+ readonly indexed: true;
78348
+ readonly internalType: "address";
78349
+ readonly name: "owner";
78350
+ readonly type: "address";
78351
+ }, {
78352
+ readonly indexed: false;
78353
+ readonly internalType: "uint256";
78354
+ readonly name: "assets";
78355
+ readonly type: "uint256";
78356
+ }, {
78357
+ readonly indexed: false;
78358
+ readonly internalType: "uint256";
78359
+ readonly name: "shares";
78360
+ readonly type: "uint256";
78361
+ }];
78362
+ readonly name: "Deposit";
78363
+ readonly type: "event";
78364
+ }, {
78365
+ readonly anonymous: false;
78366
+ readonly inputs: readonly [{
78367
+ readonly indexed: false;
78368
+ readonly internalType: "uint256";
78369
+ readonly name: "assets";
78370
+ readonly type: "uint256";
78371
+ }];
78372
+ readonly name: "LogRebalance";
78373
+ readonly type: "event";
78374
+ }, {
78375
+ readonly anonymous: false;
78376
+ readonly inputs: readonly [{
78377
+ readonly indexed: true;
78378
+ readonly internalType: "address";
78379
+ readonly name: "token";
78380
+ readonly type: "address";
78381
+ }];
78382
+ readonly name: "LogRescueFunds";
78383
+ readonly type: "event";
78384
+ }, {
78385
+ readonly anonymous: false;
78386
+ readonly inputs: readonly [{
78387
+ readonly indexed: false;
78388
+ readonly internalType: "uint256";
78389
+ readonly name: "tokenExchangePrice";
78390
+ readonly type: "uint256";
78391
+ }, {
78392
+ readonly indexed: false;
78393
+ readonly internalType: "uint256";
78394
+ readonly name: "liquidityExchangePrice";
78395
+ readonly type: "uint256";
78396
+ }];
78397
+ readonly name: "LogUpdateRates";
78398
+ readonly type: "event";
78399
+ }, {
78400
+ readonly anonymous: false;
78401
+ readonly inputs: readonly [{
78402
+ readonly indexed: true;
78403
+ readonly internalType: "address";
78404
+ readonly name: "rebalancer";
78405
+ readonly type: "address";
78406
+ }];
78407
+ readonly name: "LogUpdateRebalancer";
78408
+ readonly type: "event";
78409
+ }, {
78410
+ readonly anonymous: false;
78411
+ readonly inputs: readonly [{
78412
+ readonly indexed: true;
78413
+ readonly internalType: "contract IFluidLendingRewardsRateModel";
78414
+ readonly name: "rewardsRateModel";
78415
+ readonly type: "address";
78416
+ }];
78417
+ readonly name: "LogUpdateRewards";
78418
+ readonly type: "event";
78419
+ }, {
78420
+ readonly anonymous: false;
78421
+ readonly inputs: readonly [{
78422
+ readonly indexed: true;
78423
+ readonly internalType: "address";
78424
+ readonly name: "from";
78425
+ readonly type: "address";
78426
+ }, {
78427
+ readonly indexed: true;
78428
+ readonly internalType: "address";
78429
+ readonly name: "to";
78430
+ readonly type: "address";
78431
+ }, {
78432
+ readonly indexed: false;
78433
+ readonly internalType: "uint256";
78434
+ readonly name: "value";
78435
+ readonly type: "uint256";
78436
+ }];
78437
+ readonly name: "Transfer";
78438
+ readonly type: "event";
78439
+ }, {
78440
+ readonly anonymous: false;
78441
+ readonly inputs: readonly [{
78442
+ readonly indexed: true;
78443
+ readonly internalType: "address";
78444
+ readonly name: "sender";
78445
+ readonly type: "address";
78446
+ }, {
78447
+ readonly indexed: true;
78448
+ readonly internalType: "address";
78449
+ readonly name: "receiver";
78450
+ readonly type: "address";
78451
+ }, {
78452
+ readonly indexed: true;
78453
+ readonly internalType: "address";
78454
+ readonly name: "owner";
78455
+ readonly type: "address";
78456
+ }, {
78457
+ readonly indexed: false;
78458
+ readonly internalType: "uint256";
78459
+ readonly name: "assets";
78460
+ readonly type: "uint256";
78461
+ }, {
78462
+ readonly indexed: false;
78463
+ readonly internalType: "uint256";
78464
+ readonly name: "shares";
78465
+ readonly type: "uint256";
78466
+ }];
78467
+ readonly name: "Withdraw";
78468
+ readonly type: "event";
78469
+ }, {
78470
+ readonly inputs: readonly [];
78471
+ readonly name: "DOMAIN_SEPARATOR";
78472
+ readonly outputs: readonly [{
78473
+ readonly internalType: "bytes32";
78474
+ readonly name: "";
78475
+ readonly type: "bytes32";
78476
+ }];
78477
+ readonly stateMutability: "view";
78478
+ readonly type: "function";
78479
+ }, {
78480
+ readonly inputs: readonly [{
78481
+ readonly internalType: "address";
78482
+ readonly name: "owner";
78483
+ readonly type: "address";
78484
+ }, {
78485
+ readonly internalType: "address";
78486
+ readonly name: "spender";
78487
+ readonly type: "address";
78488
+ }];
78489
+ readonly name: "allowance";
78490
+ readonly outputs: readonly [{
78491
+ readonly internalType: "uint256";
78492
+ readonly name: "";
78493
+ readonly type: "uint256";
78494
+ }];
78495
+ readonly stateMutability: "view";
78496
+ readonly type: "function";
78497
+ }, {
78498
+ readonly inputs: readonly [{
78499
+ readonly internalType: "address";
78500
+ readonly name: "spender";
78501
+ readonly type: "address";
78502
+ }, {
78503
+ readonly internalType: "uint256";
78504
+ readonly name: "amount";
78505
+ readonly type: "uint256";
78506
+ }];
78507
+ readonly name: "approve";
78508
+ readonly outputs: readonly [{
78509
+ readonly internalType: "bool";
78510
+ readonly name: "";
78511
+ readonly type: "bool";
78512
+ }];
78513
+ readonly stateMutability: "nonpayable";
78514
+ readonly type: "function";
78515
+ }, {
78516
+ readonly inputs: readonly [];
78517
+ readonly name: "asset";
78518
+ readonly outputs: readonly [{
78519
+ readonly internalType: "address";
78520
+ readonly name: "";
78521
+ readonly type: "address";
78522
+ }];
78523
+ readonly stateMutability: "view";
78524
+ readonly type: "function";
78525
+ }, {
78526
+ readonly inputs: readonly [{
78527
+ readonly internalType: "address";
78528
+ readonly name: "account";
78529
+ readonly type: "address";
78530
+ }];
78531
+ readonly name: "balanceOf";
78532
+ readonly outputs: readonly [{
78533
+ readonly internalType: "uint256";
78534
+ readonly name: "";
78535
+ readonly type: "uint256";
78536
+ }];
78537
+ readonly stateMutability: "view";
78538
+ readonly type: "function";
78539
+ }, {
78540
+ readonly inputs: readonly [{
78541
+ readonly internalType: "uint256";
78542
+ readonly name: "shares_";
78543
+ readonly type: "uint256";
78544
+ }];
78545
+ readonly name: "convertToAssets";
78546
+ readonly outputs: readonly [{
78547
+ readonly internalType: "uint256";
78548
+ readonly name: "";
78549
+ readonly type: "uint256";
78550
+ }];
78551
+ readonly stateMutability: "view";
78552
+ readonly type: "function";
78553
+ }, {
78554
+ readonly inputs: readonly [{
78555
+ readonly internalType: "uint256";
78556
+ readonly name: "assets_";
78557
+ readonly type: "uint256";
78558
+ }];
78559
+ readonly name: "convertToShares";
78560
+ readonly outputs: readonly [{
78561
+ readonly internalType: "uint256";
78562
+ readonly name: "";
78563
+ readonly type: "uint256";
78564
+ }];
78565
+ readonly stateMutability: "view";
78566
+ readonly type: "function";
78567
+ }, {
78568
+ readonly inputs: readonly [];
78569
+ readonly name: "decimals";
78570
+ readonly outputs: readonly [{
78571
+ readonly internalType: "uint8";
78572
+ readonly name: "";
78573
+ readonly type: "uint8";
78574
+ }];
78575
+ readonly stateMutability: "view";
78576
+ readonly type: "function";
78577
+ }, {
78578
+ readonly inputs: readonly [{
78579
+ readonly internalType: "address";
78580
+ readonly name: "spender";
78581
+ readonly type: "address";
78582
+ }, {
78583
+ readonly internalType: "uint256";
78584
+ readonly name: "subtractedValue";
78585
+ readonly type: "uint256";
78586
+ }];
78587
+ readonly name: "decreaseAllowance";
78588
+ readonly outputs: readonly [{
78589
+ readonly internalType: "bool";
78590
+ readonly name: "";
78591
+ readonly type: "bool";
78592
+ }];
78593
+ readonly stateMutability: "nonpayable";
78594
+ readonly type: "function";
78595
+ }, {
78596
+ readonly inputs: readonly [{
78597
+ readonly internalType: "uint256";
78598
+ readonly name: "assets_";
78599
+ readonly type: "uint256";
78600
+ }, {
78601
+ readonly internalType: "address";
78602
+ readonly name: "receiver_";
78603
+ readonly type: "address";
78604
+ }];
78605
+ readonly name: "deposit";
78606
+ readonly outputs: readonly [{
78607
+ readonly internalType: "uint256";
78608
+ readonly name: "shares_";
78609
+ readonly type: "uint256";
78610
+ }];
78611
+ readonly stateMutability: "nonpayable";
78612
+ readonly type: "function";
78613
+ }, {
78614
+ readonly inputs: readonly [{
78615
+ readonly internalType: "uint256";
78616
+ readonly name: "assets_";
78617
+ readonly type: "uint256";
78618
+ }, {
78619
+ readonly internalType: "address";
78620
+ readonly name: "receiver_";
78621
+ readonly type: "address";
78622
+ }, {
78623
+ readonly internalType: "uint256";
78624
+ readonly name: "minAmountOut_";
78625
+ readonly type: "uint256";
78626
+ }];
78627
+ readonly name: "deposit";
78628
+ readonly outputs: readonly [{
78629
+ readonly internalType: "uint256";
78630
+ readonly name: "shares_";
78631
+ readonly type: "uint256";
78632
+ }];
78633
+ readonly stateMutability: "nonpayable";
78634
+ readonly type: "function";
78635
+ }, {
78636
+ readonly inputs: readonly [{
78637
+ readonly internalType: "uint256";
78638
+ readonly name: "assets_";
78639
+ readonly type: "uint256";
78640
+ }, {
78641
+ readonly internalType: "address";
78642
+ readonly name: "receiver_";
78643
+ readonly type: "address";
78644
+ }, {
78645
+ readonly internalType: "uint256";
78646
+ readonly name: "minAmountOut_";
78647
+ readonly type: "uint256";
78648
+ }, {
78649
+ readonly components: readonly [{
78650
+ readonly components: readonly [{
78651
+ readonly internalType: "address";
78652
+ readonly name: "token";
78653
+ readonly type: "address";
78654
+ }, {
78655
+ readonly internalType: "uint160";
78656
+ readonly name: "amount";
78657
+ readonly type: "uint160";
78658
+ }, {
78659
+ readonly internalType: "uint48";
78660
+ readonly name: "expiration";
78661
+ readonly type: "uint48";
78662
+ }, {
78663
+ readonly internalType: "uint48";
78664
+ readonly name: "nonce";
78665
+ readonly type: "uint48";
78666
+ }];
78667
+ readonly internalType: "struct IAllowanceTransfer.PermitDetails";
78668
+ readonly name: "details";
78669
+ readonly type: "tuple";
78670
+ }, {
78671
+ readonly internalType: "address";
78672
+ readonly name: "spender";
78673
+ readonly type: "address";
78674
+ }, {
78675
+ readonly internalType: "uint256";
78676
+ readonly name: "sigDeadline";
78677
+ readonly type: "uint256";
78678
+ }];
78679
+ readonly internalType: "struct IAllowanceTransfer.PermitSingle";
78680
+ readonly name: "permit_";
78681
+ readonly type: "tuple";
78682
+ }, {
78683
+ readonly internalType: "bytes";
78684
+ readonly name: "signature_";
78685
+ readonly type: "bytes";
78686
+ }];
78687
+ readonly name: "depositWithSignature";
78688
+ readonly outputs: readonly [{
78689
+ readonly internalType: "uint256";
78690
+ readonly name: "shares_";
78691
+ readonly type: "uint256";
78692
+ }];
78693
+ readonly stateMutability: "nonpayable";
78694
+ readonly type: "function";
78695
+ }, {
78696
+ readonly inputs: readonly [{
78697
+ readonly internalType: "uint256";
78698
+ readonly name: "assets_";
78699
+ readonly type: "uint256";
78700
+ }, {
78701
+ readonly internalType: "address";
78702
+ readonly name: "receiver_";
78703
+ readonly type: "address";
78704
+ }, {
78705
+ readonly internalType: "uint256";
78706
+ readonly name: "minAmountOut_";
78707
+ readonly type: "uint256";
78708
+ }, {
78709
+ readonly internalType: "uint256";
78710
+ readonly name: "deadline_";
78711
+ readonly type: "uint256";
78712
+ }, {
78713
+ readonly internalType: "bytes";
78714
+ readonly name: "signature_";
78715
+ readonly type: "bytes";
78716
+ }];
78717
+ readonly name: "depositWithSignatureEIP2612";
78718
+ readonly outputs: readonly [{
78719
+ readonly internalType: "uint256";
78720
+ readonly name: "shares_";
78721
+ readonly type: "uint256";
78722
+ }];
78723
+ readonly stateMutability: "nonpayable";
78724
+ readonly type: "function";
78725
+ }, {
78726
+ readonly inputs: readonly [];
78727
+ readonly name: "getData";
78728
+ readonly outputs: readonly [{
78729
+ readonly internalType: "contract IFluidLiquidity";
78730
+ readonly name: "liquidity_";
78731
+ readonly type: "address";
78732
+ }, {
78733
+ readonly internalType: "contract IFluidLendingFactory";
78734
+ readonly name: "lendingFactory_";
78735
+ readonly type: "address";
78736
+ }, {
78737
+ readonly internalType: "contract IFluidLendingRewardsRateModel";
78738
+ readonly name: "lendingRewardsRateModel_";
78739
+ readonly type: "address";
78740
+ }, {
78741
+ readonly internalType: "contract IAllowanceTransfer";
78742
+ readonly name: "permit2_";
78743
+ readonly type: "address";
78744
+ }, {
78745
+ readonly internalType: "address";
78746
+ readonly name: "rebalancer_";
78747
+ readonly type: "address";
78748
+ }, {
78749
+ readonly internalType: "bool";
78750
+ readonly name: "rewardsActive_";
78751
+ readonly type: "bool";
78752
+ }, {
78753
+ readonly internalType: "uint256";
78754
+ readonly name: "liquidityBalance_";
78755
+ readonly type: "uint256";
78756
+ }, {
78757
+ readonly internalType: "uint256";
78758
+ readonly name: "liquidityExchangePrice_";
78759
+ readonly type: "uint256";
78760
+ }, {
78761
+ readonly internalType: "uint256";
78762
+ readonly name: "tokenExchangePrice_";
78763
+ readonly type: "uint256";
78764
+ }];
78765
+ readonly stateMutability: "view";
78766
+ readonly type: "function";
78767
+ }, {
78768
+ readonly inputs: readonly [{
78769
+ readonly internalType: "address";
78770
+ readonly name: "spender";
78771
+ readonly type: "address";
78772
+ }, {
78773
+ readonly internalType: "uint256";
78774
+ readonly name: "addedValue";
78775
+ readonly type: "uint256";
78776
+ }];
78777
+ readonly name: "increaseAllowance";
78778
+ readonly outputs: readonly [{
78779
+ readonly internalType: "bool";
78780
+ readonly name: "";
78781
+ readonly type: "bool";
78782
+ }];
78783
+ readonly stateMutability: "nonpayable";
78784
+ readonly type: "function";
78785
+ }, {
78786
+ readonly inputs: readonly [{
78787
+ readonly internalType: "address";
78788
+ readonly name: "token_";
78789
+ readonly type: "address";
78790
+ }, {
78791
+ readonly internalType: "uint256";
78792
+ readonly name: "amount_";
78793
+ readonly type: "uint256";
78794
+ }, {
78795
+ readonly internalType: "bytes";
78796
+ readonly name: "data_";
78797
+ readonly type: "bytes";
78798
+ }];
78799
+ readonly name: "liquidityCallback";
78800
+ readonly outputs: readonly [];
78801
+ readonly stateMutability: "nonpayable";
78802
+ readonly type: "function";
78803
+ }, {
78804
+ readonly inputs: readonly [{
78805
+ readonly internalType: "address";
78806
+ readonly name: "";
78807
+ readonly type: "address";
78808
+ }];
78809
+ readonly name: "maxDeposit";
78810
+ readonly outputs: readonly [{
78811
+ readonly internalType: "uint256";
78812
+ readonly name: "";
78813
+ readonly type: "uint256";
78814
+ }];
78815
+ readonly stateMutability: "view";
78816
+ readonly type: "function";
78817
+ }, {
78818
+ readonly inputs: readonly [{
78819
+ readonly internalType: "address";
78820
+ readonly name: "";
78821
+ readonly type: "address";
78822
+ }];
78823
+ readonly name: "maxMint";
78824
+ readonly outputs: readonly [{
78825
+ readonly internalType: "uint256";
78826
+ readonly name: "";
78827
+ readonly type: "uint256";
78828
+ }];
78829
+ readonly stateMutability: "view";
78830
+ readonly type: "function";
78831
+ }, {
78832
+ readonly inputs: readonly [{
78833
+ readonly internalType: "address";
78834
+ readonly name: "owner_";
78835
+ readonly type: "address";
78836
+ }];
78837
+ readonly name: "maxRedeem";
78838
+ readonly outputs: readonly [{
78839
+ readonly internalType: "uint256";
78840
+ readonly name: "";
78841
+ readonly type: "uint256";
78842
+ }];
78843
+ readonly stateMutability: "view";
78844
+ readonly type: "function";
78845
+ }, {
78846
+ readonly inputs: readonly [{
78847
+ readonly internalType: "address";
78848
+ readonly name: "owner_";
78849
+ readonly type: "address";
78850
+ }];
78851
+ readonly name: "maxWithdraw";
78852
+ readonly outputs: readonly [{
78853
+ readonly internalType: "uint256";
78854
+ readonly name: "";
78855
+ readonly type: "uint256";
78856
+ }];
78857
+ readonly stateMutability: "view";
78858
+ readonly type: "function";
78859
+ }, {
78860
+ readonly inputs: readonly [];
78861
+ readonly name: "minDeposit";
78862
+ readonly outputs: readonly [{
78863
+ readonly internalType: "uint256";
78864
+ readonly name: "";
78865
+ readonly type: "uint256";
78866
+ }];
78867
+ readonly stateMutability: "view";
78868
+ readonly type: "function";
78869
+ }, {
78870
+ readonly inputs: readonly [{
78871
+ readonly internalType: "uint256";
78872
+ readonly name: "shares_";
78873
+ readonly type: "uint256";
78874
+ }, {
78875
+ readonly internalType: "address";
78876
+ readonly name: "receiver_";
78877
+ readonly type: "address";
78878
+ }, {
78879
+ readonly internalType: "uint256";
78880
+ readonly name: "maxAssets_";
78881
+ readonly type: "uint256";
78882
+ }];
78883
+ readonly name: "mint";
78884
+ readonly outputs: readonly [{
78885
+ readonly internalType: "uint256";
78886
+ readonly name: "assets_";
78887
+ readonly type: "uint256";
78888
+ }];
78889
+ readonly stateMutability: "nonpayable";
78890
+ readonly type: "function";
78891
+ }, {
78892
+ readonly inputs: readonly [{
78893
+ readonly internalType: "uint256";
78894
+ readonly name: "shares_";
78895
+ readonly type: "uint256";
78896
+ }, {
78897
+ readonly internalType: "address";
78898
+ readonly name: "receiver_";
78899
+ readonly type: "address";
78900
+ }];
78901
+ readonly name: "mint";
78902
+ readonly outputs: readonly [{
78903
+ readonly internalType: "uint256";
78904
+ readonly name: "assets_";
78905
+ readonly type: "uint256";
78906
+ }];
78907
+ readonly stateMutability: "nonpayable";
78908
+ readonly type: "function";
78909
+ }, {
78910
+ readonly inputs: readonly [{
78911
+ readonly internalType: "uint256";
78912
+ readonly name: "shares_";
78913
+ readonly type: "uint256";
78914
+ }, {
78915
+ readonly internalType: "address";
78916
+ readonly name: "receiver_";
78917
+ readonly type: "address";
78918
+ }, {
78919
+ readonly internalType: "uint256";
78920
+ readonly name: "maxAssets_";
78921
+ readonly type: "uint256";
78922
+ }, {
78923
+ readonly components: readonly [{
78924
+ readonly components: readonly [{
78925
+ readonly internalType: "address";
78926
+ readonly name: "token";
78927
+ readonly type: "address";
78928
+ }, {
78929
+ readonly internalType: "uint160";
78930
+ readonly name: "amount";
78931
+ readonly type: "uint160";
78932
+ }, {
78933
+ readonly internalType: "uint48";
78934
+ readonly name: "expiration";
78935
+ readonly type: "uint48";
78936
+ }, {
78937
+ readonly internalType: "uint48";
78938
+ readonly name: "nonce";
78939
+ readonly type: "uint48";
78940
+ }];
78941
+ readonly internalType: "struct IAllowanceTransfer.PermitDetails";
78942
+ readonly name: "details";
78943
+ readonly type: "tuple";
78944
+ }, {
78945
+ readonly internalType: "address";
78946
+ readonly name: "spender";
78947
+ readonly type: "address";
78948
+ }, {
78949
+ readonly internalType: "uint256";
78950
+ readonly name: "sigDeadline";
78951
+ readonly type: "uint256";
78952
+ }];
78953
+ readonly internalType: "struct IAllowanceTransfer.PermitSingle";
78954
+ readonly name: "permit_";
78955
+ readonly type: "tuple";
78956
+ }, {
78957
+ readonly internalType: "bytes";
78958
+ readonly name: "signature_";
78959
+ readonly type: "bytes";
78960
+ }];
78961
+ readonly name: "mintWithSignature";
78962
+ readonly outputs: readonly [{
78963
+ readonly internalType: "uint256";
78964
+ readonly name: "assets_";
78965
+ readonly type: "uint256";
78966
+ }];
78967
+ readonly stateMutability: "nonpayable";
78968
+ readonly type: "function";
78969
+ }, {
78970
+ readonly inputs: readonly [{
78971
+ readonly internalType: "uint256";
78972
+ readonly name: "shares_";
78973
+ readonly type: "uint256";
78974
+ }, {
78975
+ readonly internalType: "address";
78976
+ readonly name: "receiver_";
78977
+ readonly type: "address";
78978
+ }, {
78979
+ readonly internalType: "uint256";
78980
+ readonly name: "maxAssets_";
78981
+ readonly type: "uint256";
78982
+ }, {
78983
+ readonly internalType: "uint256";
78984
+ readonly name: "deadline_";
78985
+ readonly type: "uint256";
78986
+ }, {
78987
+ readonly internalType: "bytes";
78988
+ readonly name: "signature_";
78989
+ readonly type: "bytes";
78990
+ }];
78991
+ readonly name: "mintWithSignatureEIP2612";
78992
+ readonly outputs: readonly [{
78993
+ readonly internalType: "uint256";
78994
+ readonly name: "assets_";
78995
+ readonly type: "uint256";
78996
+ }];
78997
+ readonly stateMutability: "nonpayable";
78998
+ readonly type: "function";
78999
+ }, {
79000
+ readonly inputs: readonly [];
79001
+ readonly name: "name";
79002
+ readonly outputs: readonly [{
79003
+ readonly internalType: "string";
79004
+ readonly name: "";
79005
+ readonly type: "string";
79006
+ }];
79007
+ readonly stateMutability: "view";
79008
+ readonly type: "function";
79009
+ }, {
79010
+ readonly inputs: readonly [{
79011
+ readonly internalType: "address";
79012
+ readonly name: "owner";
79013
+ readonly type: "address";
79014
+ }];
79015
+ readonly name: "nonces";
79016
+ readonly outputs: readonly [{
79017
+ readonly internalType: "uint256";
79018
+ readonly name: "";
79019
+ readonly type: "uint256";
79020
+ }];
79021
+ readonly stateMutability: "view";
79022
+ readonly type: "function";
79023
+ }, {
79024
+ readonly inputs: readonly [{
79025
+ readonly internalType: "address";
79026
+ readonly name: "owner";
79027
+ readonly type: "address";
79028
+ }, {
79029
+ readonly internalType: "address";
79030
+ readonly name: "spender";
79031
+ readonly type: "address";
79032
+ }, {
79033
+ readonly internalType: "uint256";
79034
+ readonly name: "value";
79035
+ readonly type: "uint256";
79036
+ }, {
79037
+ readonly internalType: "uint256";
79038
+ readonly name: "deadline";
79039
+ readonly type: "uint256";
79040
+ }, {
79041
+ readonly internalType: "uint8";
79042
+ readonly name: "v";
79043
+ readonly type: "uint8";
79044
+ }, {
79045
+ readonly internalType: "bytes32";
79046
+ readonly name: "r";
79047
+ readonly type: "bytes32";
79048
+ }, {
79049
+ readonly internalType: "bytes32";
79050
+ readonly name: "s";
79051
+ readonly type: "bytes32";
79052
+ }];
79053
+ readonly name: "permit";
79054
+ readonly outputs: readonly [];
79055
+ readonly stateMutability: "nonpayable";
79056
+ readonly type: "function";
79057
+ }, {
79058
+ readonly inputs: readonly [{
79059
+ readonly internalType: "uint256";
79060
+ readonly name: "assets_";
79061
+ readonly type: "uint256";
79062
+ }];
79063
+ readonly name: "previewDeposit";
79064
+ readonly outputs: readonly [{
79065
+ readonly internalType: "uint256";
79066
+ readonly name: "";
79067
+ readonly type: "uint256";
79068
+ }];
79069
+ readonly stateMutability: "view";
79070
+ readonly type: "function";
79071
+ }, {
79072
+ readonly inputs: readonly [{
79073
+ readonly internalType: "uint256";
79074
+ readonly name: "shares_";
79075
+ readonly type: "uint256";
79076
+ }];
79077
+ readonly name: "previewMint";
79078
+ readonly outputs: readonly [{
79079
+ readonly internalType: "uint256";
79080
+ readonly name: "";
79081
+ readonly type: "uint256";
79082
+ }];
79083
+ readonly stateMutability: "view";
79084
+ readonly type: "function";
79085
+ }, {
79086
+ readonly inputs: readonly [{
79087
+ readonly internalType: "uint256";
79088
+ readonly name: "shares_";
79089
+ readonly type: "uint256";
79090
+ }];
79091
+ readonly name: "previewRedeem";
79092
+ readonly outputs: readonly [{
79093
+ readonly internalType: "uint256";
79094
+ readonly name: "";
79095
+ readonly type: "uint256";
79096
+ }];
79097
+ readonly stateMutability: "view";
79098
+ readonly type: "function";
79099
+ }, {
79100
+ readonly inputs: readonly [{
79101
+ readonly internalType: "uint256";
79102
+ readonly name: "assets_";
79103
+ readonly type: "uint256";
79104
+ }];
79105
+ readonly name: "previewWithdraw";
79106
+ readonly outputs: readonly [{
79107
+ readonly internalType: "uint256";
79108
+ readonly name: "";
79109
+ readonly type: "uint256";
79110
+ }];
79111
+ readonly stateMutability: "view";
79112
+ readonly type: "function";
79113
+ }, {
79114
+ readonly inputs: readonly [];
79115
+ readonly name: "rebalance";
79116
+ readonly outputs: readonly [{
79117
+ readonly internalType: "uint256";
79118
+ readonly name: "assets_";
79119
+ readonly type: "uint256";
79120
+ }];
79121
+ readonly stateMutability: "payable";
79122
+ readonly type: "function";
79123
+ }, {
79124
+ readonly inputs: readonly [{
79125
+ readonly internalType: "uint256";
79126
+ readonly name: "shares_";
79127
+ readonly type: "uint256";
79128
+ }, {
79129
+ readonly internalType: "address";
79130
+ readonly name: "receiver_";
79131
+ readonly type: "address";
79132
+ }, {
79133
+ readonly internalType: "address";
79134
+ readonly name: "owner_";
79135
+ readonly type: "address";
79136
+ }, {
79137
+ readonly internalType: "uint256";
79138
+ readonly name: "minAmountOut_";
79139
+ readonly type: "uint256";
79140
+ }];
79141
+ readonly name: "redeem";
79142
+ readonly outputs: readonly [{
79143
+ readonly internalType: "uint256";
79144
+ readonly name: "assets_";
79145
+ readonly type: "uint256";
79146
+ }];
79147
+ readonly stateMutability: "nonpayable";
79148
+ readonly type: "function";
79149
+ }, {
79150
+ readonly inputs: readonly [{
79151
+ readonly internalType: "uint256";
79152
+ readonly name: "shares_";
79153
+ readonly type: "uint256";
79154
+ }, {
79155
+ readonly internalType: "address";
79156
+ readonly name: "receiver_";
79157
+ readonly type: "address";
79158
+ }, {
79159
+ readonly internalType: "address";
79160
+ readonly name: "owner_";
79161
+ readonly type: "address";
79162
+ }];
79163
+ readonly name: "redeem";
79164
+ readonly outputs: readonly [{
79165
+ readonly internalType: "uint256";
79166
+ readonly name: "assets_";
79167
+ readonly type: "uint256";
79168
+ }];
79169
+ readonly stateMutability: "nonpayable";
79170
+ readonly type: "function";
79171
+ }, {
79172
+ readonly inputs: readonly [{
79173
+ readonly internalType: "uint256";
79174
+ readonly name: "shares_";
79175
+ readonly type: "uint256";
79176
+ }, {
79177
+ readonly internalType: "address";
79178
+ readonly name: "receiver_";
79179
+ readonly type: "address";
79180
+ }, {
79181
+ readonly internalType: "address";
79182
+ readonly name: "owner_";
79183
+ readonly type: "address";
79184
+ }, {
79185
+ readonly internalType: "uint256";
79186
+ readonly name: "minAmountOut_";
79187
+ readonly type: "uint256";
79188
+ }, {
79189
+ readonly internalType: "uint256";
79190
+ readonly name: "deadline_";
79191
+ readonly type: "uint256";
79192
+ }, {
79193
+ readonly internalType: "bytes";
79194
+ readonly name: "signature_";
79195
+ readonly type: "bytes";
79196
+ }];
79197
+ readonly name: "redeemWithSignature";
79198
+ readonly outputs: readonly [{
79199
+ readonly internalType: "uint256";
79200
+ readonly name: "assets_";
79201
+ readonly type: "uint256";
79202
+ }];
79203
+ readonly stateMutability: "nonpayable";
79204
+ readonly type: "function";
79205
+ }, {
79206
+ readonly inputs: readonly [{
79207
+ readonly internalType: "address";
79208
+ readonly name: "token_";
79209
+ readonly type: "address";
79210
+ }];
79211
+ readonly name: "rescueFunds";
79212
+ readonly outputs: readonly [];
79213
+ readonly stateMutability: "nonpayable";
79214
+ readonly type: "function";
79215
+ }, {
79216
+ readonly inputs: readonly [];
79217
+ readonly name: "symbol";
79218
+ readonly outputs: readonly [{
79219
+ readonly internalType: "string";
79220
+ readonly name: "";
79221
+ readonly type: "string";
79222
+ }];
79223
+ readonly stateMutability: "view";
79224
+ readonly type: "function";
79225
+ }, {
79226
+ readonly inputs: readonly [];
79227
+ readonly name: "totalAssets";
79228
+ readonly outputs: readonly [{
79229
+ readonly internalType: "uint256";
79230
+ readonly name: "";
79231
+ readonly type: "uint256";
79232
+ }];
79233
+ readonly stateMutability: "view";
79234
+ readonly type: "function";
79235
+ }, {
79236
+ readonly inputs: readonly [];
79237
+ readonly name: "totalSupply";
79238
+ readonly outputs: readonly [{
79239
+ readonly internalType: "uint256";
79240
+ readonly name: "";
79241
+ readonly type: "uint256";
79242
+ }];
79243
+ readonly stateMutability: "view";
79244
+ readonly type: "function";
79245
+ }, {
79246
+ readonly inputs: readonly [{
79247
+ readonly internalType: "address";
79248
+ readonly name: "to";
79249
+ readonly type: "address";
79250
+ }, {
79251
+ readonly internalType: "uint256";
79252
+ readonly name: "amount";
79253
+ readonly type: "uint256";
79254
+ }];
79255
+ readonly name: "transfer";
79256
+ readonly outputs: readonly [{
79257
+ readonly internalType: "bool";
79258
+ readonly name: "";
79259
+ readonly type: "bool";
79260
+ }];
79261
+ readonly stateMutability: "nonpayable";
79262
+ readonly type: "function";
79263
+ }, {
79264
+ readonly inputs: readonly [{
79265
+ readonly internalType: "address";
79266
+ readonly name: "from";
79267
+ readonly type: "address";
79268
+ }, {
79269
+ readonly internalType: "address";
79270
+ readonly name: "to";
79271
+ readonly type: "address";
79272
+ }, {
79273
+ readonly internalType: "uint256";
79274
+ readonly name: "amount";
79275
+ readonly type: "uint256";
79276
+ }];
79277
+ readonly name: "transferFrom";
79278
+ readonly outputs: readonly [{
79279
+ readonly internalType: "bool";
79280
+ readonly name: "";
79281
+ readonly type: "bool";
79282
+ }];
79283
+ readonly stateMutability: "nonpayable";
79284
+ readonly type: "function";
79285
+ }, {
79286
+ readonly inputs: readonly [];
79287
+ readonly name: "updateRates";
79288
+ readonly outputs: readonly [{
79289
+ readonly internalType: "uint256";
79290
+ readonly name: "tokenExchangePrice_";
79291
+ readonly type: "uint256";
79292
+ }, {
79293
+ readonly internalType: "uint256";
79294
+ readonly name: "liquidityExchangePrice_";
79295
+ readonly type: "uint256";
79296
+ }];
79297
+ readonly stateMutability: "nonpayable";
79298
+ readonly type: "function";
79299
+ }, {
79300
+ readonly inputs: readonly [{
79301
+ readonly internalType: "address";
79302
+ readonly name: "newRebalancer_";
79303
+ readonly type: "address";
79304
+ }];
79305
+ readonly name: "updateRebalancer";
79306
+ readonly outputs: readonly [];
79307
+ readonly stateMutability: "nonpayable";
79308
+ readonly type: "function";
79309
+ }, {
79310
+ readonly inputs: readonly [{
79311
+ readonly internalType: "contract IFluidLendingRewardsRateModel";
79312
+ readonly name: "rewardsRateModel_";
79313
+ readonly type: "address";
79314
+ }];
79315
+ readonly name: "updateRewards";
79316
+ readonly outputs: readonly [];
79317
+ readonly stateMutability: "nonpayable";
79318
+ readonly type: "function";
79319
+ }, {
79320
+ readonly inputs: readonly [{
79321
+ readonly internalType: "uint256";
79322
+ readonly name: "assets_";
79323
+ readonly type: "uint256";
79324
+ }, {
79325
+ readonly internalType: "address";
79326
+ readonly name: "receiver_";
79327
+ readonly type: "address";
79328
+ }, {
79329
+ readonly internalType: "address";
79330
+ readonly name: "owner_";
79331
+ readonly type: "address";
79332
+ }, {
79333
+ readonly internalType: "uint256";
79334
+ readonly name: "maxSharesBurn_";
79335
+ readonly type: "uint256";
79336
+ }];
79337
+ readonly name: "withdraw";
79338
+ readonly outputs: readonly [{
79339
+ readonly internalType: "uint256";
79340
+ readonly name: "shares_";
79341
+ readonly type: "uint256";
79342
+ }];
79343
+ readonly stateMutability: "nonpayable";
79344
+ readonly type: "function";
79345
+ }, {
79346
+ readonly inputs: readonly [{
79347
+ readonly internalType: "uint256";
79348
+ readonly name: "assets_";
79349
+ readonly type: "uint256";
79350
+ }, {
79351
+ readonly internalType: "address";
79352
+ readonly name: "receiver_";
79353
+ readonly type: "address";
79354
+ }, {
79355
+ readonly internalType: "address";
79356
+ readonly name: "owner_";
79357
+ readonly type: "address";
79358
+ }];
79359
+ readonly name: "withdraw";
79360
+ readonly outputs: readonly [{
79361
+ readonly internalType: "uint256";
79362
+ readonly name: "shares_";
79363
+ readonly type: "uint256";
79364
+ }];
79365
+ readonly stateMutability: "nonpayable";
79366
+ readonly type: "function";
79367
+ }, {
79368
+ readonly inputs: readonly [{
79369
+ readonly internalType: "uint256";
79370
+ readonly name: "sharesToPermit_";
79371
+ readonly type: "uint256";
79372
+ }, {
79373
+ readonly internalType: "uint256";
79374
+ readonly name: "assets_";
79375
+ readonly type: "uint256";
79376
+ }, {
79377
+ readonly internalType: "address";
79378
+ readonly name: "receiver_";
79379
+ readonly type: "address";
79380
+ }, {
79381
+ readonly internalType: "address";
79382
+ readonly name: "owner_";
79383
+ readonly type: "address";
79384
+ }, {
79385
+ readonly internalType: "uint256";
79386
+ readonly name: "maxSharesBurn_";
79387
+ readonly type: "uint256";
79388
+ }, {
79389
+ readonly internalType: "uint256";
79390
+ readonly name: "deadline_";
79391
+ readonly type: "uint256";
79392
+ }, {
79393
+ readonly internalType: "bytes";
79394
+ readonly name: "signature_";
79395
+ readonly type: "bytes";
79396
+ }];
79397
+ readonly name: "withdrawWithSignature";
79398
+ readonly outputs: readonly [{
79399
+ readonly internalType: "uint256";
79400
+ readonly name: "shares_";
79401
+ readonly type: "uint256";
79402
+ }];
79403
+ readonly stateMutability: "nonpayable";
79404
+ readonly type: "function";
79405
+ }];
79406
+ readonly networks: {};
79407
+ };
79408
+ export declare const AaveUmbrellaView: {
79409
+ readonly abi: readonly [{
79410
+ readonly inputs: readonly [{
79411
+ readonly internalType: "contract IUmbrella";
79412
+ readonly name: "umbrella";
79413
+ readonly type: "address";
79414
+ }, {
79415
+ readonly internalType: "contract IAaveOracle";
79416
+ readonly name: "aaveOracle";
79417
+ readonly type: "address";
79418
+ }];
79419
+ readonly name: "getTokensAggregatedData";
79420
+ readonly outputs: readonly [{
79421
+ readonly components: readonly [{
79422
+ readonly components: readonly [{
79423
+ readonly internalType: "address";
79424
+ readonly name: "token";
79425
+ readonly type: "address";
79426
+ }, {
79427
+ readonly internalType: "uint256";
79428
+ readonly name: "price";
79429
+ readonly type: "uint256";
79430
+ }, {
79431
+ readonly internalType: "string";
79432
+ readonly name: "name";
79433
+ readonly type: "string";
79434
+ }, {
79435
+ readonly internalType: "string";
79436
+ readonly name: "symbol";
79437
+ readonly type: "string";
79438
+ }, {
79439
+ readonly internalType: "uint8";
79440
+ readonly name: "decimals";
79441
+ readonly type: "uint8";
79442
+ }];
79443
+ readonly internalType: "struct DataAggregationHelper.TokenData";
79444
+ readonly name: "stakeTokenData";
79445
+ readonly type: "tuple";
79446
+ }, {
79447
+ readonly internalType: "uint256";
79448
+ readonly name: "totalAssets";
79449
+ readonly type: "uint256";
79450
+ }, {
79451
+ readonly internalType: "uint256";
79452
+ readonly name: "targetLiquidity";
79453
+ readonly type: "uint256";
79454
+ }, {
79455
+ readonly internalType: "bool";
79456
+ readonly name: "isStakeConfigured";
79457
+ readonly type: "bool";
79458
+ }, {
79459
+ readonly components: readonly [{
79460
+ readonly components: readonly [{
79461
+ readonly internalType: "address";
79462
+ readonly name: "token";
79463
+ readonly type: "address";
79464
+ }, {
79465
+ readonly internalType: "uint256";
79466
+ readonly name: "price";
79467
+ readonly type: "uint256";
79468
+ }, {
79469
+ readonly internalType: "string";
79470
+ readonly name: "name";
79471
+ readonly type: "string";
79472
+ }, {
79473
+ readonly internalType: "string";
79474
+ readonly name: "symbol";
79475
+ readonly type: "string";
79476
+ }, {
79477
+ readonly internalType: "uint8";
79478
+ readonly name: "decimals";
79479
+ readonly type: "uint8";
79480
+ }];
79481
+ readonly internalType: "struct DataAggregationHelper.TokenData";
79482
+ readonly name: "rewardTokenData";
79483
+ readonly type: "tuple";
79484
+ }, {
79485
+ readonly internalType: "uint256";
79486
+ readonly name: "maxEmissionPerSecond";
79487
+ readonly type: "uint256";
79488
+ }, {
79489
+ readonly internalType: "uint256";
79490
+ readonly name: "distributionEnd";
79491
+ readonly type: "uint256";
79492
+ }];
79493
+ readonly internalType: "struct DataAggregationHelper.RewardTokenData[]";
79494
+ readonly name: "rewardsTokenData";
79495
+ readonly type: "tuple[]";
79496
+ }];
79497
+ readonly internalType: "struct DataAggregationHelper.StakeTokenData[]";
79498
+ readonly name: "";
79499
+ readonly type: "tuple[]";
79500
+ }];
79501
+ readonly stateMutability: "view";
79502
+ readonly type: "function";
79503
+ }, {
79504
+ readonly inputs: readonly [{
79505
+ readonly internalType: "contract IUmbrella";
79506
+ readonly name: "umbrella";
79507
+ readonly type: "address";
79508
+ }, {
79509
+ readonly internalType: "address";
79510
+ readonly name: "user";
79511
+ readonly type: "address";
79512
+ }];
79513
+ readonly name: "getUserAggregatedData";
79514
+ readonly outputs: readonly [{
79515
+ readonly components: readonly [{
79516
+ readonly internalType: "address";
79517
+ readonly name: "stakeToken";
79518
+ readonly type: "address";
79519
+ }, {
79520
+ readonly internalType: "uint256";
79521
+ readonly name: "stakeUserBalance";
79522
+ readonly type: "uint256";
79523
+ }, {
79524
+ readonly components: readonly [{
79525
+ readonly internalType: "address";
79526
+ readonly name: "reward";
79527
+ readonly type: "address";
79528
+ }, {
79529
+ readonly internalType: "uint256";
79530
+ readonly name: "currentReward";
79531
+ readonly type: "uint256";
79532
+ }];
79533
+ readonly internalType: "struct DataAggregationHelper.RewardTokenUserData[]";
79534
+ readonly name: "rewardsTokenUserData";
79535
+ readonly type: "tuple[]";
79536
+ }];
79537
+ readonly internalType: "struct DataAggregationHelper.StakeTokenUserData[]";
79538
+ readonly name: "";
79539
+ readonly type: "tuple[]";
79540
+ }];
79541
+ readonly stateMutability: "view";
79542
+ readonly type: "function";
79543
+ }];
79544
+ readonly networks: {
79545
+ readonly "1": {
79546
+ readonly address: "0xcc8FD820B1b9C5EBACA8615927f2fFc1f74B9dB3";
79547
+ };
79548
+ };
79549
+ };
79550
+ export declare const LiquityLQTYStaking: {
79551
+ abi: {
79552
+ inputs: {
79553
+ internalType: string;
79554
+ name: string;
79555
+ type: string;
79556
+ }[];
79557
+ name: string;
79558
+ outputs: {
79559
+ internalType: string;
79560
+ name: string;
79561
+ type: string;
79562
+ }[];
79563
+ stateMutability: string;
79564
+ type: string;
79565
+ }[];
79566
+ networks: {
79567
+ "1": {
79568
+ address: string;
79569
+ };
79570
+ };
79571
+ };
79572
+ export declare const LiquityStabilityPool: {
79573
+ abi: {
79574
+ inputs: {
79575
+ internalType: string;
79576
+ name: string;
79577
+ type: string;
79578
+ }[];
79579
+ name: string;
79580
+ outputs: {
79581
+ internalType: string;
79582
+ name: string;
79583
+ type: string;
79584
+ }[];
79585
+ stateMutability: string;
79586
+ type: string;
79587
+ }[];
79588
+ networks: {
79589
+ "1": {
79590
+ address: string;
79591
+ };
79592
+ };
79593
+ };
79594
+ export declare const UUPS: {
79595
+ readonly abi: readonly [{
79596
+ readonly inputs: readonly [{
79597
+ readonly internalType: "address";
79598
+ readonly name: "";
79599
+ readonly type: "address";
79600
+ }];
79601
+ readonly name: "cumulativeClaimed";
79602
+ readonly outputs: readonly [{
79603
+ readonly internalType: "uint256";
79604
+ readonly name: "";
79605
+ readonly type: "uint256";
79606
+ }];
79607
+ readonly stateMutability: "view";
79608
+ readonly type: "function";
79609
+ }];
79610
+ readonly networks: {
79611
+ readonly "1": {
79612
+ readonly address: "0x6Db24Ee656843E3fE03eb8762a54D86186bA6B64";
79613
+ };
79614
+ };
79615
+ };
79616
+ export declare const SparkAirdrop: {
79617
+ readonly abi: readonly [{
79618
+ readonly inputs: readonly [{
79619
+ readonly internalType: "address";
79620
+ readonly name: "admin";
79621
+ readonly type: "address";
79622
+ }];
79623
+ readonly stateMutability: "nonpayable";
79624
+ readonly type: "constructor";
79625
+ }, {
79626
+ readonly inputs: readonly [];
79627
+ readonly name: "AccessControlBadConfirmation";
79628
+ readonly type: "error";
79629
+ }, {
79630
+ readonly inputs: readonly [{
79631
+ readonly internalType: "address";
79632
+ readonly name: "account";
79633
+ readonly type: "address";
79634
+ }, {
79635
+ readonly internalType: "bytes32";
79636
+ readonly name: "neededRole";
79637
+ readonly type: "bytes32";
79638
+ }];
79639
+ readonly name: "AccessControlUnauthorizedAccount";
79640
+ readonly type: "error";
79641
+ }, {
79642
+ readonly inputs: readonly [{
79643
+ readonly internalType: "address";
79644
+ readonly name: "token";
79645
+ readonly type: "address";
79646
+ }];
79647
+ readonly name: "SafeERC20FailedOperation";
79648
+ readonly type: "error";
79649
+ }, {
79650
+ readonly anonymous: false;
79651
+ readonly inputs: readonly [{
79652
+ readonly indexed: true;
79653
+ readonly internalType: "uint256";
79654
+ readonly name: "epoch";
79655
+ readonly type: "uint256";
79656
+ }, {
79657
+ readonly indexed: true;
79658
+ readonly internalType: "address";
79659
+ readonly name: "account";
79660
+ readonly type: "address";
79661
+ }, {
79662
+ readonly indexed: true;
79663
+ readonly internalType: "address";
79664
+ readonly name: "token";
79665
+ readonly type: "address";
79666
+ }, {
79667
+ readonly indexed: false;
79668
+ readonly internalType: "uint256";
79669
+ readonly name: "amount";
79670
+ readonly type: "uint256";
79671
+ }];
79672
+ readonly name: "Claimed";
79673
+ readonly type: "event";
79674
+ }, {
79675
+ readonly anonymous: false;
79676
+ readonly inputs: readonly [{
79677
+ readonly indexed: true;
79678
+ readonly internalType: "uint256";
79679
+ readonly name: "epoch";
79680
+ readonly type: "uint256";
79681
+ }, {
79682
+ readonly indexed: false;
79683
+ readonly internalType: "bool";
79684
+ readonly name: "isClosed";
79685
+ readonly type: "bool";
79686
+ }];
79687
+ readonly name: "EpochIsClosed";
79688
+ readonly type: "event";
79689
+ }, {
79690
+ readonly anonymous: false;
79691
+ readonly inputs: readonly [{
79692
+ readonly indexed: false;
79693
+ readonly internalType: "bytes32";
79694
+ readonly name: "oldMerkleRoot";
79695
+ readonly type: "bytes32";
79696
+ }, {
79697
+ readonly indexed: false;
79698
+ readonly internalType: "bytes32";
79699
+ readonly name: "newMerkleRoot";
79700
+ readonly type: "bytes32";
79701
+ }];
79702
+ readonly name: "MerkleRootUpdated";
79703
+ readonly type: "event";
79704
+ }, {
79705
+ readonly anonymous: false;
79706
+ readonly inputs: readonly [{
79707
+ readonly indexed: true;
79708
+ readonly internalType: "bytes32";
79709
+ readonly name: "role";
79710
+ readonly type: "bytes32";
79711
+ }, {
79712
+ readonly indexed: true;
79713
+ readonly internalType: "bytes32";
79714
+ readonly name: "previousAdminRole";
79715
+ readonly type: "bytes32";
79716
+ }, {
79717
+ readonly indexed: true;
79718
+ readonly internalType: "bytes32";
79719
+ readonly name: "newAdminRole";
79720
+ readonly type: "bytes32";
79721
+ }];
79722
+ readonly name: "RoleAdminChanged";
79723
+ readonly type: "event";
79724
+ }, {
79725
+ readonly anonymous: false;
79726
+ readonly inputs: readonly [{
79727
+ readonly indexed: true;
79728
+ readonly internalType: "bytes32";
79729
+ readonly name: "role";
79730
+ readonly type: "bytes32";
79731
+ }, {
79732
+ readonly indexed: true;
79733
+ readonly internalType: "address";
79734
+ readonly name: "account";
79735
+ readonly type: "address";
79736
+ }, {
79737
+ readonly indexed: true;
79738
+ readonly internalType: "address";
79739
+ readonly name: "sender";
79740
+ readonly type: "address";
79741
+ }];
79742
+ readonly name: "RoleGranted";
79743
+ readonly type: "event";
79744
+ }, {
79745
+ readonly anonymous: false;
79746
+ readonly inputs: readonly [{
79747
+ readonly indexed: true;
79748
+ readonly internalType: "bytes32";
79749
+ readonly name: "role";
79750
+ readonly type: "bytes32";
79751
+ }, {
79752
+ readonly indexed: true;
79753
+ readonly internalType: "address";
79754
+ readonly name: "account";
79755
+ readonly type: "address";
79756
+ }, {
79757
+ readonly indexed: true;
79758
+ readonly internalType: "address";
79759
+ readonly name: "sender";
79760
+ readonly type: "address";
79761
+ }];
79762
+ readonly name: "RoleRevoked";
79763
+ readonly type: "event";
79764
+ }, {
79765
+ readonly anonymous: false;
79766
+ readonly inputs: readonly [{
79767
+ readonly indexed: true;
79768
+ readonly internalType: "address";
79769
+ readonly name: "oldWallet";
79770
+ readonly type: "address";
79771
+ }, {
79772
+ readonly indexed: true;
79773
+ readonly internalType: "address";
79774
+ readonly name: "newWallet";
79775
+ readonly type: "address";
79776
+ }];
79777
+ readonly name: "WalletUpdated";
79778
+ readonly type: "event";
79779
+ }, {
79780
+ readonly inputs: readonly [];
79781
+ readonly name: "DEFAULT_ADMIN_ROLE";
79782
+ readonly outputs: readonly [{
79783
+ readonly internalType: "bytes32";
79784
+ readonly name: "";
79785
+ readonly type: "bytes32";
79786
+ }];
79787
+ readonly stateMutability: "view";
79788
+ readonly type: "function";
79789
+ }, {
79790
+ readonly inputs: readonly [];
79791
+ readonly name: "EPOCH_ROLE";
79792
+ readonly outputs: readonly [{
79793
+ readonly internalType: "bytes32";
79794
+ readonly name: "";
79795
+ readonly type: "bytes32";
79796
+ }];
79797
+ readonly stateMutability: "view";
79798
+ readonly type: "function";
79799
+ }, {
79800
+ readonly inputs: readonly [];
79801
+ readonly name: "MERKLE_ROOT_ROLE";
79802
+ readonly outputs: readonly [{
79803
+ readonly internalType: "bytes32";
79804
+ readonly name: "";
79805
+ readonly type: "bytes32";
79806
+ }];
79807
+ readonly stateMutability: "view";
79808
+ readonly type: "function";
79809
+ }, {
79810
+ readonly inputs: readonly [{
79811
+ readonly internalType: "uint256";
79812
+ readonly name: "epoch";
79813
+ readonly type: "uint256";
79814
+ }, {
79815
+ readonly internalType: "address";
79816
+ readonly name: "account";
79817
+ readonly type: "address";
79818
+ }, {
79819
+ readonly internalType: "address";
79820
+ readonly name: "token";
79821
+ readonly type: "address";
79822
+ }, {
79823
+ readonly internalType: "uint256";
79824
+ readonly name: "cumulativeAmount";
79825
+ readonly type: "uint256";
79826
+ }, {
79827
+ readonly internalType: "bytes32";
79828
+ readonly name: "expectedMerkleRoot";
79829
+ readonly type: "bytes32";
79830
+ }, {
79831
+ readonly internalType: "bytes32[]";
79832
+ readonly name: "merkleProof";
79833
+ readonly type: "bytes32[]";
79834
+ }];
79835
+ readonly name: "claim";
79836
+ readonly outputs: readonly [{
79837
+ readonly internalType: "uint256";
79838
+ readonly name: "claimedAmount";
79839
+ readonly type: "uint256";
79840
+ }];
79841
+ readonly stateMutability: "nonpayable";
79842
+ readonly type: "function";
79843
+ }, {
79844
+ readonly inputs: readonly [{
79845
+ readonly internalType: "address";
79846
+ readonly name: "";
79847
+ readonly type: "address";
79848
+ }, {
79849
+ readonly internalType: "address";
79850
+ readonly name: "";
79851
+ readonly type: "address";
79852
+ }, {
79853
+ readonly internalType: "uint256";
79854
+ readonly name: "";
79855
+ readonly type: "uint256";
79856
+ }];
79857
+ readonly name: "cumulativeClaimed";
79858
+ readonly outputs: readonly [{
79859
+ readonly internalType: "uint256";
79860
+ readonly name: "";
79861
+ readonly type: "uint256";
79862
+ }];
79863
+ readonly stateMutability: "view";
79864
+ readonly type: "function";
79865
+ }, {
79866
+ readonly inputs: readonly [{
79867
+ readonly internalType: "uint256";
79868
+ readonly name: "";
79869
+ readonly type: "uint256";
79870
+ }];
79871
+ readonly name: "epochClosed";
79872
+ readonly outputs: readonly [{
79873
+ readonly internalType: "bool";
79874
+ readonly name: "";
79875
+ readonly type: "bool";
79876
+ }];
79877
+ readonly stateMutability: "view";
79878
+ readonly type: "function";
79879
+ }, {
79880
+ readonly inputs: readonly [{
79881
+ readonly internalType: "bytes32";
79882
+ readonly name: "role";
79883
+ readonly type: "bytes32";
79884
+ }];
79885
+ readonly name: "getRoleAdmin";
79886
+ readonly outputs: readonly [{
79887
+ readonly internalType: "bytes32";
79888
+ readonly name: "";
79889
+ readonly type: "bytes32";
79890
+ }];
79891
+ readonly stateMutability: "view";
79892
+ readonly type: "function";
79893
+ }, {
79894
+ readonly inputs: readonly [{
79895
+ readonly internalType: "bytes32";
79896
+ readonly name: "role";
79897
+ readonly type: "bytes32";
79898
+ }, {
79899
+ readonly internalType: "address";
79900
+ readonly name: "account";
79901
+ readonly type: "address";
79902
+ }];
79903
+ readonly name: "grantRole";
79904
+ readonly outputs: readonly [];
79905
+ readonly stateMutability: "nonpayable";
79906
+ readonly type: "function";
79907
+ }, {
79908
+ readonly inputs: readonly [{
79909
+ readonly internalType: "bytes32";
79910
+ readonly name: "role";
79911
+ readonly type: "bytes32";
79912
+ }, {
79913
+ readonly internalType: "address";
79914
+ readonly name: "account";
79915
+ readonly type: "address";
79916
+ }];
79917
+ readonly name: "hasRole";
79918
+ readonly outputs: readonly [{
79919
+ readonly internalType: "bool";
79920
+ readonly name: "";
79921
+ readonly type: "bool";
79922
+ }];
79923
+ readonly stateMutability: "view";
79924
+ readonly type: "function";
79925
+ }, {
79926
+ readonly inputs: readonly [];
79927
+ readonly name: "merkleRoot";
79928
+ readonly outputs: readonly [{
79929
+ readonly internalType: "bytes32";
79930
+ readonly name: "";
79931
+ readonly type: "bytes32";
79932
+ }];
79933
+ readonly stateMutability: "view";
79934
+ readonly type: "function";
79935
+ }, {
79936
+ readonly inputs: readonly [{
79937
+ readonly internalType: "bytes32";
79938
+ readonly name: "role";
79939
+ readonly type: "bytes32";
79940
+ }, {
79941
+ readonly internalType: "address";
79942
+ readonly name: "callerConfirmation";
79943
+ readonly type: "address";
79944
+ }];
79945
+ readonly name: "renounceRole";
79946
+ readonly outputs: readonly [];
79947
+ readonly stateMutability: "nonpayable";
79948
+ readonly type: "function";
79949
+ }, {
79950
+ readonly inputs: readonly [{
79951
+ readonly internalType: "bytes32";
79952
+ readonly name: "role";
79953
+ readonly type: "bytes32";
79954
+ }, {
79955
+ readonly internalType: "address";
79956
+ readonly name: "account";
79957
+ readonly type: "address";
79958
+ }];
79959
+ readonly name: "revokeRole";
79960
+ readonly outputs: readonly [];
79961
+ readonly stateMutability: "nonpayable";
79962
+ readonly type: "function";
79963
+ }, {
79964
+ readonly inputs: readonly [{
79965
+ readonly internalType: "uint256";
79966
+ readonly name: "epoch";
79967
+ readonly type: "uint256";
79968
+ }, {
79969
+ readonly internalType: "bool";
79970
+ readonly name: "isClosed";
79971
+ readonly type: "bool";
79972
+ }];
79973
+ readonly name: "setEpochClosed";
79974
+ readonly outputs: readonly [];
79975
+ readonly stateMutability: "nonpayable";
79976
+ readonly type: "function";
79977
+ }, {
79978
+ readonly inputs: readonly [{
79979
+ readonly internalType: "bytes32";
79980
+ readonly name: "merkleRoot_";
79981
+ readonly type: "bytes32";
79982
+ }];
79983
+ readonly name: "setMerkleRoot";
79984
+ readonly outputs: readonly [];
79985
+ readonly stateMutability: "nonpayable";
79986
+ readonly type: "function";
79987
+ }, {
79988
+ readonly inputs: readonly [{
79989
+ readonly internalType: "address";
79990
+ readonly name: "wallet_";
79991
+ readonly type: "address";
79992
+ }];
79993
+ readonly name: "setWallet";
79994
+ readonly outputs: readonly [];
79995
+ readonly stateMutability: "nonpayable";
79996
+ readonly type: "function";
79997
+ }, {
79998
+ readonly inputs: readonly [{
79999
+ readonly internalType: "bytes4";
80000
+ readonly name: "interfaceId";
80001
+ readonly type: "bytes4";
80002
+ }];
80003
+ readonly name: "supportsInterface";
80004
+ readonly outputs: readonly [{
80005
+ readonly internalType: "bool";
80006
+ readonly name: "";
80007
+ readonly type: "bool";
80008
+ }];
80009
+ readonly stateMutability: "view";
80010
+ readonly type: "function";
80011
+ }, {
80012
+ readonly inputs: readonly [];
80013
+ readonly name: "wallet";
80014
+ readonly outputs: readonly [{
80015
+ readonly internalType: "address";
80016
+ readonly name: "";
80017
+ readonly type: "address";
80018
+ }];
80019
+ readonly stateMutability: "view";
80020
+ readonly type: "function";
80021
+ }];
80022
+ readonly networks: {};
80023
+ };
80024
+ export declare const SparkRewardsController: {
80025
+ readonly abi: readonly [{
80026
+ readonly inputs: readonly [{
80027
+ readonly internalType: "address[]";
80028
+ readonly name: "assets";
80029
+ readonly type: "address[]";
80030
+ }, {
80031
+ readonly internalType: "address";
80032
+ readonly name: "user";
80033
+ readonly type: "address";
80034
+ }];
80035
+ readonly name: "getAllUserRewards";
80036
+ readonly outputs: readonly [{
80037
+ readonly internalType: "address[]";
80038
+ readonly name: "rewardsList";
80039
+ readonly type: "address[]";
80040
+ }, {
80041
+ readonly internalType: "uint256[]";
80042
+ readonly name: "unclaimedAmounts";
80043
+ readonly type: "uint256[]";
80044
+ }];
80045
+ readonly stateMutability: "view";
80046
+ readonly type: "function";
80047
+ }];
80048
+ readonly networks: {
80049
+ readonly "1": {
80050
+ readonly address: "0x4370D3b6C9588E02ce9D22e684387859c7Ff5b34";
80051
+ };
80052
+ };
80053
+ };
80054
+ export declare const MorphoDistributor: {
80055
+ readonly abi: readonly [{
80056
+ readonly inputs: readonly [{
80057
+ readonly internalType: "address";
80058
+ readonly name: "initialOwner";
80059
+ readonly type: "address";
80060
+ }, {
80061
+ readonly internalType: "uint256";
80062
+ readonly name: "initialTimelock";
80063
+ readonly type: "uint256";
80064
+ }, {
80065
+ readonly internalType: "bytes32";
80066
+ readonly name: "initialRoot";
80067
+ readonly type: "bytes32";
80068
+ }, {
80069
+ readonly internalType: "bytes32";
80070
+ readonly name: "initialIpfsHash";
80071
+ readonly type: "bytes32";
80072
+ }];
80073
+ readonly stateMutability: "nonpayable";
80074
+ readonly type: "constructor";
80075
+ }, {
80076
+ readonly inputs: readonly [];
80077
+ readonly name: "acceptRoot";
80078
+ readonly outputs: readonly [];
80079
+ readonly stateMutability: "nonpayable";
80080
+ readonly type: "function";
80081
+ }, {
80082
+ readonly inputs: readonly [{
80083
+ readonly internalType: "address";
80084
+ readonly name: "account";
80085
+ readonly type: "address";
80086
+ }, {
80087
+ readonly internalType: "address";
80088
+ readonly name: "reward";
80089
+ readonly type: "address";
80090
+ }, {
80091
+ readonly internalType: "uint256";
80092
+ readonly name: "claimable";
80093
+ readonly type: "uint256";
80094
+ }, {
80095
+ readonly internalType: "bytes32[]";
80096
+ readonly name: "proof";
80097
+ readonly type: "bytes32[]";
80098
+ }];
80099
+ readonly name: "claim";
80100
+ readonly outputs: readonly [{
80101
+ readonly internalType: "uint256";
80102
+ readonly name: "amount";
80103
+ readonly type: "uint256";
80104
+ }];
80105
+ readonly stateMutability: "nonpayable";
80106
+ readonly type: "function";
80107
+ }, {
80108
+ readonly inputs: readonly [{
80109
+ readonly internalType: "address";
80110
+ readonly name: "account";
80111
+ readonly type: "address";
80112
+ }, {
80113
+ readonly internalType: "address";
80114
+ readonly name: "reward";
80115
+ readonly type: "address";
80116
+ }];
80117
+ readonly name: "claimed";
80118
+ readonly outputs: readonly [{
80119
+ readonly internalType: "uint256";
80120
+ readonly name: "amount";
80121
+ readonly type: "uint256";
80122
+ }];
80123
+ readonly stateMutability: "view";
80124
+ readonly type: "function";
80125
+ }, {
80126
+ readonly inputs: readonly [];
80127
+ readonly name: "ipfsHash";
80128
+ readonly outputs: readonly [{
80129
+ readonly internalType: "bytes32";
80130
+ readonly name: "";
80131
+ readonly type: "bytes32";
80132
+ }];
80133
+ readonly stateMutability: "view";
80134
+ readonly type: "function";
80135
+ }, {
80136
+ readonly inputs: readonly [{
80137
+ readonly internalType: "address";
80138
+ readonly name: "";
80139
+ readonly type: "address";
80140
+ }];
80141
+ readonly name: "isUpdater";
80142
+ readonly outputs: readonly [{
80143
+ readonly internalType: "bool";
80144
+ readonly name: "";
80145
+ readonly type: "bool";
80146
+ }];
80147
+ readonly stateMutability: "view";
80148
+ readonly type: "function";
80149
+ }, {
80150
+ readonly inputs: readonly [];
80151
+ readonly name: "owner";
80152
+ readonly outputs: readonly [{
80153
+ readonly internalType: "address";
80154
+ readonly name: "";
80155
+ readonly type: "address";
80156
+ }];
80157
+ readonly stateMutability: "view";
80158
+ readonly type: "function";
80159
+ }, {
80160
+ readonly inputs: readonly [];
80161
+ readonly name: "pendingRoot";
80162
+ readonly outputs: readonly [{
80163
+ readonly internalType: "bytes32";
80164
+ readonly name: "root";
80165
+ readonly type: "bytes32";
80166
+ }, {
80167
+ readonly internalType: "bytes32";
80168
+ readonly name: "ipfsHash";
80169
+ readonly type: "bytes32";
80170
+ }, {
80171
+ readonly internalType: "uint256";
80172
+ readonly name: "validAt";
80173
+ readonly type: "uint256";
80174
+ }];
80175
+ readonly stateMutability: "view";
80176
+ readonly type: "function";
80177
+ }, {
80178
+ readonly inputs: readonly [];
80179
+ readonly name: "revokePendingRoot";
80180
+ readonly outputs: readonly [];
80181
+ readonly stateMutability: "nonpayable";
80182
+ readonly type: "function";
80183
+ }, {
80184
+ readonly inputs: readonly [];
80185
+ readonly name: "root";
80186
+ readonly outputs: readonly [{
80187
+ readonly internalType: "bytes32";
80188
+ readonly name: "";
80189
+ readonly type: "bytes32";
80190
+ }];
80191
+ readonly stateMutability: "view";
80192
+ readonly type: "function";
80193
+ }, {
80194
+ readonly inputs: readonly [{
80195
+ readonly internalType: "address";
80196
+ readonly name: "newOwner";
80197
+ readonly type: "address";
80198
+ }];
80199
+ readonly name: "setOwner";
80200
+ readonly outputs: readonly [];
80201
+ readonly stateMutability: "nonpayable";
80202
+ readonly type: "function";
80203
+ }, {
80204
+ readonly inputs: readonly [{
80205
+ readonly internalType: "bytes32";
80206
+ readonly name: "newRoot";
80207
+ readonly type: "bytes32";
80208
+ }, {
80209
+ readonly internalType: "bytes32";
80210
+ readonly name: "newIpfsHash";
80211
+ readonly type: "bytes32";
80212
+ }];
80213
+ readonly name: "setRoot";
80214
+ readonly outputs: readonly [];
80215
+ readonly stateMutability: "nonpayable";
80216
+ readonly type: "function";
80217
+ }, {
80218
+ readonly inputs: readonly [{
80219
+ readonly internalType: "address";
80220
+ readonly name: "updater";
80221
+ readonly type: "address";
80222
+ }, {
80223
+ readonly internalType: "bool";
80224
+ readonly name: "active";
80225
+ readonly type: "bool";
80226
+ }];
80227
+ readonly name: "setRootUpdater";
80228
+ readonly outputs: readonly [];
80229
+ readonly stateMutability: "nonpayable";
80230
+ readonly type: "function";
80231
+ }, {
80232
+ readonly inputs: readonly [{
80233
+ readonly internalType: "uint256";
80234
+ readonly name: "newTimelock";
80235
+ readonly type: "uint256";
80236
+ }];
80237
+ readonly name: "setTimelock";
80238
+ readonly outputs: readonly [];
80239
+ readonly stateMutability: "nonpayable";
80240
+ readonly type: "function";
80241
+ }, {
80242
+ readonly inputs: readonly [{
80243
+ readonly internalType: "bytes32";
80244
+ readonly name: "newRoot";
80245
+ readonly type: "bytes32";
80246
+ }, {
80247
+ readonly internalType: "bytes32";
80248
+ readonly name: "newIpfsHash";
80249
+ readonly type: "bytes32";
80250
+ }];
80251
+ readonly name: "submitRoot";
80252
+ readonly outputs: readonly [];
80253
+ readonly stateMutability: "nonpayable";
80254
+ readonly type: "function";
80255
+ }, {
80256
+ readonly inputs: readonly [];
80257
+ readonly name: "timelock";
80258
+ readonly outputs: readonly [{
80259
+ readonly internalType: "uint256";
80260
+ readonly name: "";
80261
+ readonly type: "uint256";
80262
+ }];
80263
+ readonly stateMutability: "view";
80264
+ readonly type: "function";
80265
+ }];
80266
+ readonly networks: {};
80267
+ };
80268
+ export declare const AaveRewardsController: {
80269
+ readonly abi: readonly [{
80270
+ readonly inputs: readonly [{
80271
+ readonly internalType: "address[]";
80272
+ readonly name: "assets";
80273
+ readonly type: "address[]";
80274
+ }, {
80275
+ readonly internalType: "address";
80276
+ readonly name: "user";
80277
+ readonly type: "address";
80278
+ }];
80279
+ readonly name: "getAllUserRewards";
80280
+ readonly outputs: readonly [{
80281
+ readonly internalType: "address[]";
80282
+ readonly name: "rewardsList";
80283
+ readonly type: "address[]";
80284
+ }, {
80285
+ readonly internalType: "uint256[]";
80286
+ readonly name: "unclaimedAmounts";
80287
+ readonly type: "uint256[]";
80288
+ }];
80289
+ readonly stateMutability: "view";
80290
+ readonly type: "function";
80291
+ }];
80292
+ readonly networks: {
80293
+ readonly "1": {
80294
+ readonly address: "0x8164Cc65827dcFe994AB23944CBC90e0aa80bFcb";
80295
+ };
80296
+ readonly "10": {
80297
+ readonly address: "0x929EC64c34a17401F460460D4B9390518E5B473e";
80298
+ };
80299
+ readonly "8453": {
80300
+ readonly address: "0xf9cc4F0D883F1a1eb2c253bdb46c254Ca51E1F44";
80301
+ };
80302
+ readonly "42161": {
80303
+ readonly address: "0x929EC64c34a17401F460460D4B9390518E5B473e";
80304
+ };
80305
+ };
80306
+ };
80307
+ export declare const LiquityV2ActivePool: {
80308
+ readonly abi: readonly [{
80309
+ readonly inputs: readonly [];
80310
+ readonly name: "aggWeightedDebtSum";
80311
+ readonly outputs: readonly [{
80312
+ readonly internalType: "uint256";
80313
+ readonly name: "";
80314
+ readonly type: "uint256";
80315
+ }];
80316
+ readonly stateMutability: "view";
80317
+ readonly type: "function";
80318
+ }, {
80319
+ readonly inputs: readonly [];
80320
+ readonly name: "lastAggUpdateTime";
80321
+ readonly outputs: readonly [{
80322
+ readonly internalType: "uint256";
80323
+ readonly name: "";
80324
+ readonly type: "uint256";
80325
+ }];
80326
+ readonly stateMutability: "view";
80327
+ readonly type: "function";
80328
+ }];
80329
+ readonly networks: {};
80330
+ };
80331
+ export declare const LiquityV2sBoldVault: {
80332
+ readonly abi: readonly [{
80333
+ readonly inputs: readonly [{
80334
+ readonly internalType: "uint256";
80335
+ readonly name: "assets";
80336
+ readonly type: "uint256";
80337
+ }];
80338
+ readonly name: "convertToShares";
80339
+ readonly outputs: readonly [{
80340
+ readonly internalType: "uint256";
80341
+ readonly name: "";
80342
+ readonly type: "uint256";
80343
+ }];
80344
+ readonly stateMutability: "view";
80345
+ readonly type: "function";
80346
+ }, {
80347
+ readonly inputs: readonly [{
80348
+ readonly internalType: "address";
80349
+ readonly name: "owner";
80350
+ readonly type: "address";
80351
+ }];
80352
+ readonly name: "maxWithdraw";
80353
+ readonly outputs: readonly [{
80354
+ readonly internalType: "uint256";
80355
+ readonly name: "";
80356
+ readonly type: "uint256";
80357
+ }];
80358
+ readonly stateMutability: "view";
80359
+ readonly type: "function";
80360
+ }, {
80361
+ readonly inputs: readonly [{
80362
+ readonly internalType: "uint256";
80363
+ readonly name: "";
80364
+ readonly type: "uint256";
80365
+ }];
80366
+ readonly name: "sps";
80367
+ readonly outputs: readonly [{
80368
+ readonly internalType: "address";
80369
+ readonly name: "sp";
80370
+ readonly type: "address";
80371
+ }, {
80372
+ readonly internalType: "uint96";
80373
+ readonly name: "weight";
80374
+ readonly type: "uint96";
80375
+ }, {
80376
+ readonly internalType: "address";
80377
+ readonly name: "coll";
80378
+ readonly type: "address";
80379
+ }];
80380
+ readonly stateMutability: "view";
80381
+ readonly type: "function";
80382
+ }, {
80383
+ readonly inputs: readonly [];
80384
+ readonly name: "totalAssets";
80385
+ readonly outputs: readonly [{
80386
+ readonly internalType: "uint256";
80387
+ readonly name: "";
80388
+ readonly type: "uint256";
80389
+ }];
80390
+ readonly stateMutability: "view";
80391
+ readonly type: "function";
80392
+ }];
80393
+ readonly networks: {
80394
+ readonly "1": {
80395
+ readonly address: "0x50bd66d59911f5e086ec87ae43c811e0d059dd11";
80396
+ };
80397
+ };
80398
+ };
80399
+ export declare const StkAAVE: {
80400
+ readonly abi: readonly [{
80401
+ readonly inputs: readonly [{
80402
+ readonly internalType: "address";
80403
+ readonly name: "";
80404
+ readonly type: "address";
80405
+ }];
80406
+ readonly name: "assets";
80407
+ readonly outputs: readonly [{
80408
+ readonly internalType: "uint128";
80409
+ readonly name: "emissionPerSecond";
80410
+ readonly type: "uint128";
80411
+ }, {
80412
+ readonly internalType: "uint128";
80413
+ readonly name: "lastUpdateTimestamp";
80414
+ readonly type: "uint128";
80415
+ }, {
80416
+ readonly internalType: "uint256";
80417
+ readonly name: "index";
80418
+ readonly type: "uint256";
80419
+ }];
80420
+ readonly stateMutability: "view";
80421
+ readonly type: "function";
80422
+ }, {
80423
+ readonly inputs: readonly [{
80424
+ readonly internalType: "address";
80425
+ readonly name: "account";
80426
+ readonly type: "address";
80427
+ }];
80428
+ readonly name: "balanceOf";
80429
+ readonly outputs: readonly [{
80430
+ readonly internalType: "uint256";
80431
+ readonly name: "";
80432
+ readonly type: "uint256";
80433
+ }];
80434
+ readonly stateMutability: "view";
80435
+ readonly type: "function";
80436
+ }, {
80437
+ readonly inputs: readonly [];
80438
+ readonly name: "totalSupply";
80439
+ readonly outputs: readonly [{
80440
+ readonly internalType: "uint256";
80441
+ readonly name: "";
80442
+ readonly type: "uint256";
80443
+ }];
80444
+ readonly stateMutability: "view";
80445
+ readonly type: "function";
80446
+ }];
80447
+ readonly networks: {
80448
+ readonly "1": {
80449
+ readonly address: "0x4da27a545c0c5B758a6BA100e3a049001de870f5";
80450
+ };
80451
+ };
80452
+ };