Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Public dataset of labelled TON blockchain addresses

After each commit to the main branch artefacts are compiled and pushed:
* To [the build branch](https://github.com/shuva10v/ton-labels/blob/build/assets.json) - may be useful for manual checking addresses
* To [the build branch](https://github.com/shuva10v/ton-labels/blob/build/assets.json) ([json](https://github.com/shuva10v/ton-labels/blob/build/assets.json), [csv](https://github.com/shuva10v/ton-labels/blob/build/assets.csv)) - may be useful for manual checking addresses
* To TON Public Data Lake: s3://ton-blockchain-public-datalake/v1/ton-labels/json/
* To Dune: **dune.ton_foundation.dataset_labels** table

Expand Down
2 changes: 2 additions & 0 deletions build_assets.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,5 @@
for row in output_df.to_dict(orient="records"):
f.write(json.dumps(row))
f.write("\n")

output_df.to_csv("output/json/assets.csv", index=False)
Loading