Skip to content

sunshineluyao/uniswap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

90 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Uniswap Transaction Analysis Repository DOI

Replication Code and Data for: Uniswap Daily Transaction Indices by Network

Innovation and Inclusivity Statements: In line with the web3 ethos, this study provides open-source data and code, ensuring transparency and facilitating replicability. These resources are available at our GitHub repository, underscoring our commitment to decentralized, community-driven research practices. Our Python code in Jupyter Notebook can be run on both the cloud computing platform Google Colab and locally. We are dedicated to promoting diversity and inclusion, not only as research advocates but also in our own research practices.

Welcome to the Uniswap Transaction Analysis Repository! This repository provides data and code for replicability, allowing you to analyze transactions on Uniswap across multiple transaction networks, a decentralized exchange protocol built on Ethereum. Gain insights into Uniswap's transaction history and its impact on the decentralized finance (DeFi) ecosystem.

Full datasets including raw files are available on Harvard Dataverse:

Chemaya, Nir; Cong, Lin William; Jorgensen, Emma; Liu, Dingyue; Zhang, Luyao, 2023, "Replication Data for: Uniswap Daily Transaction Indices by Network", https://doi.org/10.7910/DVN/OSOR3P, Harvard Dataverse, V1

Table of Contents

Introduction

Uniswap is a leading decentralized exchange (DEX) protocol built on the Ethereum blockchain. It enables users to swap various ERC-20 tokens without the need for a traditional order book, providing liquidity and facilitating DeFi transactions.

Illustrations

The Time Range of Data Points

trend

Ethereum Transaction Trend uniswap_Polygon_transaction_trend
uniswap_Arb_transaction_trend uniswap_Opt_transaction_trend

volume

Ethereum Volume uniswap_Polygon_volume
uniswap_Arb_volume uniswap_Opt_volume

Entropy

Ethereum Entropy uniswap_Polygon_entropy
uniswap_Arb_entropy uniswap_Opt_entropy

Gini

Ethereum Gini uniswap_Polygon_gini
uniswap_Arb_gini uniswap_Opt_gini

HHI

Ethereum HHI uniswap_Polygon_HHI
uniswap_Arb_HHI uniswap_Opt_HHI

Nakamoto

Ethereum Nakamoto uniswap_Polygon_nakamoto
uniswap_Arb_nakamoto uniswap_Opt_nakamoto

Ethereum

uniswap_Eth_entropy uniswap_Eth_gini
uniswap_Eth_HHI uniswap_Eth_nakamoto
uniswap_Eth_transaction_trend uniswap_Eth_volume

Polygon

uniswap_polygon_entropy uniswap_polygon_gini
uniswap_polygon_HHI uniswap_polygon_nakamoto
uniswap_polygon_transaction_trend uniswap_polygon_volume

Arbitrum

uniswap_Arb_entropy uniswap_Arb_gini
uniswap_Arb_HHI uniswap_Arb_nakamoto
uniswap_Arb_transaction_trend uniswap_Arb_volume

Optimism

uniswap_Opt_entropy uniswap_Opt_gini
uniswap_Opt_HHI uniswap_Opt_nakamoto
uniswap_Opt_transaction_trend uniswap_Opt_volume

Key Concepts

Uniswap

Uniswap is a decentralized exchange protocol known for its automated market maker (AMM) model. It allows users to trade tokens directly from their wallets, providing liquidity and earning fees in the process.

Ethereum

Ethereum is a blockchain platform that enables the execution of smart contracts and the development of decentralized applications (DApps). Transactions on Ethereum involve the execution of these smart contracts and the transfer of Ether (ETH) and other tokens.

Layer-2 Solutions

Layer-2 solutions are protocols or technologies that are built on top of Layer-1 blockchains like Ethereum to improve scalability and reduce transaction costs. Optimism, Arbitrum, and Polygon are examples of Layer-2 solutions that aim to enhance Ethereum's performance.

Optimism

Introduction: Optimism is a Layer-2 scaling solution for Ethereum, employing Optimistic Rollup technology to increase transaction throughput while reducing gas fees. It's EVM-compatible, making it easy for Ethereum developers to migrate their projects.

Advantages:

  • Scalability: Optimism significantly boosts Ethereum's TPS, ideal for high-demand applications.
  • Reduced Fees: Transaction costs are lowered, benefiting DeFi and other Ethereum-based activities.

Use Cases:

  • DeFi: DeFi platforms leverage Optimism for high transaction volumes and cost-efficiency.
  • Gaming: Online games and applications with quick, low-cost transactions find Optimism beneficial.

Arbitrum

Introduction: Arbitrum is a Layer-2 Ethereum scaling solution using Optimistic Rollup. It enhances throughput and reduces latency, ensuring EVM compatibility for seamless project migration.

Advantages:

  • High Throughput: Arbitrum increases Ethereum's transaction capacity significantly.
  • Low Latency: Fast transaction confirmations enhance the user experience.

Use Cases:

  • DEXs: Decentralized exchanges leverage Arbitrum for smoother and cheaper trading.
  • NFT Marketplaces: Quick and efficient NFT transactions benefit from Arbitrum.

Polygon

Introduction: Polygon offers multiple sidechains and PoS consensus to scale Ethereum. It fosters interoperability and accommodates various dApps, attracting developers and users alike.

Advantages:

  • Scalability Options: Polygon provides sidechains with flexible decentralization, balancing performance and security.
  • Ecosystem Growth: A vibrant ecosystem with diverse projects and DApps makes Polygon appealing.

Use Cases:

  • DeFi: Many DeFi projects utilize Polygon for low costs and faster confirmations.
  • Gaming and NFTs: Scalability and cost-efficiency make Polygon popular in these domains.

