Skip to content

Commit

Permalink
fix eth cluster mappings
Browse files Browse the repository at this point in the history
  • Loading branch information
soad003 committed May 29, 2024
1 parent 3cb563f commit 30b9a95
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).


## [24.01.4] 2024-05-29
### fixed
- clustermappings for eth did not work

## [24.01.3] 2024-03-29
### changed
- add new concept for tokens (defi_token)
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
SHELL := /bin/bash
PROJECT := tagpack-tool
VENV := .venv
RELEASE := 'v24.01.3'
RELEASE := 'v24.01.4'
# RELEASESEM := 'v1.9.0'

all: format lint test build
Expand Down
2 changes: 1 addition & 1 deletion src/tagpack/graphsense.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def get_address_ids(self, df: DataFrame, currency: str) -> DataFrame:
result = self._execute_query(statement, parameters)

if currency == "ETH":
result["address"] = result["address"].apply(lambda x: eth_address_to_hex(x))
result["address"] = result["address"].apply(eth_address_to_hex_str)
elif currency == "TRX":
# convert evm to t-style address
result["address"] = result["address"].apply(try_convert_to_tron)
Expand Down

0 comments on commit 30b9a95

Please sign in to comment.