ORBS: Monthly Swap Volume

    This analytics is done to visualize the Swaps metrics of transaction that is done using ORBS token

    Loading...
    Loading...

    1.0 Methodology

    Table used: ethereum.dex_swaps

    Two tables are going to constructed and combined using inner join; one for measuring ORBS swapped for other tokens, the other is to measure number of ORBS acquired by swap using other token.

    1.1 ORBS Acquisition via swaps

        1- From ethereum.dex_swaps
    
        2- Filter using token_address='0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa' and direction='IN'
    
        3- extract date_trunc('month',t) , platform , sum(amount_in) 
    
        4- group by month
    
        5- This will give number of ORBS acquired via swaps
    

    1.2 ORBS Disposal via swaps

        1- From ethereum.dex_swaps
    
        2- Filter using token_address='0xff56cc6b1e6ded347aa0b7676c85ab0b3d08b0fa' and direction='OUT'
    
        3- extract date_trunc('month',t) , platform , sum(amount_in) 
    
        4- group by month
    
        5- This will give number of ORBS disposed via swaps
    

    1.3 Combine 1.1 and 1.2

       1- Combine 1.1 and 1.2 using inner join
    
       2- With month and platform as common factor
    

    2.0 Results

    The below chart shows the volume of ORBS disposed and acquired via Swaps. The highest volume is during Month of June.

    The volume of ORBS disposed and acquired have slight difference, mostly is the volume of Orbs disposed is usually higher than acquired. but the difference still shows healthy diffrence indicating there are no massive dump yet.

    Loading...

    2.1 Swaps Volume metrics by Month

    2.2 Swaps Volume by Platform

    The below chart shows the Volume of swaps distributed by Platform. The swaps only occurs on Sushiswap and Uniswap. This shows that most swaps occurs on Uniswap.