@defisaver/positions-sdk 0.0.183 → 0.0.185-dev

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 (73) hide show
  1. package/cjs/aaveV3/index.js +1 -1
  2. package/cjs/compoundV3/index.js +11 -1
  3. package/cjs/config/contracts.d.ts +446 -216
  4. package/cjs/config/contracts.js +22 -0
  5. package/cjs/contracts.d.ts +1 -0
  6. package/cjs/contracts.js +2 -1
  7. package/cjs/markets/aave/marketAssets.js +1 -1
  8. package/cjs/markets/compound/index.d.ts +4 -0
  9. package/cjs/markets/compound/index.js +41 -1
  10. package/cjs/markets/compound/marketsAssets.d.ts +14 -0
  11. package/cjs/markets/compound/marketsAssets.js +17 -3
  12. package/cjs/markets/morphoBlue/index.d.ts +8 -0
  13. package/cjs/markets/morphoBlue/index.js +70 -1
  14. package/cjs/services/priceService.d.ts +1 -0
  15. package/cjs/services/priceService.js +23 -1
  16. package/cjs/staking/staking.js +2 -2
  17. package/cjs/types/compound.d.ts +3 -1
  18. package/cjs/types/compound.js +2 -0
  19. package/cjs/types/contracts/generated/CUSDSv3.d.ts +441 -0
  20. package/cjs/types/contracts/generated/CUSDSv3.js +5 -0
  21. package/cjs/types/contracts/generated/CWstETHv3.d.ts +441 -0
  22. package/cjs/types/contracts/generated/CWstETHv3.js +5 -0
  23. package/cjs/types/contracts/generated/WstETHPriceFeed.d.ts +39 -0
  24. package/cjs/types/contracts/generated/WstETHPriceFeed.js +5 -0
  25. package/cjs/types/contracts/generated/index.d.ts +3 -0
  26. package/cjs/types/morphoBlue.d.ts +5 -1
  27. package/cjs/types/morphoBlue.js +4 -0
  28. package/esm/aaveV3/index.js +1 -1
  29. package/esm/compoundV3/index.js +12 -2
  30. package/esm/config/contracts.d.ts +446 -216
  31. package/esm/config/contracts.js +22 -0
  32. package/esm/contracts.d.ts +1 -0
  33. package/esm/contracts.js +1 -0
  34. package/esm/markets/aave/marketAssets.js +1 -1
  35. package/esm/markets/compound/index.d.ts +4 -0
  36. package/esm/markets/compound/index.js +39 -1
  37. package/esm/markets/compound/marketsAssets.d.ts +14 -0
  38. package/esm/markets/compound/marketsAssets.js +16 -2
  39. package/esm/markets/morphoBlue/index.d.ts +8 -0
  40. package/esm/markets/morphoBlue/index.js +64 -0
  41. package/esm/services/priceService.d.ts +1 -0
  42. package/esm/services/priceService.js +22 -1
  43. package/esm/staking/staking.js +2 -2
  44. package/esm/types/compound.d.ts +3 -1
  45. package/esm/types/compound.js +2 -0
  46. package/esm/types/contracts/generated/CUSDSv3.d.ts +441 -0
  47. package/esm/types/contracts/generated/CUSDSv3.js +4 -0
  48. package/esm/types/contracts/generated/CWstETHv3.d.ts +441 -0
  49. package/esm/types/contracts/generated/CWstETHv3.js +4 -0
  50. package/esm/types/contracts/generated/WstETHPriceFeed.d.ts +39 -0
  51. package/esm/types/contracts/generated/WstETHPriceFeed.js +4 -0
  52. package/esm/types/contracts/generated/index.d.ts +3 -0
  53. package/esm/types/morphoBlue.d.ts +5 -1
  54. package/esm/types/morphoBlue.js +4 -0
  55. package/package.json +2 -2
  56. package/src/aaveV3/index.ts +1 -1
  57. package/src/compoundV3/index.ts +15 -2
  58. package/src/config/contracts.js +22 -0
  59. package/src/contracts.ts +1 -0
  60. package/src/markets/aave/marketAssets.ts +1 -1
  61. package/src/markets/compound/index.ts +42 -2
  62. package/src/markets/compound/marketsAssets.ts +20 -2
  63. package/src/markets/morphoBlue/index.ts +69 -0
  64. package/src/services/priceService.ts +32 -1
  65. package/src/staking/staking.ts +2 -2
  66. package/src/types/compound.ts +2 -0
  67. package/src/types/contracts/generated/CUSDSv3.ts +685 -0
  68. package/src/types/contracts/generated/CWstETHv3.ts +685 -0
  69. package/src/types/contracts/generated/WstETHPriceFeed.ts +59 -0
  70. package/src/types/contracts/generated/index.ts +3 -0
  71. package/src/types/morphoBlue.ts +4 -0
  72. package/.vscode/launch.json +0 -17
  73. package/.vscode/settings.json +0 -37
@@ -2907,8 +2907,202 @@ export namespace cUSDTv3 {
2907
2907
  };
2908
2908
  export { networks_23 as networks };
2909
2909
  }
