Skip to content

Commit 18c67a8

Browse files
committed
initialize
1 parent b1c7373 commit 18c67a8

File tree

3 files changed

+119
-2
lines changed

3 files changed

+119
-2
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## **Please provide the following information for your Defi project.**
2+
Please include change to the `defiProjectList.json` file in the PR.
3+
DON'T modify any other project on the list.
4+
5+
##### Twitter Link:
6+
7+
##### List of audit links if any:
8+
9+
##### Homepage:
10+
11+
##### Logo (High resolution, preferably in .svg and .png, for application on both white and black backgrounds. Will be shown with rounded borders):
12+
13+
#### URL to get TVL:
14+
15+
##### Current TVL:
16+
17+
##### CoinMarketCap ID (so your TVL can appear on Coinmarketcap): (https://api.coinmarketcap.com/data-api/v3/map/all?listing_status=active,inactive,untracked&start=1&limit=10000)
18+
19+
##### Short Description:
20+
21+
##### Token address and ticker if any:
22+
23+
##### Pool addresses:
24+
25+
##### Category (Yield/DEX/Lending/Minting/Assets/Insurance/Options/Indexes/Staking) *Please choose only one:
26+
27+
##### Oracle used (WINkLink/Chainlink/Band/API3/TWAP or any other that you are using):
28+
29+
##### forkedFrom (Does your project originate from another project):
30+
31+
##### methodology (what is being counted as tvl, how is tvl being calculated):
32+

README.md

+84-2
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,84 @@
1-
# defi-list
2-
Tron Defi projects to be listed in https://tronscan.org/#/data/stats/tvl.
1+
# Adding new Defi project
2+
The JSON schema for Defi project includes: name, logoURI, homepage, CoinMarketCap ID, url, poolAddresses.
3+
4+
Follow the steps below to add a new token:
5+
1) Fork this repo.
6+
2) change the JSON file `defiProjectList.json`, adding such as: (PLEASE DO NOT REMOVE EXISITING PROJECTS)
7+
```
8+
{
9+
"name": "SunSwap",
10+
"logoURI": "https://coin.top/production/upload/logo/sun10.png",
11+
"homepage": "http://sun.io/",
12+
"CoinMarketCapID": "10529",
13+
"url": "https://apilist.tronscan.org/api/tvl",
14+
"category": "DEX",
15+
"poolAddresses": [
16+
"TKcEU8ekq2ZoFzLSGFYCUY6aocJBX9X31b",
17+
"TAkrcKsS5FW9f3ZfzvWy6Zvsz9uEjUxPoV"
18+
]
19+
}
20+
```
21+
* `CoinMarketCapID`: so your TVL can appear on Coinmarketcap. Find your ID through (https://api.coinmarketcap.com/data-api/v3/map/all?listing_status=active,inactive,untracked&start=1&limit=10000).
22+
23+
* `url`: the url result should be JSON format:
24+
```
25+
{
26+
"tvl": 3298643126.37
27+
}
28+
```
29+
where `3298643126.37` unit is `$` (dollar), is `tokenAmount * currentTokenPrice`.
30+
31+
* `category`: (Yield/DEX/Lending/Minting/Assets/Insurance/Options/Indexes/Staking) Please choose only one.
32+
33+
* `poolAddresses`: the pool contract addresses related with this Defi project.
34+
35+
3) Submit PR with the changed JSON file.
36+
37+
Follow the PR template below:
38+
```
39+
## **Please provide the following information for your Defi project.**
40+
Please include change to the `defiProjectList.json` file in the PR.
41+
DON'T modify any other project on the list.
42+
43+
##### Twitter Link:
44+
https://twitter.com/defi_sunio
45+
46+
##### List of audit links if any:
47+
https://sun.io/docs/slowmist_audit_report_cn_sun.pdf
48+
49+
##### Homepage:
50+
http://sun.io/
51+
52+
##### Logo (High resolution, preferably in .svg and .png, for application on both white and black backgrounds. Will be shown with rounded borders):
53+
https://coin.top/production/upload/logo/sun10.png
54+
55+
#### URL to get TVL:
56+
https://apilist.tronscan.org/api/tvl
57+
58+
##### Current TVL:
59+
$3298643126.37
60+
61+
##### CoinMarketCap ID (so your TVL can appear on Coinmarketcap): (https://api.coinmarketcap.com/data-api/v3/map/all?listing_status=active,inactive,untracked&start=1&limit=10000)
62+
10529
63+
64+
##### Short Description:
65+
SUN is first integrated platform for stablecoin swap, stake-mining and self-governance on TRON.
66+
67+
##### Token address and ticker if any:
68+
TSSMHYeV2uE9qYH95DqyoCuNCzEL1NvU3S
69+
70+
##### Pool addresses:
71+
TKcEU8ekq2ZoFzLSGFYCUY6aocJBX9X31b, TAkrcKsS5FW9f3ZfzvWy6Zvsz9uEjUxPoV.
72+
73+
##### Category (Yield/DEX/Lending/Minting/Assets/Insurance/Options/Indexes/Staking) *Please choose only one:
74+
DEX
75+
76+
##### Oracle used (WINkLink/Chainlink/Band/API3/TWAP or any other that you are using):
77+
WINkLink
78+
79+
##### forkedFrom (Does your project originate from another project):
80+
81+
##### methodology (what is being counted as tvl, how is tvl being calculated):
82+
All tokens staked in the pool MINUS borrowed assets are counted as TVL. Borrowed assets are not included in the TVL.
83+
84+
```

defiProjectList.json

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[
2+
3+
]

0 commit comments

Comments
 (0)