Provide and explore key health metrics, as well as detailed data on at least 1 key project.
In your analysis, provide visualizations of USN, USDC and USDT breakdowns (i.e. which dapps and addresses hold the majority of USDC and USDT, and what cumulative flows to & from exchanges look like over time)
1 - Project :
Pumpopoly is a virtual real estate simulator game. It can be played on all devices and is designed in pixel art on an animated HTML5 canvas.
The gameplay is simple. Players collect a salary from the treasury when moving on the map (Drive&Claim). Players who park on land owned by other players pay rent to the landlord (owner of the land). Parking is free at all city properties.
Its native token is $PUMPOPOLY.
Currently, the game offers 5 types of unique properties - minted on the NEAR blockchain, and unlocked as your credit score increases (which increases when you invite new players). There are 256 pixel art variations for each property type, with 1024 variations each, improving rental income as well.
The bulk of the community chats on Discord and giveaways are being made on Twitter.
Project 2 :Paras
Paras, an NFT marketplace for digital art cards, is one of the most active communities within the NEAR ecosystem. What began as a decentralized social media platform is now a vibrant mecca for crypto art. Everything from one-off artworks to themed series can be found on Paras.
Late last year, the Jakarta-headquartered team released a new product, Paras Comic. As the first home for digital comics on NEAR, writers and illustrators can upload their digital comics as collectible NFTs. Now, comics and crypto art fans alike can interact, engage, and support creators by buying NFTs, and even tipping the artists.
The Paras team isn’t stopping with NFT artworks and comics. As co-founder Rahmat “Riqi” Albariqi tells NEAR Foundation, Paras plans to release a few other features in the coming months. It’s all part of the plan to be a broad cultural hub for NFTs.
In the percentage charts below add liquidity Volume and dollar volume and number of users and number of transactions Checked based on pairs
- The highest volume for USDT<=>NEAR with about 32 percent
- The largest dollar volume for USDT<=>NEAR with about 17%
- Most users for USDT<=>NEAR with about 22%
- Most transaction for USDT<=>NEAR with about 22%
In the percentage charts below Volume and dollar volume and number of users and number of transactions Checked based on tokens
- The largest volume for NEAR with about 26%
- The largest dollar volume for NEAR with about 53%
- The most users for NEAR with about 45%
- The most transaction for NEAR with about 70%
In the diagram below In the Paras project The number of unique wallets offered and their growth Checked weekly checked
- The highest offer was in the second week of February 2022
In the diagram below Growing the number of tasks in the Pumpopoly project Based on the number of users Checked daily
- It seems that the move_player task has grown the most
Conclusion:
In this dashboard, we examined The Financial District, based on this →
1- Pumpopoly project:
- The most performed task is for move_player with about 87 percent
- The number of land purchases is about 456
- The number of game executions is 5640
- Mint number NFT 52
2- Paras project:
- The number of collections is about 102 thousand
- The number of new wallets is about 78 thousand
- The number of NFTs is about 475 thousand
- Purchase volume of about 2 million NEAR
- The number of offers is about 101 thousand
- The number of purchases is about 165 thousand
1-3- ref.finance project Tasks:
- The highest task for transfer with about 33%
- The second rank is for swap with about 28 percent
3-2 - ref.finance project - Swaps To:
- The largest volume for USDT with about 50%
- The largest dollar volume for NEAR with about 57%
- The largest swap volume on June 13, 2022
- The largest number of swaps on October 4, 2021
3-3 - ref.finance project - Swaps From:
- The highest volume for USDT with about 51%
- The largest dollar volume for NEAR with about 57%
- The largest swap volume on June 13, 2022
- The largest number of swaps on October 4, 2021
Discord ID: Sal☰h#1747
twitter : @saleh03188287
email : saleh.mz@gmail.com

3-4 - ref.finance-Deposit project:
- The largest deposit volume for USDT with around 54
- The largest deposit on May 9, 2022
- The highest depositor on April 18, 2022
3-5 - ref.finance-withdrawal project:
- The largest withdraw volume for USDC with about 52%
- The maximum withdrawal on October 25, 2021
- The largest withdraw volume on May 9, 2022
3-6 - ref.finance-Add liquidity project:
-
The largest volume for NEAR with about 26%
-
The largest dollar volume for NEAR with about 53%
-
The most users for NEAR with about 45%
-
The most transaction for NEAR with about 70%
7-3- ref.finance project - Add liquidity (pairs):
-
The highest volume for USDT<=>NEAR with about 32 percent
-
The largest dollar volume for USDT<=>NEAR with about 17%
-
Most users for USDT<=>NEAR with about 22%
-
Most transaction for USDT<=>NEAR with about 22%
4-1- Dapps-Holding→USDC:
- The largest volume was for the burrow. near project with about 68 percent
- The highest volume on April 18, 2022
4-2- Dapps-Holding→USN:
-
The highest is for ref-finance. near with about 66%
-
The highest volume on May 9, 2022
4-3- Dapps-Holding→USDT:
- The highest is for burrow. near with about 57%
- The highest volume on May 2, 2022
Methodology: In this review, three projects ==1- pumpopoly 2- Paras Superficially and statistically 3- The ref.finance project== was examined in depth: In the review of the ref.finance project:
-
Swaps were checked by the method of separating the top tokens to detect the number of decimals also
case when SYMBOL='USN' then 18 when SYMBOL='LiNEAR' then 24 when SYMBOL='stNEAR' then 24 when SYMBOL='NEAR' then 24 when SYMBOL='USDC' then 6 when SYMBOL='DAI' then 18 when SYMBOL='USDT' then 6 when SYMBOL='AURORA' then 18 when SYMBOL='wETH' then 18 when SYMBOL='wBTC' then 8 else 1 end as decimal
And also near.core.fact_receipts was used to extract swaps and only successful transactions were desired with the method status_value like '%Success%' From the table above
- Deposit and Withdrawal for the ref.finance project: The same method as above was used to separate the decimals of the tokens and the tokens USDT and NEAR and wETH and wBTC and AURORA and USDC and DAI It was examined and used to extract deposit data from the logs field in the near.core.fact_receipts table.
Add liquidity for the ref.finance project: To extract tokens from the method
regexp_replace(split_part( array_to_string(logs,','),' ',4) , '(",)') as token1
used And the near.core.fact_prices table was also used for their dollar prices And for pairs too Using join
join lst_token_price p1 on p1.TOKEN_CONTRACT = regexp_replace(split_part( array_to_string(logs,','),' ',4) , '(",)')
join lst_token_price p2 on p2.TOKEN_CONTRACT = regexp_replace(split_part( array_to_string(logs,','),' ',6) , '("],)')
join lst_price lp1 on lp1.TOKEN_CONTRACT = regexp_replace(split_part( array_to_string(logs,','),' ',4) , '(",)')
join lst_price lp2 on lp2.TOKEN_CONTRACT = regexp_replace(split_part( array_to_string(logs,','),' ',6) , '("],)')