defi-state-querier 0.5.32__py3-none-any.whl → 0.5.34__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.
Files changed (46) hide show
  1. defi_services/__init__.py +1 -1
  2. defi_services/abis/lending/venus/venus_comptroller_optimism_abi.py +2125 -0
  3. defi_services/abis/lending/yldr/__init__.py +0 -0
  4. defi_services/abis/lending/yldr/yldr_lending_abi.py +1725 -0
  5. defi_services/constants/chain_constant.py +4 -0
  6. defi_services/constants/entities/lending_constant.py +2 -1
  7. defi_services/constants/entities/lending_services.py +5 -2
  8. defi_services/jobs/queriers/state_querier.py +1 -1
  9. defi_services/services/lending/aave_v3_services.py +11 -1
  10. defi_services/services/lending/lending_info/arbitrum/radiant_arbitrum.py +51 -30
  11. defi_services/services/lending/lending_info/arbitrum/venus_arbitrum.py +46 -2
  12. defi_services/services/lending/lending_info/arbitrum/yldr_arbitrum.py +51 -2
  13. defi_services/services/lending/lending_info/avalanche/benqi_avalanche.py +2 -2
  14. defi_services/services/lending/lending_info/base/venus_base.py +42 -0
  15. defi_services/services/lending/lending_info/bsc/avalon_bsc.py +1 -1
  16. defi_services/services/lending/lending_info/bsc/radiant_bsc.py +48 -28
  17. defi_services/services/lending/lending_info/celo/__init__.py +0 -0
  18. defi_services/services/lending/lending_info/celo/aave_v3_celo.py +47 -0
  19. defi_services/services/lending/lending_info/ethereum/radiant_eth.py +55 -55
  20. defi_services/services/lending/lending_info/ethereum/spark_eth.py +1 -1
  21. defi_services/services/lending/lending_info/ethereum/venus_eth.py +124 -2
  22. defi_services/services/lending/lending_info/ethereum/yldr_ethereum.py +38 -2
  23. defi_services/services/lending/lending_info/gnosis/__init__.py +0 -0
  24. defi_services/services/lending/lending_info/gnosis/aave_v3_gnoisis.py +69 -0
  25. defi_services/services/lending/lending_info/gnosis/spark_gnosis.py +75 -0
  26. defi_services/services/lending/lending_info/harmony/__init__.py +0 -0
  27. defi_services/services/lending/lending_info/harmony/aave_v3_harmony.py +69 -0
  28. defi_services/services/lending/lending_info/opBNB/__init__.py +0 -0
  29. defi_services/services/lending/lending_info/opBNB/venus_opbnb.py +42 -0
  30. defi_services/services/lending/lending_info/optimism/moonwell_optimism.py +86 -0
  31. defi_services/services/lending/lending_info/optimism/venus_optimism.py +42 -0
  32. defi_services/services/lending/lending_info/scroll/__init__.py +0 -0
  33. defi_services/services/lending/lending_info/scroll/aave_v3_scroll.py +48 -0
  34. defi_services/services/lending/lending_info/sonic/__init__.py +0 -0
  35. defi_services/services/lending/lending_info/sonic/aave_v3_sonic.py +41 -0
  36. defi_services/services/lending/lending_info/zksync/venus_zksync.py +58 -2
  37. defi_services/services/lending/moonwell_service.py +3 -1
  38. defi_services/services/lending/spark_services.py +3 -1
  39. defi_services/services/lending/venus_services.py +18 -2
  40. defi_services/services/lending/xlend_services.py +2 -10
  41. defi_services/services/lending/yldr_services.py +394 -0
  42. {defi_state_querier-0.5.32.dist-info → defi_state_querier-0.5.34.dist-info}/METADATA +1 -1
  43. {defi_state_querier-0.5.32.dist-info → defi_state_querier-0.5.34.dist-info}/RECORD +46 -27
  44. {defi_state_querier-0.5.32.dist-info → defi_state_querier-0.5.34.dist-info}/WHEEL +1 -1
  45. {defi_state_querier-0.5.32.dist-info → defi_state_querier-0.5.34.dist-info}/licenses/LICENSE +0 -0
  46. {defi_state_querier-0.5.32.dist-info → defi_state_querier-0.5.34.dist-info}/top_level.txt +0 -0
@@ -36,6 +36,10 @@ class Chain:
36
36
  bitcoin = 'bitcoin'
37
37
  cosmos = 'cosmos'
38
38
  ton = 'ton'
39
+ sonic = '0x92'
40
+ scroll = '0x82750'
41
+ harmony = '0x63564c40'
42
+ opbnb = '0xcc'
39
43
 
