Skip to content
Open
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
591 changes: 0 additions & 591 deletions burns.csv

This file was deleted.

3,054 changes: 2,105 additions & 949 deletions data/burns.csv

Large diffs are not rendered by default.

2,175 changes: 1,558 additions & 617 deletions data/mints.csv

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
424 changes: 0 additions & 424 deletions mints.csv

This file was deleted.

2,106 changes: 0 additions & 2,106 deletions src/burns.csv

This file was deleted.

1,559 changes: 0 additions & 1,559 deletions src/mints.csv

This file was deleted.

2 changes: 1 addition & 1 deletion src/plots/burns-pair-frequency.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ def plot_token_pairs(filename, min_occurrences):
plt.show()

# Example usage: Plot token pairs with occurrences >= 5
plot_token_pairs('burns.csv', 15)
plot_token_pairs('../data/burns.csv', 15)
2 changes: 1 addition & 1 deletion src/plots/pools-heatmap.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

def plot_heatmap(volume_threshold, token_symbols=None):
# Load the data from the CSV file
df = pd.read_csv('pools.csv')
df = pd.read_csv('../data/pools.csv')

# Create a new column for the token pair
df['token_pair'] = df['token0_symbol'] + '/' + df['token1_symbol']
Expand Down
2 changes: 1 addition & 1 deletion src/plots/pools-volume-barchart.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ def plot_volume_bar_chart(csv_file, filter_tokens=None, volume_threshold=0):
plt.show()

# Example usage:
plot_volume_bar_chart('pools.csv', filter_tokens=['USD', 'ETH', 'EUR', 'BTC'], volume_threshold=100_000_000)
plot_volume_bar_chart('../data/pools.csv', filter_tokens=['USD', 'ETH', 'EUR', 'BTC'], volume_threshold=100_000_000)
2 changes: 1 addition & 1 deletion src/plots/uniswap-spider.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,4 @@ def plot_spider(csv_file):
plt.show()

# Example usage
plot_spider('uniswap_pools.csv')
plot_spider('../data/uniswap_pools.csv')