@defisaver/positions-sdk 0.0.16 → 0.0.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/compoundV3/index.d.ts +1 -1
- package/cjs/compoundV3/index.js +3 -2
- package/cjs/config/contracts.d.ts +72 -184
- package/cjs/config/contracts.js +0 -16
- package/cjs/helpers/compoundHelpers/index.js +2 -2
- package/cjs/markets/curveUsd/index.d.ts +0 -2
- package/cjs/markets/curveUsd/index.js +1 -14
- package/cjs/types/compound.d.ts +1 -0
- package/cjs/types/contracts/generated/index.d.ts +0 -2
- package/cjs/types/curveUsd.d.ts +1 -2
- package/cjs/types/curveUsd.js +0 -1
- package/esm/compoundV3/index.d.ts +1 -1
- package/esm/compoundV3/index.js +3 -2
- package/esm/config/contracts.d.ts +72 -184
- package/esm/config/contracts.js +0 -16
- package/esm/helpers/compoundHelpers/index.js +2 -2
- package/esm/markets/curveUsd/index.d.ts +0 -2
- package/esm/markets/curveUsd/index.js +0 -12
- package/esm/types/compound.d.ts +1 -0
- package/esm/types/contracts/generated/index.d.ts +0 -2
- package/esm/types/curveUsd.d.ts +1 -2
- package/esm/types/curveUsd.js +0 -1
- package/package.json +40 -40
- package/src/aaveV2/index.ts +220 -220
- package/src/aaveV3/index.ts +556 -556
- package/src/assets/index.ts +60 -60
- package/src/chickenBonds/index.ts +123 -123
- package/src/compoundV2/index.ts +206 -206
- package/src/compoundV3/index.ts +273 -269
- package/src/config/contracts.js +651 -651
- package/src/constants/index.ts +3 -3
- package/src/contracts.ts +100 -100
- package/src/curveUsd/index.ts +228 -228
- package/src/exchange/index.ts +17 -17
- package/src/helpers/aaveHelpers/index.ts +134 -134
- package/src/helpers/chickenBondsHelpers/index.ts +23 -23
- package/src/helpers/compoundHelpers/index.ts +181 -181
- package/src/helpers/curveUsdHelpers/index.ts +32 -32
- package/src/helpers/index.ts +5 -5
- package/src/helpers/makerHelpers/index.ts +94 -94
- package/src/helpers/sparkHelpers/index.ts +106 -106
- package/src/index.ts +40 -40
- package/src/liquity/index.ts +103 -103
- package/src/maker/index.ts +101 -101
- package/src/markets/aave/index.ts +80 -80
- package/src/markets/aave/marketAssets.ts +32 -32
- package/src/markets/compound/index.ts +85 -85
- package/src/markets/compound/marketsAssets.ts +35 -35
- package/src/markets/curveUsd/index.ts +69 -69
- package/src/markets/index.ts +3 -3
- package/src/markets/spark/index.ts +29 -29
- package/src/markets/spark/marketAssets.ts +9 -9
- package/src/moneymarket/moneymarketCommonService.ts +75 -75
- package/src/morpho/markets.ts +39 -39
- package/src/morphoAaveV2/index.ts +254 -254
- package/src/morphoAaveV3/index.ts +617 -617
- package/src/multicall/index.ts +22 -22
- package/src/services/dsrService.ts +15 -15
- package/src/services/priceService.ts +21 -21
- package/src/services/utils.ts +34 -34
- package/src/spark/index.ts +413 -413
- package/src/staking/staking.ts +167 -167
- package/src/types/aave.ts +256 -256
- package/src/types/chickenBonds.ts +45 -45
- package/src/types/common.ts +83 -83
- package/src/types/compound.ts +122 -121
- package/src/types/contracts/generated/index.ts +0 -2
- package/src/types/curveUsd.ts +112 -112
- package/src/types/index.ts +6 -6
- package/src/types/liquity.ts +29 -29
- package/src/types/maker.ts +50 -50
- package/src/types/spark.ts +106 -106
- package/cjs/types/contracts/generated/CrvUSDsfrxETHAmm.d.ts +0 -139
- package/cjs/types/contracts/generated/CrvUSDsfrxETHAmm.js +0 -5
- package/cjs/types/contracts/generated/CrvUSDsfrxETHController.d.ts +0 -205
- package/cjs/types/contracts/generated/CrvUSDsfrxETHController.js +0 -5
- package/esm/types/contracts/generated/CrvUSDsfrxETHAmm.d.ts +0 -139
- package/esm/types/contracts/generated/CrvUSDsfrxETHAmm.js +0 -4
- package/esm/types/contracts/generated/CrvUSDsfrxETHController.d.ts +0 -205
- package/esm/types/contracts/generated/CrvUSDsfrxETHController.js +0 -4
- package/src/types/contracts/generated/CrvUSDsfrxETHAmm.ts +0 -286
- package/src/types/contracts/generated/CrvUSDsfrxETHController.ts +0 -403
- package/yarn-error.log +0 -64
|
@@ -33,5 +33,5 @@ export declare const getCompoundV3AccountBalances: (web3: Web3, network: Network
|
|
|
33
33
|
export declare const getCompoundV3AccountData: (web3: Web3, network: NetworkNumber, address: string, proxyAddress: string, extractedState: ({
|
|
34
34
|
selectedMarket: CompoundMarketData;
|
|
35
35
|
assetsData: CompoundV3AssetsData;
|
|
36
|
-
})) => Promise<CompoundV3PositionData>;
|
|
36
|
+
}), customGetAggregatedDataFunction?: Function) => Promise<CompoundV3PositionData>;
|
|
37
37
|
export declare const getCompoundV3FullPositionData: (web3: Web3, network: NetworkNumber, address: string, proxyAddress: string, selectedMarket: CompoundMarketData, mainnetWeb3: Web3) => Promise<CompoundV3PositionData>;
|
package/cjs/compoundV3/index.js
CHANGED
|
@@ -144,7 +144,7 @@ const getCompoundV3AccountBalances = (web3, network, block, addressMapping, addr
|
|
|
144
144
|
return balances;
|
|
145
145
|
});
|
|
146
146
|
exports.getCompoundV3AccountBalances = getCompoundV3AccountBalances;
|
|
147
|
-
const getCompoundV3AccountData = (web3, network, address, proxyAddress, extractedState) => __awaiter(void 0, void 0, void 0, function* () {
|
|
147
|
+
const getCompoundV3AccountData = (web3, network, address, proxyAddress, extractedState, customGetAggregatedDataFunction) => __awaiter(void 0, void 0, void 0, function* () {
|
|
148
148
|
if (!address)
|
|
149
149
|
throw new Error('No address provided');
|
|
150
150
|
const { selectedMarket, assetsData, } = extractedState;
|
|
@@ -197,7 +197,8 @@ const getCompoundV3AccountData = (web3, network, address, proxyAddress, extracte
|
|
|
197
197
|
supplied,
|
|
198
198
|
suppliedUsd, isBorrowed: false, symbol, collateral: true });
|
|
199
199
|
});
|
|
200
|
-
|
|
200
|
+
const aggregateFunction = customGetAggregatedDataFunction || compoundHelpers_1.getCompoundV3AggregatedData;
|
|
201
|
+
payload = Object.assign(Object.assign(Object.assign(Object.assign({}, payload), { usedAssets }), aggregateFunction({
|
|
201
202
|
usedAssets, assetsData, network, selectedMarket,
|
|
202
203
|
})), { isAllowed: data[1][0] });
|
|
203
204
|
// Calculate borrow limits per asset
|
|
@@ -2451,7 +2451,7 @@ export namespace crvUSDtBTCController {
|
|
|
2451
2451
|
};
|
|
2452
2452
|
export { networks_41 as networks };
|
|
2453
2453
|
}
|
|
2454
|
-
export namespace
|
|
2454
|
+
export namespace crvUSDwstETHAmm {
|
|
2455
2455
|
let abi_42: ({
|
|
2456
2456
|
name: string;
|
|
2457
2457
|
inputs: {
|
|
@@ -2473,13 +2473,6 @@ export namespace crvUSDsfrxETHController {
|
|
|
2473
2473
|
outputs: never[];
|
|
2474
2474
|
name?: undefined;
|
|
2475
2475
|
anonymous?: undefined;
|
|
2476
|
-
} | {
|
|
2477
|
-
stateMutability: string;
|
|
2478
|
-
type: string;
|
|
2479
|
-
name?: undefined;
|
|
2480
|
-
inputs?: undefined;
|
|
2481
|
-
anonymous?: undefined;
|
|
2482
|
-
outputs?: undefined;
|
|
2483
2476
|
} | {
|
|
2484
2477
|
stateMutability: string;
|
|
2485
2478
|
type: string;
|
|
@@ -2493,23 +2486,6 @@ export namespace crvUSDsfrxETHController {
|
|
|
2493
2486
|
type: string;
|
|
2494
2487
|
}[];
|
|
2495
2488
|
anonymous?: undefined;
|
|
2496
|
-
} | {
|
|
2497
|
-
stateMutability: string;
|
|
2498
|
-
type: string;
|
|
2499
|
-
name: string;
|
|
2500
|
-
inputs: {
|
|
2501
|
-
name: string;
|
|
2502
|
-
type: string;
|
|
2503
|
-
}[];
|
|
2504
|
-
outputs: {
|
|
2505
|
-
name: string;
|
|
2506
|
-
type: string;
|
|
2507
|
-
components: {
|
|
2508
|
-
name: string;
|
|
2509
|
-
type: string;
|
|
2510
|
-
}[];
|
|
2511
|
-
}[];
|
|
2512
|
-
anonymous?: undefined;
|
|
2513
2489
|
})[];
|
|
2514
2490
|
export { abi_42 as abi };
|
|
2515
2491
|
let networks_42: {
|
|
@@ -2519,7 +2495,7 @@ export namespace crvUSDsfrxETHController {
|
|
|
2519
2495
|
};
|
|
2520
2496
|
export { networks_42 as networks };
|
|
2521
2497
|
}
|
|
2522
|
-
export namespace
|
|
2498
|
+
export namespace crvUSDETHAmm {
|
|
2523
2499
|
let abi_43: ({
|
|
2524
2500
|
name: string;
|
|
2525
2501
|
inputs: {
|
|
@@ -2563,7 +2539,7 @@ export namespace crvUSDwstETHAmm {
|
|
|
2563
2539
|
};
|
|
2564
2540
|
export { networks_43 as networks };
|
|
2565
2541
|
}
|
|
2566
|
-
export namespace
|
|
2542
|
+
export namespace crvUSDWBTCAmm {
|
|
2567
2543
|
let abi_44: ({
|
|
2568
2544
|
name: string;
|
|
2569
2545
|
inputs: {
|
|
@@ -2607,7 +2583,7 @@ export namespace crvUSDETHAmm {
|
|
|
2607
2583
|
};
|
|
2608
2584
|
export { networks_44 as networks };
|
|
2609
2585
|
}
|
|
2610
|
-
export namespace
|
|
2586
|
+
export namespace crvUSDtBTCAmm {
|
|
2611
2587
|
let abi_45: ({
|
|
2612
2588
|
name: string;
|
|
2613
2589
|
inputs: {
|
|
@@ -2651,96 +2627,8 @@ export namespace crvUSDWBTCAmm {
|
|
|
2651
2627
|
};
|
|
2652
2628
|
export { networks_45 as networks };
|
|
2653
2629
|
}
|
|
2654
|
-
export namespace crvUSDtBTCAmm {
|
|
2655
|
-
let abi_46: ({
|
|
2656
|
-
name: string;
|
|
2657
|
-
inputs: {
|
|
2658
|
-
name: string;
|
|
2659
|
-
type: string;
|
|
2660
|
-
indexed: boolean;
|
|
2661
|
-
}[];
|
|
2662
|
-
anonymous: boolean;
|
|
2663
|
-
type: string;
|
|
2664
|
-
stateMutability?: undefined;
|
|
2665
|
-
outputs?: undefined;
|
|
2666
|
-
} | {
|
|
2667
|
-
stateMutability: string;
|
|
2668
|
-
type: string;
|
|
2669
|
-
inputs: {
|
|
2670
|
-
name: string;
|
|
2671
|
-
type: string;
|
|
2672
|
-
}[];
|
|
2673
|
-
outputs: never[];
|
|
2674
|
-
name?: undefined;
|
|
2675
|
-
anonymous?: undefined;
|
|
2676
|
-
} | {
|
|
2677
|
-
stateMutability: string;
|
|
2678
|
-
type: string;
|
|
2679
|
-
name: string;
|
|
2680
|
-
inputs: {
|
|
2681
|
-
name: string;
|
|
2682
|
-
type: string;
|
|
2683
|
-
}[];
|
|
2684
|
-
outputs: {
|
|
2685
|
-
name: string;
|
|
2686
|
-
type: string;
|
|
2687
|
-
}[];
|
|
2688
|
-
anonymous?: undefined;
|
|
2689
|
-
})[];
|
|
2690
|
-
export { abi_46 as abi };
|
|
2691
|
-
let networks_46: {
|
|
2692
|
-
"1": {
|
|
2693
|
-
address: string;
|
|
2694
|
-
};
|
|
2695
|
-
};
|
|
2696
|
-
export { networks_46 as networks };
|
|
2697
|
-
}
|
|
2698
|
-
export namespace crvUSDsfrxETHAmm {
|
|
2699
|
-
let abi_47: ({
|
|
2700
|
-
name: string;
|
|
2701
|
-
inputs: {
|
|
2702
|
-
name: string;
|
|
2703
|
-
type: string;
|
|
2704
|
-
indexed: boolean;
|
|
2705
|
-
}[];
|
|
2706
|
-
anonymous: boolean;
|
|
2707
|
-
type: string;
|
|
2708
|
-
stateMutability?: undefined;
|
|
2709
|
-
outputs?: undefined;
|
|
2710
|
-
} | {
|
|
2711
|
-
stateMutability: string;
|
|
2712
|
-
type: string;
|
|
2713
|
-
inputs: {
|
|
2714
|
-
name: string;
|
|
2715
|
-
type: string;
|
|
2716
|
-
}[];
|
|
2717
|
-
outputs: never[];
|
|
2718
|
-
name?: undefined;
|
|
2719
|
-
anonymous?: undefined;
|
|
2720
|
-
} | {
|
|
2721
|
-
stateMutability: string;
|
|
2722
|
-
type: string;
|
|
2723
|
-
name: string;
|
|
2724
|
-
inputs: {
|
|
2725
|
-
name: string;
|
|
2726
|
-
type: string;
|
|
2727
|
-
}[];
|
|
2728
|
-
outputs: {
|
|
2729
|
-
name: string;
|
|
2730
|
-
type: string;
|
|
2731
|
-
}[];
|
|
2732
|
-
anonymous?: undefined;
|
|
2733
|
-
})[];
|
|
2734
|
-
export { abi_47 as abi };
|
|
2735
|
-
let networks_47: {
|
|
2736
|
-
"1": {
|
|
2737
|
-
address: string;
|
|
2738
|
-
};
|
|
2739
|
-
};
|
|
2740
|
-
export { networks_47 as networks };
|
|
2741
|
-
}
|
|
2742
2630
|
export namespace crvUSDView {
|
|
2743
|
-
let
|
|
2631
|
+
let abi_46: ({
|
|
2744
2632
|
inputs: {
|
|
2745
2633
|
internalType: string;
|
|
2746
2634
|
name: string;
|
|
@@ -2784,8 +2672,8 @@ export namespace crvUSDView {
|
|
|
2784
2672
|
stateMutability: string;
|
|
2785
2673
|
type: string;
|
|
2786
2674
|
})[];
|
|
2787
|
-
export {
|
|
2788
|
-
let
|
|
2675
|
+
export { abi_46 as abi };
|
|
2676
|
+
let networks_46: {
|
|
2789
2677
|
"1": {
|
|
2790
2678
|
address: string;
|
|
2791
2679
|
createdBlock: number;
|
|
@@ -2794,10 +2682,10 @@ export namespace crvUSDView {
|
|
|
2794
2682
|
};
|
|
2795
2683
|
};
|
|
2796
2684
|
};
|
|
2797
|
-
export {
|
|
2685
|
+
export { networks_46 as networks };
|
|
2798
2686
|
}
|
|
2799
2687
|
export namespace crvUSDFactory {
|
|
2800
|
-
let
|
|
2688
|
+
let abi_47: ({
|
|
2801
2689
|
name: string;
|
|
2802
2690
|
inputs: {
|
|
2803
2691
|
name: string;
|
|
@@ -2832,16 +2720,16 @@ export namespace crvUSDFactory {
|
|
|
2832
2720
|
}[];
|
|
2833
2721
|
anonymous?: undefined;
|
|
2834
2722
|
})[];
|
|
2835
|
-
export {
|
|
2836
|
-
let
|
|
2723
|
+
export { abi_47 as abi };
|
|
2724
|
+
let networks_47: {
|
|
2837
2725
|
"1": {
|
|
2838
2726
|
address: string;
|
|
2839
2727
|
};
|
|
2840
2728
|
};
|
|
2841
|
-
export {
|
|
2729
|
+
export { networks_47 as networks };
|
|
2842
2730
|
}
|
|
2843
2731
|
export namespace LiquityView {
|
|
2844
|
-
let
|
|
2732
|
+
let abi_48: {
|
|
2845
2733
|
inputs: {
|
|
2846
2734
|
internalType: string;
|
|
2847
2735
|
name: string;
|
|
@@ -2856,8 +2744,8 @@ export namespace LiquityView {
|
|
|
2856
2744
|
stateMutability: string;
|
|
2857
2745
|
type: string;
|
|
2858
2746
|
}[];
|
|
2859
|
-
export {
|
|
2860
|
-
let
|
|
2747
|
+
export { abi_48 as abi };
|
|
2748
|
+
let networks_48: {
|
|
2861
2749
|
"1": {
|
|
2862
2750
|
address: string;
|
|
2863
2751
|
createdBlock: number;
|
|
@@ -2869,10 +2757,10 @@ export namespace LiquityView {
|
|
|
2869
2757
|
};
|
|
2870
2758
|
};
|
|
2871
2759
|
};
|
|
2872
|
-
export {
|
|
2760
|
+
export { networks_48 as networks };
|
|
2873
2761
|
}
|
|
2874
2762
|
export namespace CollSurplusPool {
|
|
2875
|
-
let
|
|
2763
|
+
let abi_49: ({
|
|
2876
2764
|
anonymous: boolean;
|
|
2877
2765
|
inputs: {
|
|
2878
2766
|
indexed: boolean;
|
|
@@ -2907,16 +2795,16 @@ export namespace CollSurplusPool {
|
|
|
2907
2795
|
name?: undefined;
|
|
2908
2796
|
outputs?: undefined;
|
|
2909
2797
|
})[];
|
|
2910
|
-
export {
|
|
2911
|
-
let
|
|
2798
|
+
export { abi_49 as abi };
|
|
2799
|
+
let networks_49: {
|
|
2912
2800
|
"1": {
|
|
2913
2801
|
address: string;
|
|
2914
2802
|
};
|
|
2915
2803
|
};
|
|
2916
|
-
export {
|
|
2804
|
+
export { networks_49 as networks };
|
|
2917
2805
|
}
|
|
2918
2806
|
export namespace TroveManager {
|
|
2919
|
-
let
|
|
2807
|
+
let abi_50: ({
|
|
2920
2808
|
anonymous: boolean;
|
|
2921
2809
|
inputs: {
|
|
2922
2810
|
indexed: boolean;
|
|
@@ -2944,16 +2832,16 @@ export namespace TroveManager {
|
|
|
2944
2832
|
type: string;
|
|
2945
2833
|
anonymous?: undefined;
|
|
2946
2834
|
})[];
|
|
2947
|
-
export {
|
|
2948
|
-
let
|
|
2835
|
+
export { abi_50 as abi };
|
|
2836
|
+
let networks_50: {
|
|
2949
2837
|
"1": {
|
|
2950
2838
|
address: string;
|
|
2951
2839
|
};
|
|
2952
2840
|
};
|
|
2953
|
-
export {
|
|
2841
|
+
export { networks_50 as networks };
|
|
2954
2842
|
}
|
|
2955
2843
|
export namespace PriceFeed {
|
|
2956
|
-
let
|
|
2844
|
+
let abi_51: ({
|
|
2957
2845
|
anonymous: boolean;
|
|
2958
2846
|
inputs: {
|
|
2959
2847
|
indexed: boolean;
|
|
@@ -2988,16 +2876,16 @@ export namespace PriceFeed {
|
|
|
2988
2876
|
type: string;
|
|
2989
2877
|
anonymous?: undefined;
|
|
2990
2878
|
})[];
|
|
2991
|
-
export {
|
|
2992
|
-
let
|
|
2879
|
+
export { abi_51 as abi };
|
|
2880
|
+
let networks_51: {
|
|
2993
2881
|
"1": {
|
|
2994
2882
|
address: string;
|
|
2995
2883
|
};
|
|
2996
2884
|
};
|
|
2997
|
-
export {
|
|
2885
|
+
export { networks_51 as networks };
|
|
2998
2886
|
}
|
|
2999
2887
|
export namespace LiquityActivePool {
|
|
3000
|
-
let
|
|
2888
|
+
let abi_52: {
|
|
3001
2889
|
inputs: never[];
|
|
3002
2890
|
name: string;
|
|
3003
2891
|
outputs: {
|
|
@@ -3008,16 +2896,16 @@ export namespace LiquityActivePool {
|
|
|
3008
2896
|
stateMutability: string;
|
|
3009
2897
|
type: string;
|
|
3010
2898
|
}[];
|
|
3011
|
-
export {
|
|
3012
|
-
let
|
|
2899
|
+
export { abi_52 as abi };
|
|
2900
|
+
let networks_52: {
|
|
3013
2901
|
"1": {
|
|
3014
2902
|
address: string;
|
|
3015
2903
|
};
|
|
3016
2904
|
};
|
|
3017
|
-
export {
|
|
2905
|
+
export { networks_52 as networks };
|
|
3018
2906
|
}
|
|
3019
2907
|
export namespace McdView {
|
|
3020
|
-
let
|
|
2908
|
+
let abi_53: {
|
|
3021
2909
|
inputs: {
|
|
3022
2910
|
internalType: string;
|
|
3023
2911
|
name: string;
|
|
@@ -3032,8 +2920,8 @@ export namespace McdView {
|
|
|
3032
2920
|
stateMutability: string;
|
|
3033
2921
|
type: string;
|
|
3034
2922
|
}[];
|
|
3035
|
-
export {
|
|
3036
|
-
let
|
|
2923
|
+
export { abi_53 as abi };
|
|
2924
|
+
let networks_53: {
|
|
3037
2925
|
"1": {
|
|
3038
2926
|
address: string;
|
|
3039
2927
|
createdBlock: number;
|
|
@@ -3042,10 +2930,10 @@ export namespace McdView {
|
|
|
3042
2930
|
};
|
|
3043
2931
|
};
|
|
3044
2932
|
};
|
|
3045
|
-
export {
|
|
2933
|
+
export { networks_53 as networks };
|
|
3046
2934
|
}
|
|
3047
2935
|
export namespace McdSpotter {
|
|
3048
|
-
let
|
|
2936
|
+
let abi_54: {
|
|
3049
2937
|
constant: boolean;
|
|
3050
2938
|
inputs: {
|
|
3051
2939
|
name: string;
|
|
@@ -3060,16 +2948,16 @@ export namespace McdSpotter {
|
|
|
3060
2948
|
stateMutability: string;
|
|
3061
2949
|
type: string;
|
|
3062
2950
|
}[];
|
|
3063
|
-
export {
|
|
3064
|
-
let
|
|
2951
|
+
export { abi_54 as abi };
|
|
2952
|
+
let networks_54: {
|
|
3065
2953
|
"1": {
|
|
3066
2954
|
address: string;
|
|
3067
2955
|
};
|
|
3068
2956
|
};
|
|
3069
|
-
export {
|
|
2957
|
+
export { networks_54 as networks };
|
|
3070
2958
|
}
|
|
3071
2959
|
export namespace McdVat {
|
|
3072
|
-
let
|
|
2960
|
+
let abi_55: ({
|
|
3073
2961
|
inputs: never[];
|
|
3074
2962
|
payable: boolean;
|
|
3075
2963
|
stateMutability: string;
|
|
@@ -3110,16 +2998,16 @@ export namespace McdVat {
|
|
|
3110
2998
|
type: string;
|
|
3111
2999
|
anonymous?: undefined;
|
|
3112
3000
|
})[];
|
|
3113
|
-
export {
|
|
3114
|
-
let
|
|
3001
|
+
export { abi_55 as abi };
|
|
3002
|
+
let networks_55: {
|
|
3115
3003
|
"1": {
|
|
3116
3004
|
address: string;
|
|
3117
3005
|
};
|
|
3118
3006
|
};
|
|
3119
|
-
export {
|
|
3007
|
+
export { networks_55 as networks };
|
|
3120
3008
|
}
|
|
3121
3009
|
export namespace McdJug {
|
|
3122
|
-
let
|
|
3010
|
+
let abi_56: ({
|
|
3123
3011
|
inputs: {
|
|
3124
3012
|
internalType: string;
|
|
3125
3013
|
name: string;
|
|
@@ -3164,16 +3052,16 @@ export namespace McdJug {
|
|
|
3164
3052
|
type: string;
|
|
3165
3053
|
anonymous?: undefined;
|
|
3166
3054
|
})[];
|
|
3167
|
-
export {
|
|
3168
|
-
let
|
|
3055
|
+
export { abi_56 as abi };
|
|
3056
|
+
let networks_56: {
|
|
3169
3057
|
"1": {
|
|
3170
3058
|
address: string;
|
|
3171
3059
|
};
|
|
3172
3060
|
};
|
|
3173
|
-
export {
|
|
3061
|
+
export { networks_56 as networks };
|
|
3174
3062
|
}
|
|
3175
3063
|
export namespace McdDog {
|
|
3176
|
-
let
|
|
3064
|
+
let abi_57: ({
|
|
3177
3065
|
inputs: {
|
|
3178
3066
|
internalType: string;
|
|
3179
3067
|
name: string;
|
|
@@ -3212,16 +3100,16 @@ export namespace McdDog {
|
|
|
3212
3100
|
type: string;
|
|
3213
3101
|
anonymous?: undefined;
|
|
3214
3102
|
})[];
|
|
3215
|
-
export {
|
|
3216
|
-
let
|
|
3103
|
+
export { abi_57 as abi };
|
|
3104
|
+
let networks_57: {
|
|
3217
3105
|
"1": {
|
|
3218
3106
|
address: string;
|
|
3219
3107
|
};
|
|
3220
3108
|
};
|
|
3221
|
-
export {
|
|
3109
|
+
export { networks_57 as networks };
|
|
3222
3110
|
}
|
|
3223
3111
|
export namespace ChickenBondsView {
|
|
3224
|
-
let
|
|
3112
|
+
let abi_58: ({
|
|
3225
3113
|
inputs: never[];
|
|
3226
3114
|
name: string;
|
|
3227
3115
|
outputs: {
|
|
@@ -3251,17 +3139,17 @@ export namespace ChickenBondsView {
|
|
|
3251
3139
|
stateMutability: string;
|
|
3252
3140
|
type: string;
|
|
3253
3141
|
})[];
|
|
3254
|
-
export {
|
|
3255
|
-
let
|
|
3142
|
+
export { abi_58 as abi };
|
|
3143
|
+
let networks_58: {
|
|
3256
3144
|
"1": {
|
|
3257
3145
|
address: string;
|
|
3258
3146
|
createdBlock: number;
|
|
3259
3147
|
};
|
|
3260
3148
|
};
|
|
3261
|
-
export {
|
|
3149
|
+
export { networks_58 as networks };
|
|
3262
3150
|
}
|
|
3263
3151
|
export namespace ChickenBondsManager {
|
|
3264
|
-
let
|
|
3152
|
+
let abi_59: {
|
|
3265
3153
|
inputs: {
|
|
3266
3154
|
internalType: string;
|
|
3267
3155
|
name: string;
|
|
@@ -3276,16 +3164,16 @@ export namespace ChickenBondsManager {
|
|
|
3276
3164
|
stateMutability: string;
|
|
3277
3165
|
type: string;
|
|
3278
3166
|
}[];
|
|
3279
|
-
export {
|
|
3280
|
-
let
|
|
3167
|
+
export { abi_59 as abi };
|
|
3168
|
+
let networks_59: {
|
|
3281
3169
|
"1": {
|
|
3282
3170
|
address: string;
|
|
3283
3171
|
};
|
|
3284
3172
|
};
|
|
3285
|
-
export {
|
|
3173
|
+
export { networks_59 as networks };
|
|
3286
3174
|
}
|
|
3287
3175
|
export namespace COMPPriceFeed {
|
|
3288
|
-
let
|
|
3176
|
+
let abi_60: ({
|
|
3289
3177
|
inputs: {
|
|
3290
3178
|
internalType: string;
|
|
3291
3179
|
name: string;
|
|
@@ -3324,16 +3212,16 @@ export namespace COMPPriceFeed {
|
|
|
3324
3212
|
type: string;
|
|
3325
3213
|
anonymous?: undefined;
|
|
3326
3214
|
})[];
|
|
3327
|
-
export {
|
|
3328
|
-
let
|
|
3215
|
+
export { abi_60 as abi };
|
|
3216
|
+
let networks_60: {
|
|
3329
3217
|
"1": {
|
|
3330
3218
|
address: string;
|
|
3331
3219
|
};
|
|
3332
3220
|
};
|
|
3333
|
-
export {
|
|
3221
|
+
export { networks_60 as networks };
|
|
3334
3222
|
}
|
|
3335
3223
|
export namespace ETHPriceFeed {
|
|
3336
|
-
let
|
|
3224
|
+
let abi_61: ({
|
|
3337
3225
|
inputs: {
|
|
3338
3226
|
internalType: string;
|
|
3339
3227
|
name: string;
|
|
@@ -3372,16 +3260,16 @@ export namespace ETHPriceFeed {
|
|
|
3372
3260
|
type: string;
|
|
3373
3261
|
anonymous?: undefined;
|
|
3374
3262
|
})[];
|
|
3375
|
-
export {
|
|
3376
|
-
let
|
|
3263
|
+
export { abi_61 as abi };
|
|
3264
|
+
let networks_61: {
|
|
3377
3265
|
"1": {
|
|
3378
3266
|
address: string;
|
|
3379
3267
|
};
|
|
3380
3268
|
};
|
|
3381
|
-
export {
|
|
3269
|
+
export { networks_61 as networks };
|
|
3382
3270
|
}
|
|
3383
3271
|
export namespace USDCPriceFeed {
|
|
3384
|
-
let
|
|
3272
|
+
let abi_62: ({
|
|
3385
3273
|
inputs: {
|
|
3386
3274
|
internalType: string;
|
|
3387
3275
|
name: string;
|
|
@@ -3420,11 +3308,11 @@ export namespace USDCPriceFeed {
|
|
|
3420
3308
|
type: string;
|
|
3421
3309
|
anonymous?: undefined;
|
|
3422
3310
|
})[];
|
|
3423
|
-
export {
|
|
3424
|
-
let
|
|
3311
|
+
export { abi_62 as abi };
|
|
3312
|
+
let networks_62: {
|
|
3425
3313
|
"1": {
|
|
3426
3314
|
address: string;
|
|
3427
3315
|
};
|
|
3428
3316
|
};
|
|
3429
|
-
export {
|
|
3317
|
+
export { networks_62 as networks };
|
|
3430
3318
|
}
|