Measures

Understood. Here's the updated section that includes a discussion of the range for Shannon Entropy and the adjustment to the HHI Index range:


Measures

In this section, we'll introduce various measures used to analyze daily transaction values on different Layer-2 scaling solutions, including Optimism, Arbitrum, and Polygon.

Transaction Volume: Daily Total Transaction Value in USD

Definition: Transaction volume refers to the total daily transaction value conducted on a platform, typically measured in USD. It provides insights into the economic activity within a network.

Example: Suppose we want to calculate the daily transaction volume for Optimism. In a single day, the platform records transactions with values of $10, $20, $30, and so on. The daily total transaction volume would be calculated as follows:

Daily Transaction Volume (USD) = Sum of Transaction Values
                             = $10 + $20 + $30 + ...

Transaction Decentralization Measured in Shannon Entropy

Definition: Shannon Entropy is a measure of the degree of randomness or uncertainty in a dataset. In the context of daily transaction decentralization, it can be used to assess the distribution of daily transaction values among various entities. Higher entropy values indicate greater decentralization.

Example: Let's consider an example with three entities (Entity A, Entity B, and Entity C) and their daily transaction values on a Layer-2 network:

  • Entity A: $5,000 daily transaction value
  • Entity B: $3,000 daily transaction value
  • Entity C: $2,000 daily transaction value

To calculate Shannon Entropy:

  1. Calculate the proportion of daily transaction values for each entity:

    • Proportion A = (5,000 / Total Daily Transaction Value) * 100
    • Proportion B = (3,000 / Total Daily Transaction Value) * 100
    • Proportion C = (2,000 / Total Daily Transaction Value) * 100
  2. Calculate Shannon Entropy using the formula:

    H(X) = - Sum of (Proportion * Log2(Proportion))
    

    Calculate H(X) and then transform it as 2^H to get the Shannon Entropy value.

Range: The range for Shannon Entropy is between 1 (when there's a single entity with 100% of the transaction value) and infinity (maximum entropy when values are evenly distributed among entities). The exact maximum value depends on the number of entities.

Transaction Decentralization Measured in Gini Index

Definition: The Gini Index is a measure of income or wealth inequality, and it can be adapted to assess the distribution of daily transaction values. It ranges from 0 to 1, where 0 indicates perfect equality (every entity has the same share), and 1 indicates perfect inequality (one entity has all the daily transaction values).

Example: Consider the same three entities from the previous example:

  • Entity A: $5,000 daily transaction value
  • Entity B: $3,000 daily transaction value
  • Entity C: $2,000 daily transaction value

To calculate the Gini Index:

  1. Arrange the daily transaction values in ascending order: [$2,000, $3,000, $5,000].

  2. Calculate the Lorenz Curve, which represents the cumulative distribution of daily transaction values.

  3. Calculate the area between the Lorenz Curve and the line of perfect equality.

  4. Normalize the area to obtain the Gini Index.

Range: The Gini Index ranges from 0 (perfect equality) to 1 (perfect inequality).

Transaction Decentralization Measured in HHI Index

Definition: The Herfindahl-Hirschman Index (HHI) is a measure of market concentration, but it can also be applied to assess the concentration of daily transaction values among entities in a network. It ranges from 0 to 10,000, where 0 indicates perfect decentralization, and 10,000 indicates perfect centralization (one entity controls all the daily transaction values).

Example: Let's use the same entities:

  • Entity A: $5,000 daily transaction value
  • Entity B: $3,000 daily transaction value
  • Entity C: $2,000 daily transaction value

To calculate the HHI Index:

  1. Calculate the market share of each entity (the proportion of daily transaction values they have):

    • Market Share A = (5,000 / Total Daily Transaction Value) * 100
    • Market Share B = (3,000 / Total Daily Transaction Value) * 100
    • Market Share C = (2,000 / Total Daily Transaction Value) * 100
  2. Square each market share and sum the squared values:

    $$HHI = (Market Share A^2) + (Market Share B^2) + (Market Share C^2)$$
    

    Calculate HHI and then transform it as $2^HHI$ to get the HHI Index.

Range: The HHI Index ranges from 0 (perfect decentralization) to 10,000 (perfect centralization).

Transaction Decentralization Measured in Nakamoto Index

Definition: The Nakamoto Index is a measure of decentralization that considers the distribution of daily transaction values among entities in a network. It assesses how many entities are needed to control a significant portion of the daily transaction values.

Example: Consider a Layer-2 network with five entities. The Nakamoto Index would measure how many of these entities are needed to control 51% or more of the daily transaction values.

  • Entity A: $6,000 daily transaction value
  • Entity B: $4,000 daily transaction value
  • Entity C: $2,000 daily transaction value
  • Entity D: $1,000 daily transaction value
  • Entity E: $500 daily transaction value

To calculate the Nakamoto Index:

  1. Arrange the entities in descending order of daily transaction values.

  2. Calculate the cumulative percentage of daily transaction values:

    • Cumulative % A = (6,000 / Total Daily Transaction Value) * 100
    • Cumulative % A+B = (Cumulative % A + Cumulative % B)
    • And so on...
  3. Determine how many entities are needed to reach a cumulative percentage of 51% or more. The Nakamoto Index is the minimum number of entities needed to control the majority of daily transaction values.

Range: The Nakamoto Index does not have a predefined range. It depends on the specific data and threshold you set for control (e.g., 51%). The Nakamoto Index is not inherently limited to a specific numerical range.

Repository Structure

This repository is organized as follows:

  • /data: Contains datasets related to Uniswap transactions and liquidity pools.
  • /code: Includes code for data collection, analysis, and visualization.
  • /figures: Figures files, including diagrams and visualizations