2910
- export namespace CompV3View {
2910
+ export namespace cUSDSv3 {
2911
2911
  let abi_24: ({
2912
+ inputs: {
2913
+ components: ({
2914
+ internalType: string;
2915
+ name: string;
2916
+ type: string;
2917
+ components?: undefined;
2918
+ } | {
2919
+ components: {
2920
+ internalType: string;
2921
+ name: string;
2922
+ type: string;
2923
+ }[];
2924
+ internalType: string;
2925
+ name: string;
2926
+ type: string;
2927
+ })[];
2928
+ internalType: string;
2929
+ name: string;
2930
+ type: string;
2931
+ }[];
2932
+ stateMutability: string;
2933
+ type: string;
2934
+ name?: undefined;
2935
+ anonymous?: undefined;
2936
+ outputs?: undefined;
2937
+ } | {
2938
+ inputs: never[];
2939
+ name: string;
2940
+ type: string;
2941
+ stateMutability?: undefined;
2942
+ anonymous?: undefined;
2943
+ outputs?: undefined;
2944
+ } | {
2945
+ anonymous: boolean;
2946
+ inputs: {
2947
+ indexed: boolean;
2948
+ internalType: string;
2949
+ name: string;
2950
+ type: string;
2951
+ }[];
2952
+ name: string;
2953
+ type: string;
2954
+ stateMutability?: undefined;
2955
+ outputs?: undefined;
2956
+ } | {
2957
+ stateMutability: string;
2958
+ type: string;
2959
+ inputs?: undefined;
2960
+ name?: undefined;
2961
+ anonymous?: undefined;
2962
+ outputs?: undefined;
2963
+ } | {
2964
+ inputs: {
2965
+ internalType: string;
2966
+ name: string;
2967
+ type: string;
2968
+ }[];
2969
+ name: string;
2970
+ outputs: {
2971
+ internalType: string;
2972
+ name: string;
2973
+ type: string;
2974
+ }[];
2975
+ stateMutability: string;
2976
+ type: string;
2977
+ anonymous?: undefined;
2978
+ } | {
2979
+ inputs: {
2980
+ internalType: string;
2981
+ name: string;
2982
+ type: string;
2983
+ }[];
2984
+ name: string;
2985
+ outputs: {
2986
+ components: {
2987
+ internalType: string;
2988
+ name: string;
2989
+ type: string;
2990
+ }[];
2991
+ internalType: string;
2992
+ name: string;
2993
+ type: string;
2994
+ }[];
2995
+ stateMutability: string;
2996
+ type: string;
2997
+ anonymous?: undefined;
2998
+ })[];
2999
+ export { abi_24 as abi };
3000
+ let networks_24: {
3001
+ "1": {
3002
+ address: string;
3003
+ };
3004
+ };
3005
+ export { networks_24 as networks };
3006
+ }
3007
+ export namespace cWstETHv3 {
3008
+ let abi_25: ({
3009
+ inputs: {
3010
+ components: ({
3011
+ internalType: string;
3012
+ name: string;
3013
+ type: string;
3014
+ components?: undefined;
3015
+ } | {
3016
+ components: {
3017
+ internalType: string;
3018
+ name: string;
3019
+ type: string;
3020
+ }[];
3021
+ internalType: string;
3022
+ name: string;
3023
+ type: string;
3024
+ })[];
3025
+ internalType: string;
3026
+ name: string;
3027
+ type: string;
3028
+ }[];
3029
+ stateMutability: string;
3030
+ type: string;
3031
+ name?: undefined;
3032
+ anonymous?: undefined;
3033
+ outputs?: undefined;
3034
+ } | {
3035
+ inputs: never[];
3036
+ name: string;
3037
+ type: string;
3038
+ stateMutability?: undefined;
3039
+ anonymous?: undefined;
3040
+ outputs?: undefined;
3041
+ } | {
3042
+ anonymous: boolean;
3043
+ inputs: {
3044
+ indexed: boolean;
3045
+ internalType: string;
3046
+ name: string;
3047
+ type: string;
3048
+ }[];
3049
+ name: string;
3050
+ type: string;
3051
+ stateMutability?: undefined;
3052
+ outputs?: undefined;
3053
+ } | {
3054
+ stateMutability: string;
3055
+ type: string;
3056
+ inputs?: undefined;
3057
+ name?: undefined;
3058
+ anonymous?: undefined;
3059
+ outputs?: undefined;
3060
+ } | {
3061
+ inputs: {
3062
+ internalType: string;
3063
+ name: string;
3064
+ type: string;
3065
+ }[];
3066
+ name: string;
3067
+ outputs: {
3068
+ internalType: string;
3069
+ name: string;
3070
+ type: string;
3071
+ }[];
3072
+ stateMutability: string;
3073
+ type: string;
3074
+ anonymous?: undefined;
3075
+ } | {
3076
+ inputs: {
3077
+ internalType: string;
3078
+ name: string;
3079
+ type: string;
3080
+ }[];
3081
+ name: string;
3082
+ outputs: {
3083
+ components: {
3084
+ internalType: string;
3085
+ name: string;
3086
+ type: string;
3087
+ }[];
3088
+ internalType: string;
3089
+ name: string;
3090
+ type: string;
3091
+ }[];
3092
+ stateMutability: string;
3093
+ type: string;
3094
+ anonymous?: undefined;
3095
+ })[];
3096
+ export { abi_25 as abi };
3097
+ let networks_25: {
3098
+ "1": {
3099
+ address: string;
3100
+ };
3101
+ };
3102
+ export { networks_25 as networks };
3103
+ }
3104
+ export namespace CompV3View {
3105
+ let abi_26: ({
2912
3106
  inputs: {
2913
3107
  internalType: string;
2914
3108
  name: string;
@@ -2961,8 +3155,8 @@ export namespace CompV3View {
2961
3155
  stateMutability: string;
2962
3156
  type: string;
2963
3157
  })[];
2964
- export { abi_24 as abi };
2965
- let networks_24: {
3158
+ export { abi_26 as abi };
3159
+ let networks_26: {
2966
3160
  "1": {
2967
3161
  address: string;
2968
3162
  createdBlock: number;
@@ -3159,10 +3353,10 @@ export namespace CompV3View {
3159
3353
  };
3160
3354
  };
3161
3355
  };
3162
- export { networks_24 as networks };
3356
+ export { networks_26 as networks };
3163
3357
  }
3164
3358
  export namespace CompV3BulkerMainnetUSDC {
3165
- let abi_25: ({
3359
+ let abi_27: ({
3166
3360
  inputs: {
3167
3361
  internalType: string;
3168
3362
  name: string;
@@ -3205,16 +3399,16 @@ export namespace CompV3BulkerMainnetUSDC {
3205
3399
  name?: undefined;
3206
3400
  outputs?: undefined;
3207
3401
  })[];
3208
- export { abi_25 as abi };
3209
- let networks_25: {
3402
+ export { abi_27 as abi };
3403
+ let networks_27: {
3210
3404
  "1": {
3211
3405
  address: string;
3212
3406
  };
3213
3407
  };
3214
- export { networks_25 as networks };
3408
+ export { networks_27 as networks };
3215
3409
  }
3216
3410
  export namespace CompV3BulkerMainnetETH {
3217
- let abi_26: ({
3411
+ let abi_28: ({
3218
3412
  inputs: {
3219
3413
  internalType: string;
3220
3414
  name: string;
@@ -3274,16 +3468,16 @@ export namespace CompV3BulkerMainnetETH {
3274
3468
  anonymous?: undefined;
3275
3469
  outputs?: undefined;
3276
3470
  })[];
3277
- export { abi_26 as abi };
3278
- let networks_26: {
3471
+ export { abi_28 as abi };
3472
+ let networks_28: {
3279
3473
  "1": {
3280
3474
  address: string;
3281
3475
  };
3282
3476
  };
3283
- export { networks_26 as networks };
3477
+ export { networks_28 as networks };
3284
3478
  }
3285
3479
  export namespace CompV3BulkerL2 {
3286
- let abi_27: ({
3480
+ let abi_29: ({
3287
3481
  inputs: {
3288
3482
  internalType: string;
3289
3483
  name: string;
@@ -3343,8 +3537,8 @@ export namespace CompV3BulkerL2 {
3343
3537
  anonymous?: undefined;
3344
3538
  outputs?: undefined;
3345
3539
  })[];
3346
- export { abi_27 as abi };
3347
- let networks_27: {
3540
+ export { abi_29 as abi };
3541
+ let networks_29: {
3348
3542
  "10": {
3349
3543
  address: string;
3350
3544
  };
@@ -3355,10 +3549,10 @@ export namespace CompV3BulkerL2 {
3355
3549
  address: string;
3356
3550
  };
3357
3551
  };
3358
- export { networks_27 as networks };
3552
+ export { networks_29 as networks };
3359
3553
  }
3360
3554
  export namespace wstETH {
3361
- let abi_28: ({
3555
+ let abi_30: ({
3362
3556
  inputs: {
3363
3557
  internalType: string;
3364
3558
  name: string;
@@ -3404,16 +3598,16 @@ export namespace wstETH {
3404
3598
  name?: undefined;
3405
3599
  outputs?: undefined;
3406
3600
  })[];
3407
- export { abi_28 as abi };
3408
- let networks_28: {
3601
+ export { abi_30 as abi };
3602
+ let networks_30: {
3409
3603
  "1": {
3410
3604
  address: string;
3411
3605
  };
3412
3606
  };
3413
- export { networks_28 as networks };
3607
+ export { networks_30 as networks };
3414
3608
  }
3415
3609
  export namespace AaveLoanInfoV2 {
3416
- let abi_29: ({
3610
+ let abi_31: ({
3417
3611
  inputs: ({
3418
3612
  internalType: string;
3419
3613
  name: string;
@@ -3457,8 +3651,8 @@ export namespace AaveLoanInfoV2 {
3457
3651
  stateMutability: string;
3458
3652
  type: string;
3459
3653
  })[];
3460
- export { abi_29 as abi };
3461
- let networks_29: {
3654
+ export { abi_31 as abi };
3655
+ let networks_31: {
3462
3656
  "1": {
3463
3657
  address: string;
3464
3658
  createdBlock: number;
@@ -3627,10 +3821,10 @@ export namespace AaveLoanInfoV2 {
3627
3821
  };
3628
3822
  };
3629
3823
  };
3630
- export { networks_29 as networks };
3824
+ export { networks_31 as networks };
3631
3825
  }
3632
3826
  export namespace LendingPoolAddressesProvider {
3633
- let abi_30: ({
3827
+ let abi_32: ({
3634
3828
  anonymous: boolean;
3635
3829
  inputs: {
3636
3830
  indexed: boolean;
@@ -3658,16 +3852,16 @@ export namespace LendingPoolAddressesProvider {
3658
3852
  type: string;
3659
3853
  anonymous?: undefined;
3660
3854
  })[];
3661
- export { abi_30 as abi };
3662
- let networks_30: {
3855
+ export { abi_32 as abi };
3856
+ let networks_32: {
3663
3857
  "1": {
3664
3858
  address: string;
3665
3859
  };
3666
3860
  };
3667
- export { networks_30 as networks };
3861
+ export { networks_32 as networks };
3668
3862
  }
3669
3863
  export namespace AaveProtocolDataProvider {
3670
- let abi_31: ({
3864
+ let abi_33: ({
3671
3865
  inputs: {
3672
3866
  internalType: string;
3673
3867
  name: string;
@@ -3707,16 +3901,16 @@ export namespace AaveProtocolDataProvider {
3707
3901
  stateMutability: string;
3708
3902
  type: string;
3709
3903
  })[];
3710
- export { abi_31 as abi };
3711
- let networks_31: {
3904
+ export { abi_33 as abi };
3905
+ let networks_33: {
3712
3906
  "1": {
3713
3907
  address: string;
3714
3908
  };
3715
3909
  };
3716
- export { networks_31 as networks };
3910
+ export { networks_33 as networks };
3717
3911
  }
3718
3912
  export namespace AaveLendingPoolV2 {
3719
- let abi_32: ({
3913
+ let abi_34: ({
3720
3914
  anonymous: boolean;
3721
3915
  inputs: {
3722
3916
  indexed: boolean;
@@ -3774,16 +3968,16 @@ export namespace AaveLendingPoolV2 {
3774
3968
  type: string;
3775
3969
  anonymous?: undefined;
3776
3970
  })[];
3777
- export { abi_32 as abi };
3778
- let networks_32: {
3971
+ export { abi_34 as abi };
3972
+ let networks_34: {
3779
3973
  "1": {
3780
3974
  address: string;
3781
3975
  };
3782
3976
  };
3783
- export { networks_32 as networks };
3977
+ export { networks_34 as networks };
3784
3978
  }
3785
3979
  export namespace CompoundLoanInfo {
3786
- let abi_33: ({
3980
+ let abi_35: ({
3787
3981
  inputs: {
3788
3982
  components: {
3789
3983
  internalType: string;
@@ -3841,8 +4035,8 @@ export namespace CompoundLoanInfo {
3841
4035
  stateMutability: string;
3842
4036
  type: string;
3843
4037
  })[];
3844
- export { abi_33 as abi };
3845
- let networks_33: {
4038
+ export { abi_35 as abi };
4039
+ let networks_35: {
3846
4040
  "1": {
3847
4041
  address: string;
3848
4042
  createdBlock: number;
@@ -4017,10 +4211,10 @@ export namespace CompoundLoanInfo {
4017
4211
  };
4018
4212
  };
4019
4213
  };
4020
- export { networks_33 as networks };
4214
+ export { networks_35 as networks };
4021
4215
  }
4022
4216
  export namespace Comptroller {
4023
- let abi_34: ({
4217
+ let abi_36: ({
4024
4218
  inputs: never[];
4025
4219
  payable: boolean;
4026
4220
  stateMutability: string;
@@ -4061,17 +4255,17 @@ export namespace Comptroller {
4061
4255
  type: string;
4062
4256
  anonymous?: undefined;
4063
4257
  })[];
4064
- export { abi_34 as abi };
4065
- let networks_34: {
4258
+ export { abi_36 as abi };
4259
+ let networks_36: {
4066
4260
  "1": {
4067
4261
  createdBlock: number;
4068
4262
  address: string;
4069
4263
  };
4070
4264
  };
4071
- export { networks_34 as networks };
4265
+ export { networks_36 as networks };
4072
4266
  }
4073
4267
  export namespace IVariableDebtToken {
4074
- let abi_35: {
4268
+ let abi_37: {
4075
4269
  inputs: {
4076
4270
  internalType: string;
4077
4271
  name: string;
@@ -4086,16 +4280,16 @@ export namespace IVariableDebtToken {
4086
4280
  stateMutability: string;
4087
4281
  type: string;
4088
4282
  }[];
4089
- export { abi_35 as abi };
4090
- let networks_35: {
4283
+ export { abi_37 as abi };
4284
+ let networks_37: {
4091
4285
  "1": {
4092
4286
  address: string;
4093
4287
  };
4094
4288
  };
4095
- export { networks_35 as networks };
4289
+ export { networks_37 as networks };
4096
4290
  }
4097
4291
  export namespace IAToken {
4098
- let abi_36: {
4292
+ let abi_38: {
4099
4293
  inputs: {
4100
4294
  internalType: string;
4101
4295
  name: string;
@@ -4110,16 +4304,16 @@ export namespace IAToken {
4110
4304
  stateMutability: string;
4111
4305
  type: string;
4112
4306
  }[];
4113
- export { abi_36 as abi };
4114
- let networks_36: {
4307
+ export { abi_38 as abi };
4308
+ let networks_38: {
4115
4309
  "1": {
4116
4310
  address: string;
4117
4311
  };
4118
4312
  };
4119
- export { networks_36 as networks };
4313
+ export { networks_38 as networks };
4120
4314
  }
4121
4315
  export namespace MorphoAaveV2Proxy {
4122
- let abi_37: ({
4316
+ let abi_39: ({
4123
4317
  inputs: never[];
4124
4318
  name: string;
4125
4319
  type: string;
@@ -4192,16 +4386,16 @@ export namespace MorphoAaveV2Proxy {
4192
4386
  type: string;
4193
4387
  anonymous?: undefined;
4194
4388
  })[];
4195
- export { abi_37 as abi };
4196
- let networks_37: {
4389
+ export { abi_39 as abi };
4390
+ let networks_39: {
4197
4391
  "1": {
4198
4392
  address: string;
4199
4393
  };
4200
4394
  };
4201
- export { networks_37 as networks };
4395
+ export { networks_39 as networks };
4202
4396
  }
4203
4397
  export namespace MorphoAaveV3ProxyEthMarket {
4204
- let abi_38: ({
4398
+ let abi_40: ({
4205
4399
  inputs: {
4206
4400
  internalType: string;
4207
4401
  name: string;
@@ -4269,16 +4463,16 @@ export namespace MorphoAaveV3ProxyEthMarket {
4269
4463
  stateMutability: string;
4270
4464
  type: string;
4271
4465
  })[];
4272
- export { abi_38 as abi };
4273
- let networks_38: {
4466
+ export { abi_40 as abi };
4467
+ let networks_40: {
4274
4468
  "1": {
4275
4469
  address: string;
4276
4470
  };
4277
4471
  };
4278
- export { networks_38 as networks };
4472
+ export { networks_40 as networks };
4279
4473
  }
4280
4474
  export namespace Pot {
4281
- let abi_39: ({
4475
+ let abi_41: ({
4282
4476
  inputs: {
4283
4477
  internalType: string;
4284
4478
  name: string;
@@ -4323,17 +4517,17 @@ export namespace Pot {
4323
4517
  type: string;
4324
4518
  anonymous?: undefined;
4325
4519
  })[];
4326
- export { abi_39 as abi };
4327
- let networks_39: {
4520
+ export { abi_41 as abi };
4521
+ let networks_41: {
4328
4522
  "1": {
4329
4523
  address: string;
4330
4524
  createdBlock: number;
4331
4525
  };
4332
4526
  };
4333
- export { networks_39 as networks };
4527
+ export { networks_41 as networks };
4334
4528
  }
4335
4529
  export namespace MorphoAaveV2View {
4336
- let abi_40: ({
4530
+ let abi_42: ({
4337
4531
  inputs: never[];
4338
4532
  name: string;
4339
4533
  outputs: {
@@ -4373,8 +4567,8 @@ export namespace MorphoAaveV2View {
4373
4567
  stateMutability: string;
4374
4568
  type: string;
4375
4569
  })[];
4376
- export { abi_40 as abi };
4377
- let networks_40: {
4570
+ export { abi_42 as abi };
4571
+ let networks_42: {
4378
4572
  "1": {
4379
4573
  address: string;
4380
4574
  createdBlock: number;
@@ -4415,10 +4609,10 @@ export namespace MorphoAaveV2View {
4415
4609
  };
4416
4610
  };
4417
4611
  };
4418
- export { networks_40 as networks };
4612
+ export { networks_42 as networks };
4419
4613
  }
4420
4614
  export namespace SparkView {
4421
- let abi_41: ({
4615
+ let abi_43: ({
4422
4616
  inputs: ({
4423
4617
  internalType: string;
4424
4618
  name: string;
@@ -4481,8 +4675,8 @@ export namespace SparkView {
4481
4675
  stateMutability: string;
4482
4676
  type: string;
4483
4677
  })[];
4484
- export { abi_41 as abi };
4485
- let networks_41: {
4678
+ export { abi_43 as abi };
4679
+ let networks_43: {
4486
4680
  "1": {
4487
4681
  address: string;
4488
4682
  createdBlock: number;
@@ -4635,10 +4829,10 @@ export namespace SparkView {
4635
4829
  };
4636
4830
  };
4637
4831
  };
4638
- export { networks_41 as networks };
4832
+ export { networks_43 as networks };
4639
4833
  }
4640
4834
  export namespace SparkIncentiveDataProvider {
4641
- let abi_42: {
4835
+ let abi_44: {
4642
4836
  inputs: {
4643
4837
  internalType: string;
4644
4838
  name: string;
@@ -4678,16 +4872,16 @@ export namespace SparkIncentiveDataProvider {
4678
4872
  stateMutability: string;
4679
4873
  type: string;
4680
4874
  }[];
4681
- export { abi_42 as abi };
4682
- let networks_42: {
4875
+ export { abi_44 as abi };
4876
+ let networks_44: {
4683
4877
  "1": {
4684
4878
  address: string;
4685
4879
  };
4686
4880
  };
4687
- export { networks_42 as networks };
4881
+ export { networks_44 as networks };
4688
4882
  }
4689
4883
  export namespace SparkLendingPool {
4690
- let abi_43: ({
4884
+ let abi_45: ({
4691
4885
  inputs: {
4692
4886
  internalType: string;
4693
4887
  name: string;
@@ -4777,16 +4971,16 @@ export namespace SparkLendingPool {
4777
4971
  type: string;
4778
4972
  anonymous?: undefined;
4779
4973
  })[];
4780
- export { abi_43 as abi };
4781
- let networks_43: {
4974
+ export { abi_45 as abi };
4975
+ let networks_45: {
4782
4976
  "1": {
4783
4977
  address: string;
4784
4978
  };
4785
4979
  };
4786
- export { networks_43 as networks };
4980
+ export { networks_45 as networks };
4787
4981
  }
4788
4982
  export namespace SparkPoolAddressesProvider {
4789
- let abi_44: ({
4983
+ let abi_46: ({
4790
4984
  inputs: {
4791
4985
  internalType: string;
4792
4986
  name: string;
@@ -4825,16 +5019,16 @@ export namespace SparkPoolAddressesProvider {
4825
5019
  type: string;
4826
5020
  anonymous?: undefined;
4827
5021
  })[];
4828
- export { abi_44 as abi };
4829
- let networks_44: {
5022
+ export { abi_46 as abi };
5023
+ let networks_46: {
4830
5024
  "1": {
4831
5025
  address: string;
4832
5026
  };
4833
5027
  };
4834
- export { networks_44 as networks };
5028
+ export { networks_46 as networks };
4835
5029
  }
4836
5030
  export namespace SparkProtocolDataProvider {
4837
- let abi_45: ({
5031
+ let abi_47: ({
4838
5032
  inputs: {
4839
5033
  internalType: string;
4840
5034
  name: string;
@@ -4874,16 +5068,16 @@ export namespace SparkProtocolDataProvider {
4874
5068
  stateMutability: string;
4875
5069
  type: string;
4876
5070
  })[];
4877
- export { abi_45 as abi };
4878
- let networks_45: {
5071
+ export { abi_47 as abi };
5072
+ let networks_47: {
4879
5073
  "1": {
4880
5074
  address: string;
4881
5075
  };
4882
5076
  };
4883
- export { networks_45 as networks };
5077
+ export { networks_47 as networks };
4884
5078
  }
4885
5079
  export namespace crvUSDwstETHController {
4886
- let abi_46: ({
5080
+ let abi_48: ({
4887
5081
  name: string;
4888
5082
  inputs: {
4889
5083
  name: string;
@@ -4942,16 +5136,16 @@ export namespace crvUSDwstETHController {
4942
5136
  }[];
4943
5137
  anonymous?: undefined;
4944
5138
  })[];
4945
- export { abi_46 as abi };
4946
- let networks_46: {
5139
+ export { abi_48 as abi };
5140
+ let networks_48: {
4947
5141
  "1": {
4948
5142
  address: string;
4949
5143
  };
4950
5144
  };
4951
- export { networks_46 as networks };
5145
+ export { networks_48 as networks };
4952
5146
  }
4953
5147
  export namespace crvUSDETHController {
4954
- let abi_47: ({
5148
+ let abi_49: ({
4955
5149
  name: string;
4956
5150
  inputs: {
4957
5151
  name: string;
@@ -5010,16 +5204,16 @@ export namespace crvUSDETHController {
5010
5204
  }[];
5011
5205
  anonymous?: undefined;
5012
5206
  })[];
5013
- export { abi_47 as abi };
5014
- let networks_47: {
5207
+ export { abi_49 as abi };
5208
+ let networks_49: {
5015
5209
  "1": {
5016
5210
  address: string;
5017
5211
  };
5018
5212
  };
5019
- export { networks_47 as networks };
5213
+ export { networks_49 as networks };
5020
5214
  }
5021
5215
  export namespace crvUSDWBTCController {
5022
- let abi_48: ({
5216
+ let abi_50: ({
5023
5217
  name: string;
5024
5218
  inputs: {
5025
5219
  name: string;
@@ -5078,16 +5272,16 @@ export namespace crvUSDWBTCController {
5078
5272
  }[];
5079
5273
  anonymous?: undefined;
5080
5274
  })[];
5081
- export { abi_48 as abi };
5082
- let networks_48: {
5275
+ export { abi_50 as abi };
5276
+ let networks_50: {
5083
5277
  "1": {
5084
5278
  address: string;
5085
5279
  };
5086
5280
  };
5087
- export { networks_48 as networks };
5281
+ export { networks_50 as networks };
5088
5282
  }
5089
5283
  export namespace crvUSDtBTCController {
5090
- let abi_49: ({
5284
+ let abi_51: ({
5091
5285
  name: string;
5092
5286
  inputs: {
5093
5287
  name: string;
@@ -5146,16 +5340,16 @@ export namespace crvUSDtBTCController {
5146
5340
  }[];
5147
5341
  anonymous?: undefined;
5148
5342
  })[];
5149
- export { abi_49 as abi };
5150
- let networks_49: {
5343
+ export { abi_51 as abi };
5344
+ let networks_51: {
5151
5345
  "1": {
5152
5346
  address: string;
5153
5347
  };
5154
5348
  };
5155
- export { networks_49 as networks };
5349
+ export { networks_51 as networks };
5156
5350
  }
5157
5351
  export namespace crvUSDsfrxETHController {
5158
- let abi_50: ({
5352
+ let abi_52: ({
5159
5353
  name: string;
5160
5354
  inputs: {
5161
5355
  name: string;
@@ -5214,16 +5408,16 @@ export namespace crvUSDsfrxETHController {
5214
5408
  }[];
5215
5409
  anonymous?: undefined;
5216
5410
  })[];
5217
- export { abi_50 as abi };
5218
- let networks_50: {
5411
+ export { abi_52 as abi };
5412
+ let networks_52: {
5219
5413
  "1": {
5220
5414
  address: string;
5221
5415
  };
5222
5416
  };
5223
- export { networks_50 as networks };
5417
+ export { networks_52 as networks };
5224
5418
  }
5225
5419
  export namespace crvUSDwstETHAmm {
5226
- let abi_51: ({
5420
+ let abi_53: ({
5227
5421
  name: string;
5228
5422
  inputs: {
5229
5423
  name: string;
@@ -5258,16 +5452,16 @@ export namespace crvUSDwstETHAmm {
5258
5452
  }[];
5259
5453
  anonymous?: undefined;
5260
5454
  })[];
5261
- export { abi_51 as abi };
5262
- let networks_51: {
5455
+ export { abi_53 as abi };
5456
+ let networks_53: {
5263
5457
  "1": {
5264
5458
  address: string;
5265
5459
  };
5266
5460
  };
5267
- export { networks_51 as networks };
5461
+ export { networks_53 as networks };
5268
5462
  }
5269
5463
  export namespace crvUSDETHAmm {
5270
- let abi_52: ({
5464
+ let abi_54: ({
5271
5465
  name: string;
5272
5466
  inputs: {
5273
5467
  name: string;
@@ -5302,16 +5496,16 @@ export namespace crvUSDETHAmm {
5302
5496
  }[];
5303
5497
  anonymous?: undefined;
5304
5498
  })[];
5305
- export { abi_52 as abi };
5306
- let networks_52: {
5499
+ export { abi_54 as abi };
5500
+ let networks_54: {
5307
5501
  "1": {
5308
5502
  address: string;
5309
5503
  };
5310
5504
  };
5311
- export { networks_52 as networks };
5505
+ export { networks_54 as networks };
5312
5506
  }
5313
5507
  export namespace crvUSDWBTCAmm {
5314
- let abi_53: ({
5508
+ let abi_55: ({
5315
5509
  name: string;
5316
5510
  inputs: {
5317
5511
  name: string;
@@ -5346,16 +5540,16 @@ export namespace crvUSDWBTCAmm {
5346
5540
  }[];
5347
5541
  anonymous?: undefined;
5348
5542
  })[];
5349
- export { abi_53 as abi };
5350
- let networks_53: {
5543
+ export { abi_55 as abi };
5544
+ let networks_55: {
5351
5545
  "1": {
5352
5546
  address: string;
5353
5547
  };
5354
5548
  };
5355
- export { networks_53 as networks };
5549
+ export { networks_55 as networks };
5356
5550
  }
5357
5551
  export namespace crvUSDtBTCAmm {
5358
- let abi_54: ({
5552
+ let abi_56: ({
5359
5553
  name: string;
5360
5554
  inputs: {
5361
5555
  name: string;
@@ -5390,16 +5584,16 @@ export namespace crvUSDtBTCAmm {
5390
5584
  }[];
5391
5585
  anonymous?: undefined;
5392
5586
  })[];
5393
- export { abi_54 as abi };
5394
- let networks_54: {
5587
+ export { abi_56 as abi };
5588
+ let networks_56: {
5395
5589
  "1": {
5396
5590
  address: string;
5397
5591
  };
5398
5592
  };
5399
- export { networks_54 as networks };
5593
+ export { networks_56 as networks };
5400
5594
  }
5401
5595
  export namespace crvUSDsfrxETHAmm {
5402
- let abi_55: ({
5596
+ let abi_57: ({
5403
5597
  name: string;
5404
5598
  inputs: {
5405
5599
  name: string;
@@ -5434,16 +5628,16 @@ export namespace crvUSDsfrxETHAmm {
5434
5628
  }[];
5435
5629
  anonymous?: undefined;
5436
5630
  })[];
5437
- export { abi_55 as abi };
5438
- let networks_55: {
5631
+ export { abi_57 as abi };
5632
+ let networks_57: {
5439
5633
  "1": {
5440
5634
  address: string;
5441
5635
  };
5442
5636
  };
5443
- export { networks_55 as networks };
5637
+ export { networks_57 as networks };
5444
5638
  }
5445
5639
  export namespace crvUSDView {
5446
- let abi_56: ({
5640
+ let abi_58: ({
5447
5641
  inputs: never[];
5448
5642
  name: string;
5449
5643
  type: string;
@@ -5493,8 +5687,8 @@ export namespace crvUSDView {
5493
5687
  stateMutability: string;
5494
5688
  type: string;
5495
5689
  })[];
5496
- export { abi_56 as abi };
5497
- let networks_56: {
5690
+ export { abi_58 as abi };
5691
+ let networks_58: {
5498
5692
  "1": {
5499
5693
  address: string;
5500
5694
  createdBlock: number;
@@ -5571,10 +5765,10 @@ export namespace crvUSDView {
5571
5765
  };
5572
5766
  };
5573
5767
  };
5574
- export { networks_56 as networks };
5768
+ export { networks_58 as networks };
5575
5769
  }
5576
5770
  export namespace crvUSDFactory {
5577
- let abi_57: ({
5771
+ let abi_59: ({
5578
5772
  name: string;
5579
5773
  inputs: {
5580
5774
  name: string;
@@ -5609,16 +5803,16 @@ export namespace crvUSDFactory {
5609
5803
  }[];
5610
5804
  anonymous?: undefined;
5611
5805
  })[];
5612
- export { abi_57 as abi };
5613
- let networks_57: {
5806
+ export { abi_59 as abi };
5807
+ let networks_59: {
5614
5808
  "1": {
5615
5809
  address: string;
5616
5810
  };
5617
5811
  };
5618
- export { networks_57 as networks };
5812
+ export { networks_59 as networks };
5619
5813
  }
5620
5814
  export namespace LiquityView {
5621
- let abi_58: {
5815
+ let abi_60: {
5622
5816
  inputs: {
5623
5817
  internalType: string;
5624
5818
  name: string;
@@ -5633,8 +5827,8 @@ export namespace LiquityView {
5633
5827
  stateMutability: string;
5634
5828
  type: string;
5635
5829
  }[];
5636
- export { abi_58 as abi };
5637
- let networks_58: {
5830
+ export { abi_60 as abi };
5831
+ let networks_60: {
5638
5832
  "1": {
5639
5833
  address: string;
5640
5834
  createdBlock: number;
@@ -5714,10 +5908,10 @@ export namespace LiquityView {
5714
5908
  };
5715
5909
  };
5716
5910
  };
5717
- export { networks_58 as networks };
5911
+ export { networks_60 as networks };
5718
5912
  }
5719
5913
  export namespace CollSurplusPool {
5720
- let abi_59: ({
5914
+ let abi_61: ({
5721
5915
  anonymous: boolean;
5722
5916
  inputs: {
5723
5917
  indexed: boolean;
@@ -5752,16 +5946,16 @@ export namespace CollSurplusPool {
5752
5946
  name?: undefined;
5753
5947
  outputs?: undefined;
5754
5948
  })[];
5755
- export { abi_59 as abi };
5756
- let networks_59: {
5949
+ export { abi_61 as abi };
5950
+ let networks_61: {
5757
5951
  "1": {
5758
5952
  address: string;
5759
5953
  };
5760
5954
  };
5761
- export { networks_59 as networks };
5955
+ export { networks_61 as networks };
5762
5956
  }
5763
5957
  export namespace TroveManager {
5764
- let abi_60: ({
5958
+ let abi_62: ({
5765
5959
  anonymous: boolean;
5766
5960
  inputs: {
5767
5961
  indexed: boolean;
@@ -5789,16 +5983,16 @@ export namespace TroveManager {
5789
5983
  type: string;
5790
5984
  anonymous?: undefined;
5791
5985
  })[];
5792
- export { abi_60 as abi };
5793
- let networks_60: {
5986
+ export { abi_62 as abi };
5987
+ let networks_62: {
5794
5988
  "1": {
5795
5989
  address: string;
5796
5990
  };
5797
5991
  };
5798
- export { networks_60 as networks };
5992
+ export { networks_62 as networks };
5799
5993
  }
5800
5994
  export namespace PriceFeed {
5801
- let abi_61: ({
5995
+ let abi_63: ({
5802
5996
  anonymous: boolean;
5803
5997
  inputs: {
5804
5998
  indexed: boolean;
@@ -5833,16 +6027,16 @@ export namespace PriceFeed {
5833
6027
  type: string;
5834
6028
  anonymous?: undefined;
5835
6029
  })[];
5836
- export { abi_61 as abi };
5837
- let networks_61: {
6030
+ export { abi_63 as abi };
6031
+ let networks_63: {
5838
6032
  "1": {
5839
6033
  address: string;
5840
6034
  };
5841
6035
  };
5842
- export { networks_61 as networks };
6036
+ export { networks_63 as networks };
5843
6037
  }
5844
6038
  export namespace LiquityActivePool {
5845
- let abi_62: {
6039
+ let abi_64: {
5846
6040
  inputs: never[];
5847
6041
  name: string;
5848
6042
  outputs: {
@@ -5853,16 +6047,16 @@ export namespace LiquityActivePool {
5853
6047
  stateMutability: string;
5854
6048
  type: string;
5855
6049
  }[];
5856
- export { abi_62 as abi };
5857
- let networks_62: {
6050
+ export { abi_64 as abi };
6051
+ let networks_64: {
5858
6052
  "1": {
5859
6053
  address: string;
5860
6054
  };
5861
6055
  };
5862
- export { networks_62 as networks };
6056
+ export { networks_64 as networks };
5863
6057
  }
5864
6058
  export namespace McdView {
5865
- let abi_63: {
6059
+ let abi_65: {
5866
6060
  inputs: {
5867
6061
  internalType: string;
5868
6062
  name: string;
@@ -5877,8 +6071,8 @@ export namespace McdView {
5877
6071
  stateMutability: string;
5878
6072
  type: string;
5879
6073
  }[];
5880
- export { abi_63 as abi };
5881
- let networks_63: {
6074
+ export { abi_65 as abi };
6075
+ let networks_65: {
5882
6076
  "1": {
5883
6077
  address: string;
5884
6078
  createdBlock: number;
@@ -5922,10 +6116,10 @@ export namespace McdView {
5922
6116
  };
5923
6117
  };
5924
6118
  };
5925
- export { networks_63 as networks };
6119
+ export { networks_65 as networks };
5926
6120
  }
5927
6121
  export namespace McdSpotter {
5928
- let abi_64: {
6122
+ let abi_66: {
5929
6123
  constant: boolean;
5930
6124
  inputs: {
5931
6125
  name: string;
@@ -5940,16 +6134,16 @@ export namespace McdSpotter {
5940
6134
  stateMutability: string;
5941
6135
  type: string;
5942
6136
  }[];
5943
- export { abi_64 as abi };
5944
- let networks_64: {
6137
+ export { abi_66 as abi };
6138
+ let networks_66: {
5945
6139
  "1": {
5946
6140
  address: string;
5947
6141
  };
5948
6142
  };
5949
- export { networks_64 as networks };
6143
+ export { networks_66 as networks };
5950
6144
  }
5951
6145
  export namespace McdVat {
5952
- let abi_65: ({
6146
+ let abi_67: ({
5953
6147
  inputs: never[];
5954
6148
  payable: boolean;
5955
6149
  stateMutability: string;
@@ -5990,16 +6184,16 @@ export namespace McdVat {
5990
6184
  type: string;
5991
6185
  anonymous?: undefined;
5992
6186
  })[];
5993
- export { abi_65 as abi };
5994
- let networks_65: {
6187
+ export { abi_67 as abi };
6188
+ let networks_67: {
5995
6189
  "1": {
5996
6190
  address: string;
5997
6191
  };
5998
6192
  };
5999
- export { networks_65 as networks };
6193
+ export { networks_67 as networks };
6000
6194
  }
6001
6195
  export namespace McdJug {
6002
- let abi_66: ({
6196
+ let abi_68: ({
6003
6197
  inputs: {
6004
6198
  internalType: string;
6005
6199
  name: string;
@@ -6044,16 +6238,16 @@ export namespace McdJug {
6044
6238
  type: string;
6045
6239
  anonymous?: undefined;
6046
6240
  })[];
6047
- export { abi_66 as abi };
6048
- let networks_66: {
6241
+ export { abi_68 as abi };
6242
+ let networks_68: {
6049
6243
  "1": {
6050
6244
  address: string;
6051
6245
  };
6052
6246
  };
6053
- export { networks_66 as networks };
6247
+ export { networks_68 as networks };
6054
6248
  }
6055
6249
  export namespace McdDog {
6056
- let abi_67: ({
6250
+ let abi_69: ({
6057
6251
  inputs: {
6058
6252
  internalType: string;
6059
6253
  name: string;
@@ -6092,16 +6286,16 @@ export namespace McdDog {
6092
6286
  type: string;
6093
6287
  anonymous?: undefined;
6094
6288
  })[];
6095
- export { abi_67 as abi };
6096
- let networks_67: {
6289
+ export { abi_69 as abi };
6290
+ let networks_69: {
6097
6291
  "1": {
6098
6292
  address: string;
6099
6293
  };
6100
6294
  };
6101
- export { networks_67 as networks };
6295
+ export { networks_69 as networks };
6102
6296
  }
6103
6297
  export namespace ChickenBondsView {
6104
- let abi_68: ({
6298
+ let abi_70: ({
6105
6299
  inputs: never[];
6106
6300
  name: string;
6107
6301
  outputs: {
@@ -6131,17 +6325,17 @@ export namespace ChickenBondsView {
6131
6325
  stateMutability: string;
6132
6326
  type: string;
6133
6327
  })[];
6134
- export { abi_68 as abi };
6135
- let networks_68: {
6328
+ export { abi_70 as abi };
6329
+ let networks_70: {
6136
6330
  "1": {
6137
6331
  address: string;
6138
6332
  createdBlock: number;
6139
6333
  };
6140
6334
  };
6141
- export { networks_68 as networks };
6335
+ export { networks_70 as networks };
6142
6336
  }
6143
6337
  export namespace ChickenBondsManager {
6144
- let abi_69: {
6338
+ let abi_71: {
6145
6339
  inputs: {
6146
6340
  internalType: string;
6147
6341
  name: string;
@@ -6156,16 +6350,16 @@ export namespace ChickenBondsManager {
6156
6350
  stateMutability: string;
6157
6351
  type: string;
6158
6352
  }[];
6159
- export { abi_69 as abi };
6160
- let networks_69: {
6353
+ export { abi_71 as abi };
6354
+ let networks_71: {
6161
6355
  "1": {
6162
6356
  address: string;
6163
6357
  };
6164
6358
  };
6165
- export { networks_69 as networks };
6359
+ export { networks_71 as networks };
6166
6360
  }
6167
6361
  export namespace COMPPriceFeed {
6168
- let abi_70: ({
6362
+ let abi_72: ({
6169
6363
  inputs: {
6170
6364
  internalType: string;
6171
6365
  name: string;
@@ -6204,16 +6398,16 @@ export namespace COMPPriceFeed {
6204
6398
  type: string;
6205
6399
  anonymous?: undefined;
6206
6400
  })[];
6207
- export { abi_70 as abi };
6208
- let networks_70: {
6401
+ export { abi_72 as abi };
6402
+ let networks_72: {
6209
6403
  "1": {
6210
6404
  address: string;
6211
6405
  };
6212
6406
  };
6213
- export { networks_70 as networks };
6407
+ export { networks_72 as networks };
6214
6408
  }
6215
6409
  export namespace ETHPriceFeed {
6216
- let abi_71: ({
6410
+ let abi_73: ({
6217
6411
  inputs: {
6218
6412
  internalType: string;
6219
6413
  name: string;
@@ -6252,16 +6446,16 @@ export namespace ETHPriceFeed {
6252
6446
  type: string;
6253
6447
  anonymous?: undefined;
6254
6448
  })[];
6255
- export { abi_71 as abi };
6256
- let networks_71: {
6449
+ export { abi_73 as abi };
6450
+ let networks_73: {
6257
6451
  "1": {
6258
6452
  address: string;
6259
6453
  };
6260
6454
  };
6261
- export { networks_71 as networks };
6455
+ export { networks_73 as networks };
6262
6456
  }
6263
6457
  export namespace USDCPriceFeed {
6264
- let abi_72: ({
6458
+ let abi_74: ({
6265
6459
  inputs: {
6266
6460
  internalType: string;
6267
6461
  name: string;
@@ -6300,16 +6494,52 @@ export namespace USDCPriceFeed {
6300
6494
  type: string;
6301
6495
  anonymous?: undefined;
6302
6496
  })[];
6303
- export { abi_72 as abi };
6304
- let networks_72: {
6497
+ export { abi_74 as abi };
6498
+ let networks_74: {
6305
6499
  "1": {
6306
6500
  address: string;
6307
6501
  };
6308
6502
  };
6309
- export { networks_72 as networks };
6503
+ export { networks_74 as networks };
6504
+ }
6505
+ export namespace WstETHPriceFeed {
6506
+ let abi_75: ({
6507
+ inputs: {
6508
+ internalType: string;
6509
+ name: string;
6510
+ type: string;
6511
+ }[];
6512
+ stateMutability: string;
6513
+ type: string;
6514
+ name?: undefined;
6515
+ outputs?: undefined;
6516
+ } | {
6517
+ inputs: never[];
6518
+ name: string;
6519
+ type: string;
6520
+ stateMutability?: undefined;
6521
+ outputs?: undefined;
6522
+ } | {
6523
+ inputs: never[];
6524
+ name: string;
6525
+ outputs: {
6526
+ internalType: string;
6527
+ name: string;
6528
+ type: string;
6529
+ }[];
6530
+ stateMutability: string;
6531
+ type: string;
6532
+ })[];
6533
+ export { abi_75 as abi };
6534
+ let networks_75: {
6535
+ "1": {
6536
+ address: string;
6537
+ };
6538
+ };
6539
+ export { networks_75 as networks };
6310
6540
  }
6311
6541
  export namespace MorphoBlueView {
6312
- let abi_73: ({
6542
+ let abi_76: ({
6313
6543
  inputs: {
6314
6544
  components: ({
6315
6545
  components: {
@@ -6402,8 +6632,8 @@ export namespace MorphoBlueView {
6402
6632
  stateMutability: string;
6403
6633
  type: string;
6404
6634
  })[];
6405
- export { abi_73 as abi };
6406
- let networks_73: {
6635
+ export { abi_76 as abi };
6636
+ let networks_76: {
6407
6637
  "1": {
6408
6638
  address: string;
6409
6639
  createdBlock: number;
@@ -6521,10 +6751,10 @@ export namespace MorphoBlueView {
6521
6751
  };
6522
6752
  };
6523
6753
  };
6524
- export { networks_73 as networks };
6754
+ export { networks_76 as networks };
6525
6755
  }
6526
6756
  export namespace FeedRegistry {
6527
- let abi_74: ({
6757
+ let abi_77: ({
6528
6758
  anonymous: boolean;
6529
6759
  inputs: {
6530
6760
  indexed: boolean;
@@ -6572,16 +6802,16 @@ export namespace FeedRegistry {
6572
6802
  type: string;
6573
6803
  anonymous?: undefined;
6574
6804
  })[];
6575
- export { abi_74 as abi };
6576
- let networks_74: {
6805
+ export { abi_77 as abi };
6806
+ let networks_77: {
6577
6807
  "1": {
6578
6808
  address: string;
6579
6809
  };
6580
6810
  };
6581
- export { networks_74 as networks };
6811
+ export { networks_77 as networks };
6582
6812
  }
6583
6813
  export namespace LlamaLendView {
6584
- let abi_75: ({
6814
+ let abi_78: ({
6585
6815
  inputs: never[];
6586
6816
  name: string;
6587
6817
  type: string;
@@ -6631,8 +6861,8 @@ export namespace LlamaLendView {
6631
6861
  stateMutability: string;
6632
6862
  type: string;
6633
6863
  })[];
6634
- export { abi_75 as abi };
6635
- let networks_75: {
6864
+ export { abi_78 as abi };
6865
+ let networks_78: {
6636
6866
  "1": {
6637
6867
  address: string;
6638
6868
  };
@@ -6640,10 +6870,10 @@ export namespace LlamaLendView {
6640
6870
  address: string;
6641
6871
  };
6642
6872
  };
6643
- export { networks_75 as networks };
6873
+ export { networks_78 as networks };
6644
6874
  }
6645
6875
  export namespace LlamaLendControllerAbi {
6646
- let abi_76: ({
6876
+ let abi_79: ({
6647
6877
  name: string;
6648
6878
  inputs: {
6649
6879
  name: string;
@@ -6695,12 +6925,12 @@ export namespace LlamaLendControllerAbi {
6695
6925
  }[];
6696
6926
  anonymous?: undefined;
6697
6927
  })[];
6698
- export { abi_76 as abi };
6699
- let networks_76: {};
6700
- export { networks_76 as networks };
6928
+ export { abi_79 as abi };
6929
+ let networks_79: {};
6930
+ export { networks_79 as networks };
6701
6931
  }
6702
6932
  export namespace EulerV2View {
6703
- let abi_77: ({
6933
+ let abi_80: ({
6704
6934
  inputs: {
6705
6935
  internalType: string;
6706
6936
  name: string;
@@ -6763,11 +6993,11 @@ export namespace EulerV2View {
6763
6993
  stateMutability: string;
6764
6994
  type: string;
6765
6995
  })[];
6766
- export { abi_77 as abi };
6767
- let networks_77: {
6996
+ export { abi_80 as abi };
6997
+ let networks_80: {
6768
6998
  "1": {
6769
6999
  address: string;
6770
7000
  };
6771
7001
  };
6772
- export { networks_77 as networks };
7002
+ export { networks_80 as networks };
6773
7003
  }