defi-state-querier 0.5.28__py3-none-any.whl → 0.5.30__py3-none-any.whl
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.
- defi_services/__init__.py +1 -1
- defi_services/abis/lending/ionic/__init__.py +0 -0
- defi_services/abis/lending/ionic/ionic_ctoken_abi.py +1108 -0
- defi_services/abis/lending/kinza/__init__.py +0 -0
- defi_services/abis/lending/kinza/kinza_incentive.py +928 -0
- defi_services/abis/lending/kinza/kinza_lending_pool.py +1791 -0
- defi_services/abis/lending/moonwell/__init__.py +0 -0
- defi_services/abis/lending/moonwell/moonwell_comptroller_abi.py +1500 -0
- defi_services/abis/lending/moonwell/moonwell_ctoken_abi.py +1431 -0
- defi_services/abis/lending/radiant_v2/radiant_reward_converter.py +817 -0
- defi_services/abis/lending/seamless/__init__.py +0 -0
- defi_services/abis/lending/seamless/seamless_incentive.py +1049 -0
- defi_services/abis/lending/seamless/seamless_lending_pool.py +1738 -0
- defi_services/abis/lending/seamless/seamless_oracle.py +233 -0
- defi_services/abis/token/trc20_abi.py +304 -0
- defi_services/abis/vault/tcv_abi.py +1523 -0
- defi_services/constants/chain_constant.py +8 -1
- defi_services/constants/entities/dex_info_constant.py +2 -2
- defi_services/constants/entities/dex_services.py +13 -1
- defi_services/constants/entities/lending_constant.py +14 -5
- defi_services/constants/entities/lending_services.py +41 -4
- defi_services/constants/entities/vault_constant.py +2 -2
- defi_services/constants/entities/vault_services.py +7 -1
- defi_services/constants/network_constants.py +20 -361
- defi_services/constants/token_constant.py +3 -1
- defi_services/jobs/processors/cosmos_state_processor.py +3 -2
- defi_services/jobs/processors/ton_state_processor.py +5 -4
- defi_services/jobs/queriers/call_state_querier.py +2 -0
- defi_services/jobs/queriers/state_querier.py +3 -0
- defi_services/jobs/tcv.py +144 -0
- defi_services/services/dex/dex_info/uniswap_info.py +29 -1
- defi_services/services/dex/uniswap_v3_service.py +6 -2
- defi_services/services/lending/aave_v2_services.py +44 -29
- defi_services/services/lending/aave_v3_services.py +41 -20
- defi_services/services/lending/avalon_services.py +34 -0
- defi_services/services/lending/compound_v3_services.py +9 -5
- defi_services/services/lending/granary_services.py +6 -4
- defi_services/services/lending/ionic_service.py +167 -0
- defi_services/services/lending/justlend_service.py +4 -3
- defi_services/services/lending/kinza_services.py +315 -0
- defi_services/services/lending/lending_info/arbitrum/aave_v3_arbitrum.py +1 -1
- defi_services/services/lending/lending_info/arbitrum/compound_v3_arbitrum.py +96 -6
- defi_services/services/lending/lending_info/arbitrum/venus_arbitrum.py +10 -0
- defi_services/services/lending/lending_info/base/__init__.py +0 -0
- defi_services/services/lending/lending_info/base/aave_v3_base.py +61 -0
- defi_services/services/lending/lending_info/base/compound_v3_base.py +116 -0
- defi_services/services/lending/lending_info/base/granary_base.py +62 -0
- defi_services/services/lending/lending_info/base/ionic_base.py +173 -0
- defi_services/services/lending/lending_info/base/moonwell_base.py +89 -0
- defi_services/services/lending/lending_info/base/radiant_v2_base.py +57 -0
- defi_services/services/lending/lending_info/base/seamless_base.py +145 -0
- defi_services/services/lending/lending_info/base/sonne_base.py +53 -0
- defi_services/services/lending/lending_info/base/xlend_base.py +91 -0
- defi_services/services/lending/lending_info/base/zerolend_base.py +109 -0
- defi_services/services/lending/lending_info/bsc/aave_v3_bsc.py +68 -0
- defi_services/services/lending/lending_info/bsc/apeswap_bsc.py +1 -1
- defi_services/services/lending/lending_info/bsc/avalon_bsc.py +75 -0
- defi_services/services/lending/lending_info/bsc/kinza_bsc.py +182 -0
- defi_services/services/lending/lending_info/ethereum/aave_v3_eth.py +1 -140
- defi_services/services/lending/lending_info/ethereum/compound_v3_eth.py +180 -5
- defi_services/services/lending/lending_info/ethereum/kinza_eth.py +119 -0
- defi_services/services/lending/lending_info/ethereum/old_aave_v3_eth.py +150 -0
- defi_services/services/lending/lending_info/ethereum/radiant_eth.py +69 -0
- defi_services/services/lending/lending_info/ethereum/venus_eth.py +10 -0
- defi_services/services/lending/lending_info/ethereum/zerolend_eth.py +96 -0
- defi_services/services/lending/lending_info/optimism/compound_v3_optimism.py +116 -0
- defi_services/services/lending/lending_info/optimism/moonwell_optimism.py +9 -0
- defi_services/services/lending/lending_info/optimism/xlend_optimism.py +112 -0
- defi_services/services/lending/lending_info/polygon/compound_v3_polygon.py +35 -5
- defi_services/services/lending/lending_info/zksync/__init__.py +0 -0
- defi_services/services/lending/lending_info/zksync/aave_v3_zksync.py +47 -0
- defi_services/services/lending/lending_info/zksync/venus_zksync.py +10 -0
- defi_services/services/lending/lending_info/zksync/zerolend_zksync.py +138 -0
- defi_services/services/lending/liqee_service.py +2 -2
- defi_services/services/lending/moonwell_service.py +120 -0
- defi_services/services/lending/morpho_aave_v2_services.py +3 -3
- defi_services/services/lending/morpho_aave_v3_services.py +2 -2
- defi_services/services/lending/onyx_service.py +2 -1
- defi_services/services/lending/radiant_v2_services.py +52 -10
- defi_services/services/lending/seamless_services.py +313 -0
- defi_services/services/lending/sonne_service.py +64 -0
- defi_services/services/lending/trava_services.py +2 -2
- defi_services/services/lending/uwu_services.py +3 -3
- defi_services/services/lending/valas_services.py +2 -2
- defi_services/services/lending/venus_services.py +9 -3
- defi_services/services/lending/xlend_services.py +325 -0
- defi_services/services/lending/zerolend_services.py +36 -0
- defi_services/services/multicall/multicall_v2.py +0 -317
- defi_services/services/vault/tcv_vault_services.py +108 -0
- defi_services/services/vault/vault_info/arbitrum/__init__.py +0 -0
- defi_services/services/vault/vault_info/arbitrum/tcv_arb.py +58 -0
- {defi_state_querier-0.5.28.dist-info → defi_state_querier-0.5.30.dist-info}/METADATA +1 -1
- {defi_state_querier-0.5.28.dist-info → defi_state_querier-0.5.30.dist-info}/RECORD +103 -49
- /defi_services/abis/lending/{aave_v2_and_forlks → aave_v2_and_forks}/__init__.py +0 -0
- /defi_services/abis/lending/{aave_v2_and_forlks → aave_v2_and_forks}/aave_v2_event_abi.py +0 -0
- /defi_services/abis/lending/{aave_v2_and_forlks → aave_v2_and_forks}/aave_v2_incentives_abi.py +0 -0
- /defi_services/abis/lending/{aave_v2_and_forlks → aave_v2_and_forks}/lending_pool_abi.py +0 -0
- /defi_services/abis/lending/{aave_v2_and_forlks → aave_v2_and_forks}/oracle_abi.py +0 -0
- /defi_services/abis/lending/{aave_v2_and_forlks → aave_v2_and_forks}/staked_incentives_abi.py +0 -0
- /defi_services/abis/lending/{aave_v2_and_forlks → aave_v2_and_forks}/uwu_incentives_abi.py +0 -0
- {defi_state_querier-0.5.28.dist-info → defi_state_querier-0.5.30.dist-info}/WHEEL +0 -0
- {defi_state_querier-0.5.28.dist-info → defi_state_querier-0.5.30.dist-info}/licenses/LICENSE +0 -0
- {defi_state_querier-0.5.28.dist-info → defi_state_querier-0.5.30.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,182 @@
|
|
1
|
+
KINZA_BSC = {
|
2
|
+
"address": "0xcb0620b181140e57d1c0d8b724cde623ca963c8c",
|
3
|
+
"name": "Kinza Lending Pool",
|
4
|
+
"addressProvider": "0xca20a50ea454bd9f37a895182ff3309f251fd7ce",
|
5
|
+
"dataProvider": "0x09ddc4ae826601b0f9671b9edffdf75e7e6f5d61",
|
6
|
+
"stakedIncentiveAddress": "0x30b1a8c1a4a9dd9146d1166f992f4e1962683a67",
|
7
|
+
"rewardTokensList": [],
|
8
|
+
"oracleAddress": "0xec203e7676c45455bf8cb43d28f9556f014ab461",
|
9
|
+
"type": "LENDING_POOL",
|
10
|
+
"poolToken": "0x9356f6d95b8e109f4b7ce3e49d672967d3b48383",
|
11
|
+
"forked": "aave-v3",
|
12
|
+
"reservesList": {
|
13
|
+
"0xe9e7cea3dedca5984780bafc599bd69add087d56": {
|
14
|
+
"tToken": "0x77800d2550d1115fb2cdbff440f85d98a1792139",
|
15
|
+
"sdToken": "0x985a6ce1d8a6fd51fad7685b36f278a1a85d4503",
|
16
|
+
"dToken": "0x1e91220b7321767a7b1c2ba7584ee32bbbf278fd",
|
17
|
+
"loanToValue": 0.0,
|
18
|
+
"liquidationThreshold": 0.8
|
19
|
+
},
|
20
|
+
"0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d": {
|
21
|
+
"tToken": "0x26c8c9d74eae6182316b30de9ac60e2adc9f4a04",
|
22
|
+
"sdToken": "0xdbfd649a8d5427d32742cc82e7ced5e81e42f74d",
|
23
|
+
"dToken": "0x6dadaaf2d4a191db51854a60e4a6e23d3776eb16",
|
24
|
+
"loanToValue": 0.75,
|
25
|
+
"liquidationThreshold": 0.8
|
26
|
+
},
|
27
|
+
"0x55d398326f99059ff775485246999027b3197955": {
|
28
|
+
"tToken": "0xa1c7f76cbcdb87b17abf825ec2b5a1eb823e26f1",
|
29
|
+
"sdToken": "0x2e9481be233bb47a4bc79a4dba55d1dabde6c687",
|
30
|
+
"dToken": "0xb82c3631081ee5d1339e77b46c3e476f1fdd4a19",
|
31
|
+
"loanToValue": 0.75,
|
32
|
+
"liquidationThreshold": 0.8
|
33
|
+
},
|
34
|
+
"0x40af3827f39d0eacbf4a168f8d4ee67c121d11c9": {
|
35
|
+
"tToken": "0xc65132d8289d39bccc3b0e72a8b901b8b180e7d9",
|
36
|
+
"sdToken": "0xfe59cf48605c6280065a30e54d223cb8fb232c66",
|
37
|
+
"dToken": "0x0158d5a1d32f96f4ce68bed28f9addb0c43361e5",
|
38
|
+
"loanToValue": 0.0,
|
39
|
+
"liquidationThreshold": 0.8
|
40
|
+
},
|
41
|
+
"0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c": {
|
42
|
+
"tToken": "0x95aae09ad8557126b169056b9bd0ff6b5456239d",
|
43
|
+
"sdToken": "0xb4f997e78cf3b1b69aa69f786303939f322dfad0",
|
44
|
+
"dToken": "0x2682bd101e64f0367d3ac1261eb311eed8b7f751",
|
45
|
+
"loanToValue": 0.7,
|
46
|
+
"liquidationThreshold": 0.75
|
47
|
+
},
|
48
|
+
"0x2170ed0880ac9a755fd29b2688956bd959f933f8": {
|
49
|
+
"tToken": "0xfd087dd64fb79e749fd8c85c64096144118b9554",
|
50
|
+
"sdToken": "0xc8f32e6d09cab228467971dc63baca9ec48b3695",
|
51
|
+
"dToken": "0xb5d9e75141dc6c264666782fa31c1b4330a5e6b4",
|
52
|
+
"loanToValue": 0.7,
|
53
|
+
"liquidationThreshold": 0.75
|
54
|
+
},
|
55
|
+
"0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c": {
|
56
|
+
"tToken": "0xf5e0adda6fb191a332a787deedfd2cffc72dba0c",
|
57
|
+
"sdToken": "0x098591e7f7051388d5ad79146161105288bc73df",
|
58
|
+
"dToken": "0xeabcda7cfb0780a028c1fd1162e52942b96fbe10",
|
59
|
+
"loanToValue": 0.7,
|
60
|
+
"liquidationThreshold": 0.75
|
61
|
+
},
|
62
|
+
"0xa2e3356610840701bdf5611a53974510ae27e2e1": {
|
63
|
+
"tToken": "0xb98eaf6ca73c13c7533daa722223e3dc32dd0ee5",
|
64
|
+
"sdToken": "0xee50f476af1c599a9b8ddbe1951f6b039e327994",
|
65
|
+
"dToken": "0xb9755ecea9bb7080414b0a3a4c9504f985f3f9ad",
|
66
|
+
"loanToValue": 0.7,
|
67
|
+
"liquidationThreshold": 0.8
|
68
|
+
},
|
69
|
+
"0x0782b6d8c4551b9760e74c0545a9bcd90bdc41e5": {
|
70
|
+
"tToken": "0xc16bbfba00a2264aab2883c49d53833f42c80b95",
|
71
|
+
"sdToken": "0x85305e89cbf53744c59fd04c8a2513dd67aff724",
|
72
|
+
"dToken": "0x00107060f34b437c5a7daf6c247e6329cf613759",
|
73
|
+
"loanToValue": 0.75,
|
74
|
+
"liquidationThreshold": 0.8
|
75
|
+
},
|
76
|
+
"0xb0b84d294e0c75a6abe60171b70edeb2efd14a1b": {
|
77
|
+
"tToken": "0xa79befa293c06396dc49f5f80c07c2f44862eefc",
|
78
|
+
"sdToken": "0xc80dffb9f13790e599af13829ded8b2125557037",
|
79
|
+
"dToken": "0xee302680c91ea5773c7dc11f6d4a4096f22c1f04",
|
80
|
+
"loanToValue": 0.0,
|
81
|
+
"liquidationThreshold": 0.75
|
82
|
+
},
|
83
|
+
"0xeeaa03ed0aa69fcb6e340d47ffa91a0b3426e1cd": {
|
84
|
+
"tToken": "0x38fc72e24ea7372c9f9d842467c629680cdb6cbc",
|
85
|
+
"sdToken": "0x79d382b572df5f4a0c8cee50a05595dbb8ace3ce",
|
86
|
+
"dToken": "0xb0298302028681e5d71f1e469842b3e4eafed04b",
|
87
|
+
"loanToValue": 0.75,
|
88
|
+
"liquidationThreshold": 0.8
|
89
|
+
},
|
90
|
+
"0x45b817b36cadba2c3b6c2427db5b22e2e65400dd": {
|
91
|
+
"tToken": "0xeeaa5aa3388d6a2796ac815447a301607b52d25f",
|
92
|
+
"sdToken": "0x8d20545bf6bfd29024d018062a06903276c6c683",
|
93
|
+
"dToken": "0x23cfae853cdf08d3efe4817e2016dbe47b937d35",
|
94
|
+
"loanToValue": 0.75,
|
95
|
+
"liquidationThreshold": 0.8
|
96
|
+
},
|
97
|
+
"0xcee8c9ccd07ac0981ef42f80fb63df3cc36f196e": {
|
98
|
+
"tToken": "0xc5606c8a773f4399d52391830522f113a1448404",
|
99
|
+
"sdToken": "0x78625bdf48c2905fa30a53fa43816076a756ea6a",
|
100
|
+
"dToken": "0x658823636ba31060382ea01cebb9b6b3ffe80985",
|
101
|
+
"loanToValue": 0.7,
|
102
|
+
"liquidationThreshold": 0.75
|
103
|
+
},
|
104
|
+
"0x2dd73dcc565761b684c56908fa01ac270a03f70f": {
|
105
|
+
"tToken": "0x9f65da9bd6bc7d14eacff42e918344784dfc2384",
|
106
|
+
"sdToken": "0xb9c9db2ee269bf6a155eae9060e769f13bc1daab",
|
107
|
+
"dToken": "0x0d2ef920e4ddf573266ef9b6304407b64127e8b7",
|
108
|
+
"loanToValue": 0.7,
|
109
|
+
"liquidationThreshold": 0.75
|
110
|
+
},
|
111
|
+
"0xf0daf89f387d9d4ac5e3326eadb20e7bec0ffc7c": {
|
112
|
+
"tToken": "0x294c4a3eb851e7b6d296a5e8a250ade2a24dc40d",
|
113
|
+
"sdToken": "0x3810f111fb7e5861e5f66a8922758936c9a841ab",
|
114
|
+
"dToken": "0x2a1431415f9f729c557e6c817eb80791e9d2c974",
|
115
|
+
"loanToValue": 0.7,
|
116
|
+
"liquidationThreshold": 0.75
|
117
|
+
},
|
118
|
+
"0xc5f0f7b66764f6ec8c8dff7ba683102295e16409": {
|
119
|
+
"tToken": "0x8473168406d620b5cf2fc55e80b6d331e737d2e1",
|
120
|
+
"sdToken": "0x17ce8aa97fb745bfb595ee5db22dfbdf41e68074",
|
121
|
+
"dToken": "0x74afc76da686cac5ec786566e128cfe61822c055",
|
122
|
+
"loanToValue": 0.75,
|
123
|
+
"liquidationThreshold": 0.8
|
124
|
+
},
|
125
|
+
"0x2416092f143378750bb29b79ed961ab195cceea5": {
|
126
|
+
"tToken": "0x19136a96b202685a2768eb99068adf3341414bdb",
|
127
|
+
"sdToken": "0x8e48fa01c17760bc91de60af8af8a43b505f57a5",
|
128
|
+
"dToken": "0xed692ba8dfabddcaeac2bb76f833e00906824874",
|
129
|
+
"loanToValue": 0.8,
|
130
|
+
"liquidationThreshold": 0.85
|
131
|
+
},
|
132
|
+
"0x80137510979822322193fc997d400d5a6c747bf7": {
|
133
|
+
"tToken": "0x96619fc54940e4147f2445b06be857e8f11f5e8a",
|
134
|
+
"sdToken": "0x41266eda9adecdece2cba377992c31cc2327db88",
|
135
|
+
"dToken": "0xd197294763a82b930ab578491dfbd293846f759e",
|
136
|
+
"loanToValue": 0.65,
|
137
|
+
"liquidationThreshold": 0.7
|
138
|
+
},
|
139
|
+
"0x64274835d88f5c0215da8aadd9a5f2d2a2569381": {
|
140
|
+
"tToken": "0x9c6fae23fdfffbe1199babb11bc9a6859493a5a1",
|
141
|
+
"sdToken": "0x8ddc850430d96aa537bb5053950c9e031eed4b00",
|
142
|
+
"dToken": "0x9cf92292c4d58745964c7ea076950438f519f3fb",
|
143
|
+
"loanToValue": 0.75,
|
144
|
+
"liquidationThreshold": 0.8
|
145
|
+
},
|
146
|
+
"0x4aae823a6a0b376de6a78e74ecc5b079d38cbcf7": {
|
147
|
+
"tToken": "0x446b2ab906c20f9aea62b03c86b332004eceaadc",
|
148
|
+
"sdToken": "0xd28cbc4a9fdcd05c75083a0412477f0e949cb653",
|
149
|
+
"dToken": "0xa66ae2356735ec9cd35ede3ed87e556561ce462a",
|
150
|
+
"loanToValue": 0.775,
|
151
|
+
"liquidationThreshold": 0.825
|
152
|
+
},
|
153
|
+
"0x0e09fabb73bd3ade0a17ecc321fd13a19e81ce82": {
|
154
|
+
"tToken": "0xa8d9bfcd2b4bb9c30794ad7d49ab1b8da2b9f700",
|
155
|
+
"sdToken": "0x8ede75b9793d258a31f7911be84c1c80d7962e79",
|
156
|
+
"dToken": "0x55371316eb587078c5576f0f24597b1e92c5b208",
|
157
|
+
"loanToValue": 0.6,
|
158
|
+
"liquidationThreshold": 0.65
|
159
|
+
},
|
160
|
+
"0x1346b618dc92810ec74163e4c27004c921d446a5": {
|
161
|
+
"tToken": "0xe0169336403f03922bbf66ca01394e4191b87c78",
|
162
|
+
"sdToken": "0x29185275606acd18fe52d0df0ea8132c9c859635",
|
163
|
+
"dToken": "0x910d7ce736ee2e7f108ad2fffea66d19a8179cbb",
|
164
|
+
"loanToValue": 0.775,
|
165
|
+
"liquidationThreshold": 0.825
|
166
|
+
},
|
167
|
+
"0xf6718b2701d4a6498ef77d7c152b2137ab28b8a3": {
|
168
|
+
"tToken": "0xe4c60c28943a7d8945683d5a6c15f59280a0d29e",
|
169
|
+
"sdToken": "0x063aa144af15367ab566913c2f4f41244a8630a4",
|
170
|
+
"dToken": "0xe3c7183648dcae991425fe22117b37aca7e91d3f",
|
171
|
+
"loanToValue": 0.775,
|
172
|
+
"liquidationThreshold": 0.825
|
173
|
+
},
|
174
|
+
"0x23ae4fd8e7844cdbc97775496ebd0e8248656028": {
|
175
|
+
"tToken": "0xc390614e71512b2aa9d91afa7e183cb00eb92518",
|
176
|
+
"sdToken": "0xe188c03d384208551de30a748c6d870a9201c535",
|
177
|
+
"dToken": "0xa5b7da4e275b1e8a5fa0b5c9088a937af5d565d2",
|
178
|
+
"loanToValue": 0.7,
|
179
|
+
"liquidationThreshold": 0.75
|
180
|
+
}
|
181
|
+
}
|
182
|
+
}
|
@@ -7,144 +7,5 @@ AAVE_V3_ETH = {
|
|
7
7
|
"type": "LENDING_POOL",
|
8
8
|
"poolToken": "0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9",
|
9
9
|
"forked": "aave-v3",
|
10
|
-
"reservesList": {
|
11
|
-
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
12
|
-
"tToken": "0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8",
|
13
|
-
"sdToken": "0x102633152313c81cd80419b6ecf66d14ad68949a",
|
14
|
-
"dToken": "0xea51d7853eefb32b6ee06b1c12e6dcca88be0ffe",
|
15
|
-
"liquidationThreshold": 0.83
|
16
|
-
},
|
17
|
-
"0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
|
18
|
-
"tToken": "0x0b925ed163218f6662a35e0f0371ac234f9e9371",
|
19
|
-
"sdToken": "0x39739943199c0fbfe9e5f1b5b160cd73a64cb85d",
|
20
|
-
"dToken": "0xc96113eed8cab59cd8a66813bcb0ceb29f06d2e4",
|
21
|
-
"liquidationThreshold": 0.81
|
22
|
-
},
|
23
|
-
"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
|
24
|
-
"tToken": "0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8",
|
25
|
-
"sdToken": "0xa1773f1ccf6db192ad8fe826d15fe1d328b03284",
|
26
|
-
"dToken": "0x40aabef1aa8f0eec637e0e7d92fbffb2f26a8b7b",
|
27
|
-
"liquidationThreshold": 0.78
|
28
|
-
},
|
29
|
-
"0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48": {
|
30
|
-
"tToken": "0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c",
|
31
|
-
"sdToken": "0xb0fe3d292f4bd50de902ba5bdf120ad66e9d7a39",
|
32
|
-
"dToken": "0x72e95b8931767c79ba4eee721354d6e99a61d004",
|
33
|
-
"liquidationThreshold": 0.8
|
34
|
-
},
|
35
|
-
"0x6b175474e89094c44da98b954eedeac495271d0f": {
|
36
|
-
"tToken": "0x018008bfb33d285247a21d44e50697654f754e63",
|
37
|
-
"sdToken": "0x413adac9e2ef8683adf5ddaece8f19613d60d1bb",
|
38
|
-
"dToken": "0xcf8d0c70c850859266f5c338b38f9d663181c314",
|
39
|
-
"liquidationThreshold": 0.8
|
40
|
-
},
|
41
|
-
"0x514910771af9ca656af840dff83e8264ecf986ca": {
|
42
|
-
"tToken": "0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a",
|
43
|
-
"sdToken": "0x63b1129ca97d2b9f97f45670787ac12a9df1110a",
|
44
|
-
"dToken": "0x4228f8895c7dda20227f6a5c6751b8ebf19a6ba8",
|
45
|
-
"liquidationThreshold": 0.68
|
46
|
-
},
|
47
|
-
"0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9": {
|
48
|
-
"tToken": "0xa700b4eb416be35b2911fd5dee80678ff64ff6c9",
|
49
|
-
"sdToken": "0x268497bf083388b1504270d0e717222d3a87d6f2",
|
50
|
-
"dToken": "0xbae535520abd9f8c85e58929e0006a2c8b372f74",
|
51
|
-
"liquidationThreshold": 0.73
|
52
|
-
},
|
53
|
-
"0xbe9895146f7af43049ca1c1ae358b0541ea49704": {
|
54
|
-
"tToken": "0x977b6fc5de62598b08c85ac8cf2b745874e8b78c",
|
55
|
-
"sdToken": "0x82be6012cea6d147b968ebaea5ceecf6a5b4f493",
|
56
|
-
"dToken": "0x0c91bca95b5fe69164ce583a2ec9429a569798ed",
|
57
|
-
"liquidationThreshold": 0.77
|
58
|
-
},
|
59
|
-
"0xdac17f958d2ee523a2206206994597c13d831ec7": {
|
60
|
-
"tToken": "0x23878914efe38d27c4d67ab83ed1b93a74d4086a",
|
61
|
-
"sdToken": "0x822fa72df1f229c3900f5ad6c3fa2c424d691622",
|
62
|
-
"dToken": "0x6df1c1e379bc5a00a7b4c6e67a203333772f45a8",
|
63
|
-
"liquidationThreshold": 0.76
|
64
|
-
},
|
65
|
-
"0xae78736cd615f374d3085123a210448e74fc6393": {
|
66
|
-
"tToken": "0xcc9ee9483f662091a1de4795249e24ac0ac2630f",
|
67
|
-
"sdToken": "0x1d1906f909cae494c7441604dafdddbd0485a925",
|
68
|
-
"dToken": "0xae8593dd575fe29a9745056aa91c4b746eee62c8",
|
69
|
-
"liquidationThreshold": 0.77
|
70
|
-
},
|
71
|
-
"0x5f98805a4e8be255a32880fdec7f6728c6568ba0": {
|
72
|
-
"tToken": "0x3fe6a295459fae07df8a0cecc36f37160fe86aa9",
|
73
|
-
"sdToken": "0x37a6b708fdb1483c231961b9a7f145261e815fc3",
|
74
|
-
"dToken": "0x33652e48e4b74d18520f11bfe58edd2ed2cec5a2",
|
75
|
-
"liquidationThreshold": 0.8
|
76
|
-
},
|
77
|
-
"0xd533a949740bb3306d119cc777fa900ba034cd52": {
|
78
|
-
"tToken": "0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65",
|
79
|
-
"sdToken": "0x90d9cd005e553111eb8c9c31abe9706a186b6048",
|
80
|
-
"dToken": "0x1b7d3f4b3c032a5ae656e30eea4e8e1ba376068f",
|
81
|
-
"liquidationThreshold": 0.41
|
82
|
-
},
|
83
|
-
"0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2": {
|
84
|
-
"tToken": "0x8a458a9dc9048e005d22849f470891b840296619",
|
85
|
-
"sdToken": "0x0496372be7e426d28e89debf01f19f014d5938be",
|
86
|
-
"dToken": "0x6efc73e54e41b27d2134ff9f98f15550f30df9b1",
|
87
|
-
"liquidationThreshold": 0.7
|
88
|
-
},
|
89
|
-
"0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f": {
|
90
|
-
"tToken": "0xc7b4c17861357b8abb91f25581e7263e08dcb59c",
|
91
|
-
"sdToken": "0x478e1ec1a2beed94c1407c951e4b9e22d53b2501",
|
92
|
-
"dToken": "0x8d0de040e8aad872ec3c33a3776de9152d3c34ca",
|
93
|
-
"liquidationThreshold": 0.65
|
94
|
-
},
|
95
|
-
"0xba100000625a3754423978a60c9317c58a424e3d": {
|
96
|
-
"tToken": "0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8",
|
97
|
-
"sdToken": "0xb368d45aaaa07ee2c6275cb320d140b22de43cdd",
|
98
|
-
"dToken": "0x3d3efceb4ff0966d34d9545d3a2fa2dcdbf451f2",
|
99
|
-
"liquidationThreshold": 0.62
|
100
|
-
},
|
101
|
-
"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": {
|
102
|
-
"tToken": "0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18",
|
103
|
-
"sdToken": "0x2fec76324a0463c46f32e74a86d1cf94c02158dc",
|
104
|
-
"dToken": "0xf64178ebd2e2719f2b1233bcb5ef6db4bcc4d09a",
|
105
|
-
"liquidationThreshold": 0.77
|
106
|
-
},
|
107
|
-
"0x5a98fcbea516cf06857215779fd812ca3bef1b32": {
|
108
|
-
"tToken": "0x9a44fd41566876a39655f74971a3a6ea0a17a454",
|
109
|
-
"sdToken": "0xa0a5bf5781aeb548db9d4226363b9e89287c5fd2",
|
110
|
-
"dToken": "0xc30808705c01289a3d306ca9cab081ba9114ec82",
|
111
|
-
"liquidationThreshold": 0.5
|
112
|
-
},
|
113
|
-
"0xc18360217d8f7ab5e7c516566761ea12ce7f9d72": {
|
114
|
-
"tToken": "0x545bd6c032efdde65a377a6719def2796c8e0f2e",
|
115
|
-
"sdToken": "0x7617d02e311cde347a0cb45bb7df2926bbaf5347",
|
116
|
-
"dToken": "0xd180d7fdd4092f07428efe801e17bc03576b3192",
|
117
|
-
"liquidationThreshold": 0.49
|
118
|
-
},
|
119
|
-
"0x111111111117dc0aa78b770fa6a738034120c302": {
|
120
|
-
"tToken": "0x71aef7b30728b9bb371578f36c5a1f1502a5723e",
|
121
|
-
"sdToken": "0x4b62bfaff61ab3985798e5202d2d167f567d0bcd",
|
122
|
-
"dToken": "0xa38fca8c6bf9bda52e76eb78f08caa3be7c5a970",
|
123
|
-
"liquidationThreshold": 0.67
|
124
|
-
},
|
125
|
-
"0x853d955acef822db058eb8505911ed77f175b99e": {
|
126
|
-
"tToken": "0xd4e245848d6e1220dbe62e155d89fa327e43cb06",
|
127
|
-
"sdToken": "0x219640546c0dfddcb9ab3bcda89b324e0a376367",
|
128
|
-
"dToken": "0x88b8358f5bc87c2d7e116cca5b65a9eeb2c5ea3f",
|
129
|
-
"liquidationThreshold": 0.75
|
130
|
-
},
|
131
|
-
"0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f": {
|
132
|
-
"tToken": "0x00907f9921424583e7ffbfedf84f92b7b2be4977",
|
133
|
-
"sdToken": "0x3f3df7266da30102344a813f1a3d07f5f041b5ac",
|
134
|
-
"dToken": "0x786dbff3f1292ae8f92ea68cf93c30b34b1ed04b",
|
135
|
-
"liquidationThreshold": 0.0
|
136
|
-
},
|
137
|
-
"0xd33526068d116ce69f19a9ee46f0bd304f21a51f": {
|
138
|
-
"tToken": "0xb76cf92076adbf1d9c39294fa8e7a67579fde357",
|
139
|
-
"sdToken": "0x41e330fd8f7ea31e2e8f02cc0c9392d1403597b4",
|
140
|
-
"dToken": "0x8988eca19d502fd8b9ccd03fa3bd20a6f599bc2a",
|
141
|
-
"liquidationThreshold": 0.0
|
142
|
-
},
|
143
|
-
"0x83f20f44975d03b1b09e64809b757c47f942beea": {
|
144
|
-
"tToken": "0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c",
|
145
|
-
"sdToken": "0x48bc45f084988bc01933ea93eeffebc0416534f6",
|
146
|
-
"dToken": "0x8db9d35e117d8b93c6ca9b644b25bad5d9908141",
|
147
|
-
"liquidationThreshold": 0.8
|
148
|
-
}
|
149
|
-
}
|
10
|
+
"reservesList": {'0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2': {'tToken': '0x4d5f47fa6a74757f35c14fd3a6ef8e3c9bc514e8', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xea51d7853eefb32b6ee06b1c12e6dcca88be0ffe', 'loanToValue': 0.805, 'liquidationThreshold': 0.83}, '0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0': {'tToken': '0x0b925ed163218f6662a35e0f0371ac234f9e9371', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xc96113eed8cab59cd8a66813bcb0ceb29f06d2e4', 'loanToValue': 0.785, 'liquidationThreshold': 0.81}, '0x2260fac5e5542a773aa44fbcfedf7c193bc2c599': {'tToken': '0x5ee5bf7ae06d1be5997a1a72006fe6c607ec6de8', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x40aabef1aa8f0eec637e0e7d92fbffb2f26a8b7b', 'loanToValue': 0.73, 'liquidationThreshold': 0.78}, '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48': {'tToken': '0x98c23e9d8f34fefb1b7bd6a91b7ff122f4e16f5c', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x72e95b8931767c79ba4eee721354d6e99a61d004', 'loanToValue': 0.75, 'liquidationThreshold': 0.78}, '0x6b175474e89094c44da98b954eedeac495271d0f': {'tToken': '0x018008bfb33d285247a21d44e50697654f754e63', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xcf8d0c70c850859266f5c338b38f9d663181c314', 'loanToValue': 0.63, 'liquidationThreshold': 0.77}, '0x514910771af9ca656af840dff83e8264ecf986ca': {'tToken': '0x5e8c8a7243651db1384c0ddfdbe39761e8e7e51a', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x4228f8895c7dda20227f6a5c6751b8ebf19a6ba8', 'loanToValue': 0.66, 'liquidationThreshold': 0.71}, '0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9': {'tToken': '0xa700b4eb416be35b2911fd5dee80678ff64ff6c9', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xbae535520abd9f8c85e58929e0006a2c8b372f74', 'loanToValue': 0.66, 'liquidationThreshold': 0.73}, '0xbe9895146f7af43049ca1c1ae358b0541ea49704': {'tToken': '0x977b6fc5de62598b08c85ac8cf2b745874e8b78c', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x0c91bca95b5fe69164ce583a2ec9429a569798ed', 'loanToValue': 0.75, 'liquidationThreshold': 0.79}, '0xdac17f958d2ee523a2206206994597c13d831ec7': {'tToken': '0x23878914efe38d27c4d67ab83ed1b93a74d4086a', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x6df1c1e379bc5a00a7b4c6e67a203333772f45a8', 'loanToValue': 0.75, 'liquidationThreshold': 0.78}, '0xae78736cd615f374d3085123a210448e74fc6393': {'tToken': '0xcc9ee9483f662091a1de4795249e24ac0ac2630f', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xae8593dd575fe29a9745056aa91c4b746eee62c8', 'loanToValue': 0.75, 'liquidationThreshold': 0.79}, '0x5f98805a4e8be255a32880fdec7f6728c6568ba0': {'tToken': '0x3fe6a295459fae07df8a0cecc36f37160fe86aa9', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x33652e48e4b74d18520f11bfe58edd2ed2cec5a2', 'loanToValue': 0.0, 'liquidationThreshold': 0.77}, '0xd533a949740bb3306d119cc777fa900ba034cd52': {'tToken': '0x7b95ec873268a6bfc6427e7a28e396db9d0ebc65', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x1b7d3f4b3c032a5ae656e30eea4e8e1ba376068f', 'loanToValue': 0.35, 'liquidationThreshold': 0.41}, '0x9f8f72aa9304c8b593d555f12ef6589cc3a579a2': {'tToken': '0x8a458a9dc9048e005d22849f470891b840296619', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x6efc73e54e41b27d2134ff9f98f15550f30df9b1', 'loanToValue': 0.65, 'liquidationThreshold': 0.7}, '0xc011a73ee8576fb46f5e1c5751ca3b9fe0af2a6f': {'tToken': '0xc7b4c17861357b8abb91f25581e7263e08dcb59c', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x8d0de040e8aad872ec3c33a3776de9152d3c34ca', 'loanToValue': 0.49, 'liquidationThreshold': 0.65}, '0xba100000625a3754423978a60c9317c58a424e3d': {'tToken': '0x2516e7b3f76294e03c42aa4c5b5b4dce9c436fb8', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x3d3efceb4ff0966d34d9545d3a2fa2dcdbf451f2', 'loanToValue': 0.57, 'liquidationThreshold': 0.59}, '0x1f9840a85d5af5bf1d1762f925bdaddc4201f984': {'tToken': '0xf6d2224916ddfbbab6e6bd0d1b7034f4ae0cab18', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xf64178ebd2e2719f2b1233bcb5ef6db4bcc4d09a', 'loanToValue': 0.65, 'liquidationThreshold': 0.74}, '0x5a98fcbea516cf06857215779fd812ca3bef1b32': {'tToken': '0x9a44fd41566876a39655f74971a3a6ea0a17a454', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xc30808705c01289a3d306ca9cab081ba9114ec82', 'loanToValue': 0.4, 'liquidationThreshold': 0.5}, '0xc18360217d8f7ab5e7c516566761ea12ce7f9d72': {'tToken': '0x545bd6c032efdde65a377a6719def2796c8e0f2e', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xd180d7fdd4092f07428efe801e17bc03576b3192', 'loanToValue': 0.39, 'liquidationThreshold': 0.49}, '0x111111111117dc0aa78b770fa6a738034120c302': {'tToken': '0x71aef7b30728b9bb371578f36c5a1f1502a5723e', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xa38fca8c6bf9bda52e76eb78f08caa3be7c5a970', 'loanToValue': 0.57, 'liquidationThreshold': 0.67}, '0x853d955acef822db058eb8505911ed77f175b99e': {'tToken': '0xd4e245848d6e1220dbe62e155d89fa327e43cb06', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x88b8358f5bc87c2d7e116cca5b65a9eeb2c5ea3f', 'loanToValue': 0.0, 'liquidationThreshold': 0.72}, '0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f': {'tToken': '0x00907f9921424583e7ffbfedf84f92b7b2be4977', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x786dbff3f1292ae8f92ea68cf93c30b34b1ed04b', 'loanToValue': 0.0, 'liquidationThreshold': 0.0}, '0xd33526068d116ce69f19a9ee46f0bd304f21a51f': {'tToken': '0xb76cf92076adbf1d9c39294fa8e7a67579fde357', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x8988eca19d502fd8b9ccd03fa3bd20a6f599bc2a', 'loanToValue': 0.0, 'liquidationThreshold': 0.0}, '0x83f20f44975d03b1b09e64809b757c47f942beea': {'tToken': '0x4c612e3b15b96ff9a6faed838f8d07d479a8dd4c', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x8db9d35e117d8b93c6ca9b644b25bad5d9908141', 'loanToValue': 0.75, 'liquidationThreshold': 0.78}, '0xaf5191b0de278c7286d6c7cc6ab6bb8a73ba2cd6': {'tToken': '0x1ba9843bd4327c6c77011406de5fa8749f7e3479', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x655568bdd6168325ec7e58bf39b21a856f906dc2', 'loanToValue': 0.0, 'liquidationThreshold': 0.37}, '0xdefa4e8a7bcba345f687a2f1456f5edd9ce97202': {'tToken': '0x5b502e3796385e1e9755d7043b9c945c3accec9c', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x253127ffc04981cea8932f406710661c2f2c3fd2', 'loanToValue': 0.0, 'liquidationThreshold': 0.37}, '0x3432b6a60d23ca0dfca7761b7ab56459d9c964d0': {'tToken': '0x82f9c5ad306bba1ad0de49bb5fa6f01bf61085ef', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x68e9f0ad4e6f8f5db70f6923d4d6d5b225b83b16', 'loanToValue': 0.0, 'liquidationThreshold': 0.42}, '0xf939e0a03fb07f59a73314e73794be0e57ac1b4e': {'tToken': '0xb82fa9f31612989525992fcfbb09ab22eff5c85a', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x028f7886f3e937f8479efad64f31b3fe1119857a', 'loanToValue': 0.0, 'liquidationThreshold': 0.0}, '0x6c3ea9036406852006290770bedfcaba0e23a0e8': {'tToken': '0x0c0d01abf3e6adfca0989ebba9d6e85dd58eab1e', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x57b67e4de077085fd0af2174e9c14871be664546', 'loanToValue': 0.0, 'liquidationThreshold': 0.0}, '0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee': {'tToken': '0xbdfa7b7893081b35fb54027489e2bc7a38275129', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x77ad9bf13a52517ad698d65913e8d381300c8bf3', 'loanToValue': 0.725, 'liquidationThreshold': 0.75}, '0xf1c9acdc66974dfb6decb12aa385b9cd01190e38': {'tToken': '0x927709711794f3de5ddbf1d176bee2d55ba13c21', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x8838eeff2af391863e1bb8b1df563f86743a8470', 'loanToValue': 0.725, 'liquidationThreshold': 0.75}, '0x4c9edd5852cd905f086c759e8383e09bff1e68b3': {'tToken': '0x4f5923fc5fd4a93352581b38b7cd26943012decf', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x015396e1f286289ae23a762088e863b3ec465145', 'loanToValue': 0.72, 'liquidationThreshold': 0.75}, '0xa35b1b31ce002fbf2058d22f30f95d405200a15b': {'tToken': '0x1c0e06a0b1a4c160c17545ff2a951bfca57c0002', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x08a8dc81aea67f84745623ac6c72cda3967aab8b', 'loanToValue': 0.745, 'liquidationThreshold': 0.77}, '0x9d39a5de30e57443bff2a8307a4256c8797a3497': {'tToken': '0x4579a27af00a62c0eb156349f31b345c08386419', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xeffde9bfa8ec77c14c364055a200746d6e12bed6', 'loanToValue': 0.72, 'liquidationThreshold': 0.75}, '0x18084fba666a33d37592fa2633fd49a74dd93a88': {'tToken': '0x10ac93971cdb1f5c778144084242374473c350da', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xac50890a80a2731eb1ea2e9b4f29569ceb06d960', 'loanToValue': 0.73, 'liquidationThreshold': 0.78}, '0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf': {'tToken': '0x5c647ce0ae10658ec44fa4e11a51c96e94efd1dd', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0xeb284a70557efe3591b9e6d9d720040e02c54a4d', 'loanToValue': 0.73, 'liquidationThreshold': 0.78}, '0xdc035d45d973e3ec169d2276ddab16f1e407384f': {'tToken': '0x32a6268f9ba3642dda7892add74f1d34469a4259', 'sdToken': '0x0000000000000000000000000000000000000000', 'dToken': '0x490e0e6255bf65b43e2e02f7acb783c5e04572ff', 'loanToValue': 0.75, 'liquidationThreshold': 0.78}}
|
150
11
|
}
|
@@ -19,6 +19,56 @@ COMPOUND_V3_ETH = {
|
|
19
19
|
"priceFeed": "0x4f67e4d9bd67efa28236013288737d39aef48e79",
|
20
20
|
"loanToValue": 0.9,
|
21
21
|
"liquidationThreshold": 0.93
|
22
|
+
},
|
23
|
+
"0xae78736cd615f374d3085123a210448e74fc6393": {
|
24
|
+
"priceFeed": "0xa3a7fb5963d1d69b95eec4957f77678ef073ba08",
|
25
|
+
"loanToValue": 0.9,
|
26
|
+
"liquidationThreshold": 0.93
|
27
|
+
},
|
28
|
+
"0xa1290d69c65a6fe4df752f95823fae25cb99e5a7": {
|
29
|
+
"priceFeed": "0xfa454de61b317b6535a0c462267208e8fdb89f45",
|
30
|
+
"loanToValue": 0.88,
|
31
|
+
"liquidationThreshold": 0.91
|
32
|
+
},
|
33
|
+
"0xcd5fe23c85820f7b72d0926fc9b05b43e359b7ee": {
|
34
|
+
"priceFeed": "0x1ad4ceba9f8135a557bbe317db62aa125c330f26",
|
35
|
+
"loanToValue": 0.9,
|
36
|
+
"liquidationThreshold": 0.93
|
37
|
+
},
|
38
|
+
"0xf1c9acdc66974dfb6decb12aa385b9cd01190e38": {
|
39
|
+
"priceFeed": "0x66f5afdad14b30816b47b707240d1e8e3344d04d",
|
40
|
+
"loanToValue": 0.8,
|
41
|
+
"liquidationThreshold": 0.85
|
42
|
+
},
|
43
|
+
"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
|
44
|
+
"priceFeed": "0xd98be00b5d27fc98112bde293e487f8d4ca57d07",
|
45
|
+
"loanToValue": 0.8,
|
46
|
+
"liquidationThreshold": 0.85
|
47
|
+
},
|
48
|
+
"0xbf5495efe5db9ce00f80364c8b423567e58d2110": {
|
49
|
+
"priceFeed": "0xde43600de5016b50752cc2615332d8ccbed6ec1b",
|
50
|
+
"loanToValue": 0.88,
|
51
|
+
"liquidationThreshold": 0.91
|
52
|
+
},
|
53
|
+
"0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": {
|
54
|
+
"priceFeed": "0x57a71a9c632b2e6d8b0eb9a157888a3fc87400d1",
|
55
|
+
"loanToValue": 0.8,
|
56
|
+
"liquidationThreshold": 0.85
|
57
|
+
},
|
58
|
+
"0xfae103dc9cf190ed75350761e95403b7b8afa6c0": {
|
59
|
+
"priceFeed": "0xdd18688bb75af704f3fb1183e459c4d4d41132d9",
|
60
|
+
"loanToValue": 0.8,
|
61
|
+
"liquidationThreshold": 0.85
|
62
|
+
},
|
63
|
+
"0x18084fba666a33d37592fa2633fd49a74dd93a88": {
|
64
|
+
"priceFeed": "0x1933f7e5f8b0423fbab28ce9c8c39c2cc414027b",
|
65
|
+
"loanToValue": 0.76,
|
66
|
+
"liquidationThreshold": 0.81
|
67
|
+
},
|
68
|
+
"0xa35b1b31ce002fbf2058d22f30f95d405200a15b": {
|
69
|
+
"priceFeed": "0x9f2f60f38bbc275af8f88a21c0e2bfe751e97c1f",
|
70
|
+
"loanToValue": 0.85,
|
71
|
+
"liquidationThreshold": 0.9
|
22
72
|
}
|
23
73
|
}
|
24
74
|
},
|
@@ -27,13 +77,13 @@ COMPOUND_V3_ETH = {
|
|
27
77
|
"assets": {
|
28
78
|
"0xc00e94cb662c3520282e6f5717214004a7f26888": {
|
29
79
|
"priceFeed": "0xdbd020caef83efd542f4de03e3cf0c28a4428bd5",
|
30
|
-
"loanToValue": 0.
|
80
|
+
"loanToValue": 0.5,
|
31
81
|
"liquidationThreshold": 0.7
|
32
82
|
},
|
33
83
|
"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
|
34
84
|
"priceFeed": "0xf4030086522a5beea4988f8ca5b36dbc97bee88c",
|
35
|
-
"loanToValue": 0.
|
36
|
-
"liquidationThreshold": 0.
|
85
|
+
"loanToValue": 0.8,
|
86
|
+
"liquidationThreshold": 0.85
|
37
87
|
},
|
38
88
|
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
39
89
|
"priceFeed": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419",
|
@@ -42,15 +92,140 @@ COMPOUND_V3_ETH = {
|
|
42
92
|
},
|
43
93
|
"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": {
|
44
94
|
"priceFeed": "0x553303d460ee0afb37edff9be42922d8ff63220e",
|
45
|
-
"loanToValue": 0.
|
95
|
+
"loanToValue": 0.68,
|
96
|
+
"liquidationThreshold": 0.74
|
97
|
+
},
|
98
|
+
"0x514910771af9ca656af840dff83e8264ecf986ca": {
|
99
|
+
"priceFeed": "0x2c1d072e956affc0d435cb7ac38ef18d24d9127c",
|
100
|
+
"loanToValue": 0.73,
|
101
|
+
"liquidationThreshold": 0.79
|
102
|
+
},
|
103
|
+
"0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
|
104
|
+
"priceFeed": "0x023ee795361b28cdbb94e302983578486a0a5f1b",
|
105
|
+
"loanToValue": 0.82,
|
106
|
+
"liquidationThreshold": 0.87
|
107
|
+
},
|
108
|
+
"0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": {
|
109
|
+
"priceFeed": "0x0a4f4f9e84fc4f674f0d209f94d41fafe5af887d",
|
110
|
+
"loanToValue": 0.8,
|
111
|
+
"liquidationThreshold": 0.85
|
112
|
+
},
|
113
|
+
"0x18084fba666a33d37592fa2633fd49a74dd93a88": {
|
114
|
+
"priceFeed": "0xaa9527bf3183a96fe6e55831c96de5cd988d3484",
|
115
|
+
"loanToValue": 0.76,
|
46
116
|
"liquidationThreshold": 0.81
|
117
|
+
}
|
118
|
+
}
|
119
|
+
},
|
120
|
+
"0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
|
121
|
+
"comet": "0x3d0bb1ccab520a66e607822fc55bc921738fafe3",
|
122
|
+
"assets": {
|
123
|
+
"0xa1290d69c65a6fe4df752f95823fae25cb99e5a7": {
|
124
|
+
"priceFeed": "0xc49399814452b41da8a7cd76a159f5515cb3e493",
|
125
|
+
"loanToValue": 0.88,
|
126
|
+
"liquidationThreshold": 0.91
|
127
|
+
},
|
128
|
+
"0xbf5495efe5db9ce00f80364c8b423567e58d2110": {
|
129
|
+
"priceFeed": "0xc7986b6318c3f3ab5be12baf22892961158d3c24",
|
130
|
+
"loanToValue": 0.88,
|
131
|
+
"liquidationThreshold": 0.91
|
132
|
+
}
|
133
|
+
}
|
134
|
+
},
|
135
|
+
"0xdac17f958d2ee523a2206206994597c13d831ec7": {
|
136
|
+
"comet": "0x3afdc9bca9213a35503b077a6072f3d0d5ab0840",
|
137
|
+
"assets": {
|
138
|
+
"0xc00e94cb662c3520282e6f5717214004a7f26888": {
|
139
|
+
"priceFeed": "0xdbd020caef83efd542f4de03e3cf0c28a4428bd5",
|
140
|
+
"loanToValue": 0.5,
|
141
|
+
"liquidationThreshold": 0.7
|
142
|
+
},
|
143
|
+
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
144
|
+
"priceFeed": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419",
|
145
|
+
"loanToValue": 0.83,
|
146
|
+
"liquidationThreshold": 0.9
|
147
|
+
},
|
148
|
+
"0x2260fac5e5542a773aa44fbcfedf7c193bc2c599": {
|
149
|
+
"priceFeed": "0x4e64e54c9f0313852a230782b3ba4b3b0952b499",
|
150
|
+
"loanToValue": 0.8,
|
151
|
+
"liquidationThreshold": 0.85
|
152
|
+
},
|
153
|
+
"0x1f9840a85d5af5bf1d1762f925bdaddc4201f984": {
|
154
|
+
"priceFeed": "0x553303d460ee0afb37edff9be42922d8ff63220e",
|
155
|
+
"loanToValue": 0.68,
|
156
|
+
"liquidationThreshold": 0.74
|
47
157
|
},
|
48
158
|
"0x514910771af9ca656af840dff83e8264ecf986ca": {
|
49
159
|
"priceFeed": "0x2c1d072e956affc0d435cb7ac38ef18d24d9127c",
|
50
|
-
"loanToValue": 0.
|
160
|
+
"loanToValue": 0.73,
|
161
|
+
"liquidationThreshold": 0.79
|
162
|
+
},
|
163
|
+
"0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
|
164
|
+
"priceFeed": "0x023ee795361b28cdbb94e302983578486a0a5f1b",
|
165
|
+
"loanToValue": 0.8,
|
166
|
+
"liquidationThreshold": 0.85
|
167
|
+
},
|
168
|
+
"0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": {
|
169
|
+
"priceFeed": "0x2d09142eae60fd8bd454a276e95aebdffd05722d",
|
170
|
+
"loanToValue": 0.8,
|
171
|
+
"liquidationThreshold": 0.85
|
172
|
+
},
|
173
|
+
"0x18084fba666a33d37592fa2633fd49a74dd93a88": {
|
174
|
+
"priceFeed": "0x7b03a016dbc36db8e05c480192fadcdb0a06bc37",
|
175
|
+
"loanToValue": 0.76,
|
176
|
+
"liquidationThreshold": 0.81
|
177
|
+
},
|
178
|
+
"0x57f5e098cad7a3d1eed53991d4d66c45c9af7812": {
|
179
|
+
"priceFeed": "0xe3a409ed15cd53afdefdd191ad945cec528a2496",
|
180
|
+
"loanToValue": 0.88,
|
181
|
+
"liquidationThreshold": 0.9
|
182
|
+
},
|
183
|
+
"0xa663b02cf0a4b149d2ad41910cb81e23e1c41c32": {
|
184
|
+
"priceFeed": "0x403f2083b6e220147f8a8832f0b284b4ed5777d1",
|
185
|
+
"loanToValue": 0.88,
|
186
|
+
"liquidationThreshold": 0.9
|
187
|
+
},
|
188
|
+
"0xd5f7838f5c461feff7fe49ea5ebaf7728bb0adfa": {
|
189
|
+
"priceFeed": "0x2f7439252da796ab9a93f7e478e70ded43db5b89",
|
190
|
+
"loanToValue": 0.8,
|
51
191
|
"liquidationThreshold": 0.85
|
52
192
|
}
|
53
193
|
}
|
194
|
+
},
|
195
|
+
"0xdc035d45d973e3ec169d2276ddab16f1e407384f": {
|
196
|
+
"comet": "0x5d409e56d886231adaf00c8775665ad0f9897b56",
|
197
|
+
"assets": {
|
198
|
+
"0xc02aaa39b223fe8d0a0e5c4f27ead9083c756cc2": {
|
199
|
+
"priceFeed": "0x5f4ec3df9cbd43714fe2740f5e3616155c5b8419",
|
200
|
+
"loanToValue": 0.83,
|
201
|
+
"liquidationThreshold": 0.9
|
202
|
+
},
|
203
|
+
"0x4c9edd5852cd905f086c759e8383e09bff1e68b3": {
|
204
|
+
"priceFeed": "0xa569d910839ae8865da8f8e70fffb0cba869f961",
|
205
|
+
"loanToValue": 0.7,
|
206
|
+
"liquidationThreshold": 0.75
|
207
|
+
},
|
208
|
+
"0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": {
|
209
|
+
"priceFeed": "0x2665701293fcbeb223d11a08d826563edcce423a",
|
210
|
+
"loanToValue": 0.8,
|
211
|
+
"liquidationThreshold": 0.85
|
212
|
+
},
|
213
|
+
"0x18084fba666a33d37592fa2633fd49a74dd93a88": {
|
214
|
+
"priceFeed": "0x8350b7de6a6a2c1368e7d4bd968190e13e354297",
|
215
|
+
"loanToValue": 0.76,
|
216
|
+
"liquidationThreshold": 0.81
|
217
|
+
},
|
218
|
+
"0x7f39c581f595b53c5cb19bd0b3f8da6c935e2ca0": {
|
219
|
+
"priceFeed": "0x7de363b6bf0a892b94a1cd0c9df76826bfc14228",
|
220
|
+
"loanToValue": 0.82,
|
221
|
+
"liquidationThreshold": 0.87
|
222
|
+
},
|
223
|
+
"0xa3931d71877c0e7a3148cb7eb4463524fec27fbd": {
|
224
|
+
"priceFeed": "0x31b844dbc7cdbaa27d22fd6d54986836d023bf3f",
|
225
|
+
"loanToValue": 0.88,
|
226
|
+
"liquidationThreshold": 0.92
|
227
|
+
}
|
228
|
+
}
|
54
229
|
}
|
55
230
|
}
|
56
231
|
}
|