40
44
  native_decimals = {
41
45
  tron: 6,
@@ -33,9 +33,10 @@ class Lending:
33
33
  seamless = "seamless-v1"
34
34
  avalon = 'avalon-finance'
35
35
  xlend = "extra-finance-xlend"
36
+ yldr = "yldr"
36
37
  all = [
37
38
  strike, aave_v2, aave_v3, radiant_v2, compound, flux, onyx, granary,
38
39
  iron_bank, trava, valas, geist, cream, venus, liqee, strike, uwu, wepiggy,
39
40
  morpho_compound, morpho_aave_v2, morpho_aave_v3, spark, ape_swap, silo, compound_v3,
40
- justlend, zerolend, moonwell, ionic, sonne, kinza, seamless, avalon, xlend
41
+ justlend, zerolend, moonwell, ionic, sonne, kinza, seamless, avalon, xlend, yldr
41
42
  ]
@@ -32,6 +32,7 @@ from defi_services.services.lending.strike_service import StrikeStateService
32
32
  from defi_services.services.lending.onyx_service import OnyxStateService
33
33
  from defi_services.services.lending.wepiggy_services import WepiggyStateService
34
34
  from defi_services.services.lending.xlend_services import XlendStateService
35
+ from defi_services.services.lending.yldr_services import YLDRStateService
35
36
  from defi_services.services.lending.zerolend_services import ZeroLendStateService
36
37
 
37
38
 
@@ -58,7 +59,8 @@ class LendingServices:
58
59
  Lending.compound_v3: CompoundV3StateService,
59
60
  Lending.radiant_v2: RadiantStateService,
60
61
  Lending.zerolend: ZeroLendStateService,
61
- Lending.kinza: KinzaStateService
62
+ Lending.kinza: KinzaStateService,
63
+ Lending.yldr: YLDRStateService
62
64
  }
63
65
  fantom = {
64
66
  Lending.trava: TravaStateService,
@@ -111,7 +113,8 @@ class LendingServices:
111
113
  Lending.wepiggy: WepiggyStateService,
112
114
  Lending.granary: GranaryStateService,
113
115
  Lending.silo: SiloStateService,
114
- Lending.compound_v3: CompoundV3StateService
116
+ Lending.compound_v3: CompoundV3StateService,
117
+ Lending.yldr: YLDRStateService
115
118
  }
116
119
 
117
120
  tron = {
@@ -104,7 +104,7 @@ class StateQuerier:
104
104
  if value is not None:
105
105
  filtered_response_data[key] = value
106
106
  else:
107
- print(key)
107
+ logger.error(key)
108
108
  filtered_keys = list(filtered_response_data.keys())
109
109
  response_data = filtered_response_data
110
110
  list_call_id = [call_id for call_id in list_call_id if call_id in filtered_keys]
@@ -18,10 +18,15 @@ from defi_services.services.lending.lending_info.arbitrum.aave_v3_arbitrum impor
18
18
  from defi_services.services.lending.lending_info.avalanche.aave_v3_avalanche import AAVE_V3_AVALANCHE
19
19
  from defi_services.services.lending.lending_info.base.aave_v3_base import AAVE_V3_BASE
20
20
  from defi_services.services.lending.lending_info.bsc.aave_v3_bsc import AAVE_V3_BSC
21
+ from defi_services.services.lending.lending_info.celo.aave_v3_celo import AAVE_V3_CELO
21
22
  from defi_services.services.lending.lending_info.ethereum.old_aave_v3_eth import AAVE_V3_ETH
22
23
  from defi_services.services.lending.lending_info.fantom.aave_v3_ftm import AAVE_V3_FTM
24
+ from defi_services.services.lending.lending_info.gnosis.aave_v3_gnoisis import AAVE_V3_GNOSIS
25
+ from defi_services.services.lending.lending_info.harmony.aave_v3_harmony import AAVE_V3_HARMONY
23
26
  from defi_services.services.lending.lending_info.optimism.aave_v3_optimism import AAVE_V3_OPTIMISM
24
27
  from defi_services.services.lending.lending_info.polygon.aave_v3_polygon import AAVE_V3_POLYGON
28
+ from defi_services.services.lending.lending_info.scroll.aave_v3_scroll import AAVE_V3_SCROLL
29
+ from defi_services.services.lending.lending_info.sonic.aave_v3_sonic import AAVE_V3_SONIC
25
30
  from defi_services.services.lending.lending_info.zksync.aave_v3_zksync import AAVE_V3_ZKSYNC
26
31
 
27
32
  logger = logging.getLogger("Aave V3 Lending Pool State Service")
@@ -37,7 +42,12 @@ class AaveV3Info:
37
42
  Chain.arbitrum: AAVE_V3_ARB,
38
43
  Chain.base: AAVE_V3_BASE,
39
44
  Chain.zksync: AAVE_V3_ZKSYNC,
40
- Chain.bsc: AAVE_V3_BSC
45
+ Chain.bsc: AAVE_V3_BSC,
46
+ Chain.harmony: AAVE_V3_HARMONY,
47
+ Chain.celo: AAVE_V3_CELO,
48
+ Chain.gnosis: AAVE_V3_GNOSIS,
49
+ Chain.scroll: AAVE_V3_SCROLL,
50
+ Chain.sonic: AAVE_V3_SONIC
41
51
  }
