Skip to content

Commit

Permalink
Add assets from requests and exchanges
Browse files Browse the repository at this point in the history
- RMRK Closes rotki#3702
- ROCO finance Closes rotki#3644
- GEL Closes rotki#3636
- Fixes Metis symbol
  • Loading branch information
yabirgb committed Nov 12, 2021
1 parent cb4c769 commit e32881b
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 0 deletions.
1 change: 1 addition & 0 deletions rotkehlchen/assets/asset.py
Expand Up @@ -396,6 +396,7 @@ def deserialize_from_db(cls, entry: UnderlyingTokenDBTuple) -> 'UnderlyingToken'
'EDG-2': 'EDG',
strethaddress_to_identifier('0x8f693ca8D21b157107184d29D398A8D082b38b76'): 'DATA',
strethaddress_to_identifier('0xAA2ce7Ae64066175E0B90497CE7d9c190c315DB4'): 'SUTER',
'RMRK': 'RMRK',
}

WORLD_TO_ICONOMI = {
Expand Down
1 change: 1 addition & 0 deletions rotkehlchen/assets/converters.py
Expand Up @@ -659,6 +659,7 @@
'SOL3S', # no cryptocompare/coingecko data
'SOV', # Couldn't find what assets is this one
'SPRK', # delisted
'SWP', # Couldn't find a list anouncement about this asset
'SUSHI3L', # no cryptocompare/coingecko data
'SUSHI3S', # no cryptocompare/coingecko data
'TCP', # The Crypto Prophecies no cryptocompare/coingecko data
Expand Down
Binary file modified rotkehlchen/data/global.db
Binary file not shown.
5 changes: 5 additions & 0 deletions rotkehlchen/tests/unit/test_assets.py
Expand Up @@ -165,6 +165,7 @@ def test_cryptocompare_asset_support(cryptocompare):
'BNC', # bifrost but another BNC in CC
ethaddress_to_identifier('0x9e6C59321CEB205d5d3BC6c539c017aF6159B16c'), # noqa: E501 # Mindcell but another MDC in CC
'TIME', # Wonderland but another TIME in CC
'STARS', # StarLaunch but another STARS in CC
)
for asset_data in GlobalDBHandler().get_all_asset_data(mapping=False):
potential_support = (
Expand Down Expand Up @@ -375,6 +376,10 @@ def test_coingecko_identifiers_are_reachable():
ethaddress_to_identifier('0x55648De19836338549130B1af587F16beA46F66B'),
# Spin protocol but spinada in coingecko
ethaddress_to_identifier('0x4F22310C27eF39FEAA4A756027896DC382F0b5E2'),
# REBL but another REBL (rebel finance) in coingecko
ethaddress_to_identifier('0x5F53f7A8075614b699Baad0bC2c899f4bAd8FBBF'),
# Sp8de (SPX) but another SPX in coingecko
ethaddress_to_identifier('0x05aAaA829Afa407D83315cDED1d45EB16025910c'),
)
for asset_data in GlobalDBHandler().get_all_asset_data(mapping=False):
identifier = asset_data.identifier
Expand Down

0 comments on commit e32881b

Please sign in to comment.