42
52
 
43
53
 
@@ -1,5 +1,5 @@
1
1
  RADIANT_ARB = {
2
- "address": "0xf4b1486dd74d07706052a33d31d7c0aafd0659e1",
2
+ "address": "0xe23b4ae3624fb6f7cdef29bc8ead912f1ede6886",
3
3
  "name": "Radiant Lending Pool",
4
4
  "rewardToken": "0x3082cc23568ea640225c2467653db90e9250aaa0",
5
5
  "multiFeeAddress": "0x76ba3ec5f5adbf1c58c91e86502232317eea72de",
@@ -9,46 +9,67 @@ RADIANT_ARB = {
9
9
  "forked": "aave-v2",
10
10
  "reservesList": {
11
11
  "0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f": {
12
- "tToken": "0x727354712bdfcd8596a3852fd2065b3c34f4f770",
13
- "dToken": "0x3eeafa33625df20837ed0cb83ae4d1e34788b141",
14
- "sdToken": "0x9ee73b7dd519f89168592ef97b29c97d844befb0",
12
+ "tToken": "0xa366742d785c288ecad8120d5303db4eb675c9ec",
13
+ "dToken": "0x2ceca734ae0a437314a73401db89a2560584b17f",
14
+ "sdToken": "0x42c43096272be726fefa0d667021205b42f9f780",
15
+ "loanToValue": 0.7,
15
16
  "liquidationThreshold": 0.75
16
17
  },
17
- "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9": {
18
- "tToken": "0xd69d402d1bdb9a2b8c3d88d98b9ceaf9e4cd72d9",
19
- "dToken": "0x7c2e0f792ea5b4a4dbd7fa7f949cf39a5c0ba185",
20
- "sdToken": "0xc6277b25076770dd408979346b81d0373e9bba5a",
21
- "liquidationThreshold": 0.85
18
+ "0x82af49447d8a07e3bd95bd0d56f35241523fbab1": {
19
+ "tToken": "0xfb6f79db694ab6b7bf9eb71b3e2702191a91df56",
20
+ "dToken": "0x330243dcbd91acdd99b73a7c73c8a46e47fe386c",
21
+ "sdToken": "0x09136677313d3e2da36a41cb912b15766883268b",
22
+ "loanToValue": 0.8,
23
+ "liquidationThreshold": 0.825
22
24
  },
23
- "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8": {
24
- "tToken": "0x48a29e756cc1c097388f3b2f3b570ed270423b3d",
25
- "dToken": "0x107583adaa37dfd1cc0bf577183bf91351d07413",
26
- "sdToken": "0x21f01f6bc5f6d8fa2dcf67b9ff2c163211874951",
25
+ "0xaf88d065e77c8cc2239327c5edb3a432268e5831": {
26
+ "tToken": "0xb1d71c15d7c00a1b38c7ad182fa49889a70db4be",
27
+ "dToken": "0x7bf39af1dd18d6dafca6b931589ef850f9d0be25",
28
+ "sdToken": "0x22fed8c48da3a66321b488b5219f162a2d29e941",
29
+ "loanToValue": 0.8,
27
30
  "liquidationThreshold": 0.85
28
31
  },
29
- "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": {
30
- "tToken": "0x0d914606f3424804fa1bbbe56ccc3416733acec6",
31
- "dToken": "0x04a8faed05c97290ab4d793a971adee97cd1cbbd",
32
- "sdToken": "0xd085657fc2e2046463e9c918a30d5f29114e7958",
32
+ "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9": {
33
+ "tToken": "0x62f9f05f3af1a934f0e02ead202e3de36a6501e6",
34
+ "dToken": "0xe0499561642aff7a149f59cc599484d9d2dc60da",
35
+ "sdToken": "0xdf21fc8bafefbb19a9e9040fe2840ac218683df3",
36
+ "loanToValue": 0.8,
33
37
  "liquidationThreshold": 0.85
34
38
  },
35
- "0x82af49447d8a07e3bd95bd0d56f35241523fbab1": {
36
- "tToken": "0x0df5dfd95966753f01cb80e76dc20ea958238c46",
37
- "dToken": "0xab04c0841f39596c9f18a981a2bd32f63ab7a817",
38
- "sdToken": "0xfe91b5a00506944ae9d09fd6249ea0363cd88809",
39
- "liquidationThreshold": 0.825
40
- },
41
39
  "0x5979d7b546e38e414f7e9822514be443a4800529": {
42
- "tToken": "0x42c248d137512907048021b30d9da17f48b5b7b2",
43
- "dToken": "0x97b81aa985115953ba31d59781e2d8159a50f488",
44
- "sdToken": "0xc8598d86d4f829cab345f619e5db12042dd5f73e",
40
+ "tToken": "0xbe6e57d96674e4873173da7d48c1efbc55f2fa37",
41
+ "dToken": "0x78587e08e71a65976e98e4eef9f3337a1dfb6eba",
42
+ "sdToken": "0x36424f81740658f63f93648d4e86a254852d5e97",
43
+ "loanToValue": 0.7,
45
44
  "liquidationThreshold": 0.8
46
45
  },
46
+ "0x35751007a407ca6feffe80b3cb397736d2cf4dbe": {
47
+ "tToken": "0x44e1c41e6ca07198edbdb4d3e41a7def2e06cd8f",
48
+ "dToken": "0x04f2a8f7fcc86cddcca89e1ea98f333cc072fb95",
49
+ "sdToken": "0x75d2aa6a86381aea3f7e2577c7a1435dbca83a6d",
50
+ "loanToValue": 0.725,
51
+ "liquidationThreshold": 0.75
52
+ },
47
53
  "0x912ce59144191c1204e64559fe8253a0e49e6548": {
48
- "tToken": "0x2dade5b7df9da3a7e1c9748d169cd6dff77e3d01",
49
- "dToken": "0x295b97012945bd4a1a79ec7f679e16761a437e5c",
50
- "sdToken": "0xbf0d23fb0b471415f0b332780e69a0c019399a34",
51
- "liquidationThreshold": 0.5
54
+ "tToken": "0xc103b64ae78abdf2b643aa684440ef4cf3759b0b",
55
+ "dToken": "0x60a60e28fd7e44c60c4087837716374b14c7450d",
56
+ "sdToken": "0x2335a96b3bf7cacb7c38d7f7db59141bbea18423",
57
+ "loanToValue": 0.58,
58
+ "liquidationThreshold": 0.63
59
+ },
60
+ "0xec70dcb4a1efa46b8f2d97c310c9c4790ba5ffa8": {
61
+ "tToken": "0x24957644116967962bf1f507e7ad9498836a0132",
62
+ "dToken": "0x9d4179826950a36a46144aedb51269ca6c4ae87b",
63
+ "sdToken": "0x5009e5a7785abfd77868ec436ea32f27a2efefe7",
64
+ "loanToValue": 0.65,
65
+ "liquidationThreshold": 0.7
66
+ },
67
+ "0xf97f4df75117a78c1a5a0dbb814af92458539fb4": {
68
+ "tToken": "0x1f6ce88620326b146c47cccd115d23ee48042b9f",
69
+ "dToken": "0x469be5f178c3b4bc43f8ac420958d58f8889e5f8",
70
+ "sdToken": "0x4b35273fad7833456b395f8737437995f9936f29",
71
+ "loanToValue": 0.65,
72
+ "liquidationThreshold": 0.7
52
73
  }
53
74
  }
54
75
  }
@@ -2,9 +2,53 @@ VENUS_ARB = {
2
2
  "projectName": "Venus",
3
3
  "name": "Venus Lending Pool",
4
4
  "rewardToken": "0xc1eb7689147c81ac840d4ff0d298489fc7986d52",
5
- "comptrollerAddress": "",
6
- "lensAddress": "",
5
+ "comptrollerAddress": "0x317c1a5739f39046e20b08ac9beea3f10fd43326",
6
+ "lensAddress": "0x53f34ff95367b2a4542461a6a63fd321f8da22ad",
7
7
  "poolToken": "0xc1eb7689147c81ac840d4ff0d298489fc7986d52",
8
8
  "type": "LENDING_POOL",
9
9
  "forked": "compound",
10
+ "reservesList": {
11
+ "0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f": {
12
+ "cToken": "0xada57840b372d4c28623e87fc175de8490792811",
13
+ "exchangeRate": 1.004669284186332,
14
+ "liquidationThreshold": 0.75,
15
+ "loanToValue": 0.75
16
+ },
17
+ "0x82af49447d8a07e3bd95bd0d56f35241523fbab1": {
18
+ "cToken": "0x68a34332983f4bf866768dd6d6e638b02ef5e1f0",
19
+ "exchangeRate": 1.0090528703349988,
20
+ "liquidationThreshold": 0.75,
21
+ "loanToValue": 0.75
22
+ },
23
+ "0xaf88d065e77c8cc2239327c5edb3a432268e5831": {
24
+ "cToken": "0x7d8609f8da70ff9027e9bc5229af4f6727662707",
25
+ "exchangeRate": 1.0600511022233943,
26
+ "liquidationThreshold": 0.78,
27
+ "loanToValue": 0.78
28
+ },
29
+ "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9": {
30
+ "cToken": "0xb9f9117d4200dc296f9acd1e8be1937df834a2fd",
31
+ "exchangeRate": 1.0613267562499147,
32
+ "liquidationThreshold": 0.78,
33
+ "loanToValue": 0.78
34
+ },
35
+ "0x912ce59144191c1204e64559fe8253a0e49e6548": {
36
+ "cToken": "0xaeb0fed69354f34831fe1d16475d9a83ddacada6",
37
+ "exchangeRate": 1.008425827671361,
38
+ "liquidationThreshold": 0.55,
39
+ "loanToValue": 0.55
40
+ },
41
+ "0x70d95587d40a2caf56bd97485ab3eec10bee6336": {
42
+ "cToken": "0x9bb8cec9c0d46f53b4f2173bb2a0221f66c353cc",
43
+ "exchangeRate": 1.0000000000071776,
44
+ "liquidationThreshold": 0.7,
45
+ "loanToValue": 0.7
46
+ },
47
+ "0x47c031236e19d024b42f8ae6780e44a573170703": {
48
+ "cToken": "0x4f3a73f318c5ea67a86eaace24309f29f89900df",
49
+ "exchangeRate": 1.0000000000030533,
50
+ "liquidationThreshold": 0.7,
51
+ "loanToValue": 0.7
52
+ }
53
+ }
10
54
  }
@@ -1,4 +1,4 @@
1
- YLDR_ETHEREUM = {
1
+ YLDR_ARBITRUM = {
2
2
  "address": "0x54ad657851b6ae95ba3380704996caad4b7751a3",
3
3
  "name": "YLDR Lending Pool",
4
4
  "stakedIncentiveAddress": '',
@@ -7,6 +7,55 @@ YLDR_ETHEREUM = {
7
7
  "type": "LENDING_POOL",
8
8
  "poolToken": "",
9
9
  "forked": "aave-v3",
10
- "reservesList": {}
10
+ "reservesList": {
11
+ "0xaf88d065e77c8cc2239327c5edb3a432268e5831": {
12
+ "tToken": "0xaa40dca2d69ded3eb17991aa17d83653f1084091",
13
+ "dToken": "0x7bcc957f8f86aa78762fccc0bfec6dbf8b1ad987",
14
+ "loanToValue": 0.81,
15
+ "liquidationThreshold": 0.84
16
+ },
17
+ "0x82af49447d8a07e3bd95bd0d56f35241523fbab1": {
18
+ "tToken": "0x6d7197fa1f2b9d01a25705b5558a748a2b5f0605",
19
+ "dToken": "0xa350429bc896a95f1ef6936e4c4c5a2c62052ed1",
20
+ "loanToValue": 0.825,
21
+ "liquidationThreshold": 0.855
22
+ },
23
+ "0xff970a61a04b1ca14834a43f5de4533ebddb5cc8": {
24
+ "tToken": "0x8f46fb23d1d7e1385809bc304f979651fd374deb",
25
+ "dToken": "0x57c2e352e867238a96c300ff6434f7c8d63b3c14",
26
+ "loanToValue": 0.81,
27
+ "liquidationThreshold": 0.84
28
+ },
29
+ "0xfd086bc7cd5c481dcc9c85ebe478a1c0b69fcbb9": {
30
+ "tToken": "0x172c9dce43198154dc0dacc843fd8103ad09145c",
31
+ "dToken": "0xcda3934b7dda7fc07ff09e669137c49782812f82",
32
+ "loanToValue": 0.75,
33
+ "liquidationThreshold": 0.78
34
+ },
35
+ "0x5979d7b546e38e414f7e9822514be443a4800529": {
36
+ "tToken": "0x4107b60471eef310fce240e4dfad14b7e326a6e0",
37
+ "dToken": "0x16359d6cf2ec7f9020707653d4758ad8969752f0",
38
+ "loanToValue": 0.7,
39
+ "liquidationThreshold": 0.73
40
+ },
41
+ "0x912ce59144191c1204e64559fe8253a0e49e6548": {
42
+ "tToken": "0x609772eeeda6dd1537177737823ffb3b3bc9b6e4",
43
+ "dToken": "0xda27be910ca3e205927cc43088b5681d19de05fa",
44
+ "loanToValue": 0.6,
45
+ "liquidationThreshold": 0.63
46
+ },
47
+ "0x2f2a2543b76a4166549f7aab2e75bef0aefc5b0f": {
48
+ "tToken": "0xcb14e172f16db1e8e3cbca41a56281022633414d",
49
+ "dToken": "0xd5c41944a760c23caa11815c47e43b66719a213d",
50
+ "loanToValue": 0.73,
51
+ "liquidationThreshold": 0.76
52
+ },
53
+ "0xda10009cbd5d07dd0cecc66161fc93d7c9000da1": {
54
+ "tToken": "0x43274582edbc3d17ccb8c752da8aa9d471b5a093",
55
+ "dToken": "0x23a12b967ac30e04e844af3017f5c80b115b476d",
56
+ "loanToValue": 0.77,
57
+ "liquidationThreshold": 0.84
58
+ }
59
+ }
11
60
 
12
61
  }
@@ -1,5 +1,5 @@
1
- COMPOUND_ETH = {
2
- "name": "Compound Lending Pool",
1
+ BENQI_AVALANCHE = {
2
+ "name": "Benqi Lending Pool",
3
3
  "rewardToken": "",
4
4
  "comptrollerAddress": "0xd7c4006d33da2a0a8525791ed212bbcd7aca763f",
5
5
  "lensAddress": "",
@@ -0,0 +1,42 @@
1
+ VENUS_BASE = {
2
+ "projectName": "Venus",
3
+ "name": "Venus Lending Pool",
4
+ "rewardToken": "",
5
+ "comptrollerAddress": "0x0c7973f9598aa62f9e03b94e92c967fd5437426c",
6
+ "lensAddress": "0x89825677fb4845f5fc0b227e387455eca1200058",
7
+ "poolToken": "",
8
+ "type": "LENDING_POOL",
9
+ "forked": "compound",
10
+ "reservesList": {
11
+ "0xcbb7c0000ab88b473b1f5afd9ef808440eed33bf": {
12
+ "cToken": "0x7bbd1005bb24ec84705b04e1f2dfccad533b6d72",
13
+ "exchangeRate": 1.0001026928421601,
14
+ "liquidationThreshold": 0.73,
15
+ "loanToValue": 0.73
16
+ },
17
+ "0x4200000000000000000000000000000000000006": {
18
+ "cToken": "0xeb8a79bd44cf4500943bf94a2b4434c95c008599",
19
+ "exchangeRate": 1.0045169237467093,
20
+ "liquidationThreshold": 0.8,
21
+ "loanToValue": 0.8
22
+ },
23
+ "0x833589fcd6edb6e08f4c7c32d4f71b54bda02913": {
24
+ "cToken": "0x3cb752d175740043ec463673094e06acda2f9a2e",
25
+ "exchangeRate": 1.008978751718539,
26
+ "liquidationThreshold": 0.75,
27
+ "loanToValue": 0.75
28
+ },
29
+ "0x7fcd174e80f264448ebee8c88a7c4476aaf58ea6": {
30
+ "cToken": "0x75201d81b3b0b9d17b179118837be37f64fc4930",
31
+ "exchangeRate": 1.0000000065406953,
32
+ "liquidationThreshold": 0.73,
33
+ "loanToValue": 0.73
34
+ },
35
+ "0xc1cba3fcea344f92d9239c08c0568f6f2f0ee452": {
36
+ "cToken": "0x133d3bcd77158d125b75a17cb517ffd4b4be64c5",
37
+ "exchangeRate": 1.0000011329363254,
38
+ "liquidationThreshold": 0.785,
39
+ "loanToValue": 0.785
40
+ }
41
+ }
42
+ }
@@ -6,7 +6,7 @@ AVALON_BSC = {
6
6
  "oracleAddress": "",
7
7
  "type": "LENDING_POOL",
8
8
  "poolToken": "0x9beee89723ceec27d7c2834bec6834208ffdc202",
9
- "forked": "avalon-finance",
9
+ "forked": "aave-v3",
10
10
  "reservesList": {
11
11
  "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c": {
12
12
  "tToken": "0xb74eb18445a5cde001fdfcc74ddba368cf4c6f2f",
@@ -1,5 +1,5 @@
1
1
  RADIANT_BSC = {
2
- "address": "0xd50cf00b6e600dd036ba8ef475677d816d6c4281",
2
+ "address": "0xccf31d54c3a94f67b8ceff8dd771de5846da032c",
3
3
  "name": "Radiant Lending Pool",
4
4
  "rewardToken": "0xf7de7e8a6bd59ed41a4b5fe50278b3b7f31384df",
5
5
  "multiFeeAddress": "0x4fd9f7c5ca0829a656561486bada018505dfcb5e",
@@ -9,41 +9,61 @@ RADIANT_BSC = {
9
9
  "forked": "aave-v2",
10
10
  "type": "LENDING_POOL",
11
11
  "reservesList": {
12
- "0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c": {
13
- "tToken": "0x34d4f4459c1b529bebe1c426f1e584151be2c1e5",
14
- "dToken": "0x3c84437794a5515150982a6f69de5b3e017004a1",
15
- "sdToken": "0x10db119731a6af08c3bb4207f2ee04e256ab9085",
16
- "liquidationThreshold": 0.75
17
- },
18
12
  "0x55d398326f99059ff775485246999027b3197955": {
19
- "tToken": "0x4ff2dd7c6435789e0bb56b0553142ad00878a004",
20
- "dToken": "0x437f3df56ecee512e407b6ec368523c911d4a283",
21
- "sdToken": "0xbfb720ed33eaac7ed5a6b4d3e002a28166523e35",
13
+ "tToken": "0x9915a7389f8fb33f9b77d84119c06e8bffb12be4",
14
+ "dToken": "0xc1e02d3f3c7282cc2d15fb6a5cc40130427107b1",
15
+ "sdToken": "0xfaf76422fb363aed15dad0eec5ad1876aadc3782",
16
+ "loanToValue": 0.8,
22
17
  "liquidationThreshold": 0.85
23
18
  },
24
- "0xe9e7cea3dedca5984780bafc599bd69add087d56": {
25
- "tToken": "0x89d763e8532d256a3e3e60c1c218ac71e71cf664",
26
- "dToken": "0x8d3308e14a48f0681cea94d7c6995ec73b3973f1",
27
- "sdToken": "0x85132fb9f670e582ba65e7873b3879e804270c89",
28
- "liquidationThreshold": 0.85
19
+ "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c": {
20
+ "tToken": "0x40351090037b9c4f6555071e9b24a82b068f2c05",
21
+ "dToken": "0xf81c76a058ed8962b4eae814cd8339790bd7b4c8",
22
+ "sdToken": "0x48594f06f59caaa19a78124ced2c8a91403aea58",
23
+ "loanToValue": 0.8,
24
+ "liquidationThreshold": 0.825
29
25
  },
30
- "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d": {
31
- "tToken": "0x3bdcef9e656fd9d03ea98605946b4fbf362c342b",
32
- "dToken": "0x81fda3be7f3ca6acdae20a8d2b4ce54b78d70ed0",
33
- "sdToken": "0xb6b0c18fa6cc0f0332843df95dc4750f68eaf7b2",
34
- "liquidationThreshold": 0.85
26
+ "0x7130d2a12b9bcbfae4f2634d864a1ee1ce3ead9c": {
27
+ "tToken": "0xd083fb8db6dbc83386dc20075bec8d0722b3056b",
28
+ "dToken": "0xc589b9ae9e4aa780af7a6bc2e9de27a532b2a278",
29
+ "sdToken": "0x735717cadd9e0506459ec9a24a968857a8d4d13a",
30
+ "loanToValue": 0.7,
31
+ "liquidationThreshold": 0.75
35
32
  },
36
33
  "0x2170ed0880ac9a755fd29b2688956bd959f933f8": {
37
- "tToken": "0x455a281d508b4e34d55b31ac2e4579bd9b77ca8e",
38
- "dToken": "0xdcb45a8aa72854e06c826b16fd5038f33e2cb4b0",
39
- "sdToken": "0x0d9a266047ecc79442c99a588874d4240bf34fc4",
34
+ "tToken": "0x36594b6c976d05a6ff442b38cfc3efe0c01e0359",
35
+ "dToken": "0x7473d4eddd1d78b7df950219003d1b9d74e3980f",
36
+ "sdToken": "0xa8a933acd3d86269540bb218b50991de43fea3cf",
37
+ "loanToValue": 0.8,
40
38
  "liquidationThreshold": 0.825
41
39
  },
42
- "0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c": {
43
- "tToken": "0x58b0bb56cfdfc5192989461dd43568bcfb2797db",
44
- "dToken": "0xcbb96324f77a66e276f80b843ecdb3fadc551bff",
45
- "sdToken": "0x1e64705ee26ef366c1c9eb7c087351b4fc5c8509",
46
- "liquidationThreshold": 0.825
40
+ "0x8ac76a51cc950d9822d68b83fe1ad97b32cd580d": {
41
+ "tToken": "0x15cc621cfd1d0527ce6894fc07d97b2c06520d57",
42
+ "dToken": "0x94b6f75cb5c5e01cdfd1396420b499f3a7496300",
43
+ "sdToken": "0x94d651d2482850e7453af87bdc46d57425cab022",
44
+ "loanToValue": 0.8,
45
+ "liquidationThreshold": 0.85
46
+ },
47
+ "0xa2e3356610840701bdf5611a53974510ae27e2e1": {
48
+ "tToken": "0xd456f6216cb098b7999c76be4f58f5121bad8be8",
49
+ "dToken": "0x75ccd694d057086db838e0cbe91e92223a6b5c55",
50
+ "sdToken": "0xc3c358ec31914ec442868fc4b2987c0f5c2cf87f",
51
+ "loanToValue": 0.67,
52
+ "liquidationThreshold": 0.75
53
+ },
54
+ "0xc5f0f7b66764f6ec8c8dff7ba683102295e16409": {
55
+ "tToken": "0xd319e074c789c978e92f20345eb739b9a670e4d8",
56
+ "dToken": "0x054321fe1549502a702883712b70c48977a923bf",
57
+ "sdToken": "0x4be93e11f7039993f0bd04a97990bb29f3106c96",
58
+ "loanToValue": 0.7,
59
+ "liquidationThreshold": 0.75
60
+ },
61
+ "0x26c5e01524d2e6280a48f2c50ff6de7e52e9611c": {
62
+ "tToken": "0x701810c95aa1521d56c2be5848a1b15be5954ec3",
63
+ "dToken": "0x5cc83215c1e225105fe787b6f21a884c75aecf22",
64
+ "sdToken": "0xb249eff73e043bc2e4e76f11657ec55700f1aa6d",
65
+ "loanToValue": 0.67,
66
+ "liquidationThreshold": 0.75
47
67
  }
48
68
  }
49
69
  }
@@ -0,0 +1,47 @@
1
+ AAVE_V3_CELO = {
2
+ "address": "0x3e59a31363e2ad014dcbc521c4a0d5757d9f3402",
3
+ "name": "AAVE V3 Lending Pool",
4
+ "stakedIncentiveAddress": '0x4725a0fdbeb14a77964bc1c221ee3a7982263103',
5
+ "rewardTokensList": [],
6
+ "oracleAddress": "0x1e693d088cefd1e95ba4c4a5f7eea41a1ec37e8b",
7
+ "type": "LENDING_POOL",
8
+ "poolToken": "",
9
+ "forked": "aave-v3",
10
+ "reservesList": {
11
+ "0xceba9300f2b948710d2653dd7b07f33a8b32118c": {
12
+ "tToken": "0xff8309b9e99bfd2d4021bc71a362abd93dbd4785",
13
+ "sdToken": "0x0000000000000000000000000000000000000000",
14
+ "dToken": "0xdbe517c0fa6467873b684eccbed77217e471e862",
15
+ "loanToValue": 0.75,
16
+ "liquidationThreshold": 0.78
17
+ },
18
+ "0x48065fbbe25f71c9282ddf5e1cd6d6a887483d5e": {
19
+ "tToken": "0xdee98402a302e4d707fb9bf2bac66faeec31e8df",
20
+ "sdToken": "0x0000000000000000000000000000000000000000",
21
+ "dToken": "0xe15324a9887999803b931ac45aa89a94a9750052",
22
+ "loanToValue": 0.75,
23
+ "liquidationThreshold": 0.78
24
+ },
25
+ "0xd8763cba276a3738e6de85b4b3bf5fded6d6ca73": {
26
+ "tToken": "0x34c02571094e08e935b8cf8dc10f1ad6795f1f81",
27
+ "sdToken": "0x0000000000000000000000000000000000000000",
28
+ "dToken": "0x5c2b7eb5886b3cec5cce1019e34493da33291af5",
29
+ "loanToValue": 0.0,
30
+ "liquidationThreshold": 0.0
31
+ },
32
+ "0x765de816845861e75a25fca122bb6898b8b1282a": {
33
+ "tToken": "0xbba98352628b0b0c4b40583f593ffcb630935a45",
34
+ "sdToken": "0x0000000000000000000000000000000000000000",
35
+ "dToken": "0x05ee3d1fbacbdba1259946033cd7a42fdfcccf0d",
36
+ "loanToValue": 0.0,
37
+ "liquidationThreshold": 0.0
38
+ },
39
+ "0x471ece3750da237f93b8e339c536989b8978a438": {
40
+ "tToken": "0xc3e77dc389537db1eec7c33b95cf3beeca71a209",
41
+ "sdToken": "0x0000000000000000000000000000000000000000",
42
+ "dToken": "0xaea37b42955de2ba2e4af6581e46349bcd3ea2d6",
43
+ "loanToValue": 0.55,
44
+ "liquidationThreshold": 0.61
45
+ }
46
+ }
47
+ }