You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
194 lines
7.3 KiB
194 lines
7.3 KiB
package processor
|
|
|
|
type IntroInfo struct {
|
|
Pubdate string `json:"pubdate"`
|
|
TotalIssuance string `json:"total_issuance"`
|
|
TotalCirculation string `json:"total_circulation"`
|
|
CrowdfundingPrice string `json:"crowdfunding_price"`
|
|
WhitePaper string `json:"white_paper"`
|
|
OfficialWebsite string `json:"official_website"`
|
|
BlockChainExplorer string `json:"block_chain_explorer"`
|
|
}
|
|
|
|
var Intro = map[string]IntroInfo{
|
|
"BTC": IntroInfo{
|
|
Pubdate: "2009/1/3",
|
|
TotalIssuance: "21 million",
|
|
TotalCirculation: "18.70 million coins",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://bitcoin.org/bitcoin.pdf",
|
|
OfficialWebsite: "https://bitcoin.org/",
|
|
BlockChainExplorer: "https://www.blockchain.com/explorer",
|
|
},
|
|
"ETH": IntroInfo{
|
|
Pubdate: "2015/7/30",
|
|
TotalIssuance: "Unlimited",
|
|
TotalCirculation: "11.70 million coins",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://ethereum.org/whitepaper/",
|
|
OfficialWebsite: "https://ethereum.org/",
|
|
BlockChainExplorer: "https://etherscan.io/",
|
|
},
|
|
"USDT": IntroInfo{
|
|
Pubdate: "2014/11",
|
|
TotalIssuance: "No fixed limit",
|
|
TotalCirculation: "65.5 billion coins",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://tether.to/en/whitepaper",
|
|
OfficialWebsite: "https://tether.to/",
|
|
BlockChainExplorer: "https://etherscan.io/token/0xdac17f958d2ee523a2206206994597c13d831ec7",
|
|
},
|
|
"BNB": IntroInfo{
|
|
Pubdate: "2017/7/14",
|
|
TotalIssuance: "200 million tokens",
|
|
TotalCirculation: "168 million coins",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://www.binance.com/resources/ico/Binance_WhitePaper_en.pdf",
|
|
OfficialWebsite: "https://www.binance.com/",
|
|
BlockChainExplorer: "https://bscscan.com/token/0xbb4cdb9cbd36b01bd1cbaebf2de08d9173bc095c",
|
|
},
|
|
"USDC": IntroInfo{
|
|
Pubdate: "2018/9/26",
|
|
TotalIssuance: "No fixed limit",
|
|
TotalCirculation: "33.2 billion coins",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://www.centre.io/pdfs/centre-whitepaper.pdf",
|
|
OfficialWebsite: "https://www.circle.com/en/usdc",
|
|
BlockChainExplorer: "https://etherscan.io/token/0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48",
|
|
},
|
|
"XRP": IntroInfo{
|
|
Pubdate: "2012",
|
|
TotalIssuance: "100 billion tokens",
|
|
TotalCirculation: "46.8 billion tokens",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://ripple.com/files/ripple_consensus_whitepaper.pdf",
|
|
OfficialWebsite: "https://ripple.com/currency/",
|
|
BlockChainExplorer: "https://bithomp.com/explorer/",
|
|
},
|
|
"ADA": IntroInfo{
|
|
Pubdate: "2017/9/29",
|
|
TotalIssuance: "45 billion tokens",
|
|
TotalCirculation: "31.9 billion tokens",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://www.cardanohub.org/zh/academic-papers-3",
|
|
OfficialWebsite: "https://www.cardano.org/",
|
|
BlockChainExplorer: "https://cardanoexplorer.com/",
|
|
},
|
|
"DOGE": IntroInfo{
|
|
Pubdate: "2013/12/6",
|
|
TotalIssuance: "Unlimited",
|
|
TotalCirculation: "Approximately 130 billion tokens.",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "-",
|
|
OfficialWebsite: "https://dogecoin.com/",
|
|
BlockChainExplorer: "https://blockchair.com/dogecoin",
|
|
},
|
|
"SOL": IntroInfo{
|
|
Pubdate: "2020/3/23",
|
|
TotalIssuance: "5 billion tokens.",
|
|
TotalCirculation: "Approximately 10.1 million tokens.",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://solana.com/solana-whitepaper.pdf",
|
|
OfficialWebsite: "https://solana.com/",
|
|
BlockChainExplorer: "https://solscan.io/",
|
|
},
|
|
"TRX": IntroInfo{
|
|
Pubdate: "2017/9/26",
|
|
TotalIssuance: "1 trillion tokens.",
|
|
TotalCirculation: "Approximately 716 billion tokens",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://tron.network/static/doc/white_paper_v_2_0.pdf",
|
|
OfficialWebsite: "https://tron.network/",
|
|
BlockChainExplorer: "https://tronscan.org/",
|
|
},
|
|
"LTC": IntroInfo{
|
|
Pubdate: "2011/10/13",
|
|
TotalIssuance: "84 million tokens",
|
|
TotalCirculation: "68 million tokens",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "-",
|
|
OfficialWebsite: "https://litecoin.org/",
|
|
BlockChainExplorer: "https://blockchair.com/litecoin",
|
|
},
|
|
"DOT": IntroInfo{
|
|
Pubdate: "2020/8/21",
|
|
TotalIssuance: "Approximately 105 million tokens",
|
|
TotalCirculation: "Approximately 102 million tokens",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://polkadot.network/PolkaDotPaper.pdf",
|
|
OfficialWebsite: "https://polkadot.network/",
|
|
BlockChainExplorer: "https://polkascan.io/",
|
|
},
|
|
"MATIC": IntroInfo{
|
|
Pubdate: "2019/4",
|
|
TotalIssuance: "10 billion tokens",
|
|
TotalCirculation: "Approximately 6.8 billion tokens",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://whitepaper.matic.network/",
|
|
OfficialWebsite: "https://polygon.technology/",
|
|
BlockChainExplorer: "https://polygonscan.com/",
|
|
},
|
|
"BCH": IntroInfo{
|
|
Pubdate: "2017/8/1",
|
|
TotalIssuance: "21 million tokens.",
|
|
TotalCirculation: "19 million tokens.",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://www.bitcoincash.org/bitcoin.pdf",
|
|
OfficialWebsite: "https://www.bitcoincash.org/",
|
|
BlockChainExplorer: "https://blockchair.com/bitcoin-cash",
|
|
},
|
|
"WBTC": IntroInfo{
|
|
Pubdate: "2019/1/",
|
|
TotalIssuance: "180,000 tokens.",
|
|
TotalCirculation: "180,000 tokens.",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "-",
|
|
OfficialWebsite: "https://wbtc.network/",
|
|
BlockChainExplorer: "https://etherscan.io/token/0x2260fac5e5542a773aa44fbcfedf7c193bc2c599",
|
|
},
|
|
"DAI": IntroInfo{
|
|
Pubdate: "2017/12/17",
|
|
TotalIssuance: "No fixed limit",
|
|
TotalCirculation: "10.1 billion coins",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://makerdao.com/whitepaper/",
|
|
OfficialWebsite: "https://makerdao.com/",
|
|
BlockChainExplorer: "https://etherscan.io/token/0x6b175474e89094c44da98b954eedeac495271d0f",
|
|
},
|
|
"TON": IntroInfo{
|
|
Pubdate: "-",
|
|
TotalIssuance: "500 million",
|
|
TotalCirculation: "-",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://ton.org/whitepaper.pdf",
|
|
OfficialWebsite: "https://ton.org/",
|
|
BlockChainExplorer: "https://www.blockchain.com/explorer",
|
|
},
|
|
"AVAX": IntroInfo{
|
|
Pubdate: "2020/9/22",
|
|
TotalIssuance: "700 million tokens",
|
|
TotalCirculation: "251 million tokens.",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://www.avalabs.org/whitepapers",
|
|
OfficialWebsite: "https://www.avax.network/",
|
|
BlockChainExplorer: "https://cchain.explorer.avax.network/",
|
|
},
|
|
"SHIB": IntroInfo{
|
|
Pubdate: "2020/8/",
|
|
TotalIssuance: "10 trillion tokens",
|
|
TotalCirculation: "5 trillion",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "https://github.com/shytoshikusama/shibawoofpaper/raw/main/SHIBAINU_Ecosystem_WOOF_Paper.pdf",
|
|
OfficialWebsite: "https://www.shibatoken.com/",
|
|
BlockChainExplorer: "https://etherscan.io/token/0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce",
|
|
},
|
|
"BUSD": IntroInfo{
|
|
Pubdate: "2019/9/6",
|
|
TotalIssuance: "No fixed limit",
|
|
TotalCirculation: "38.3 billion coins",
|
|
CrowdfundingPrice: "-",
|
|
WhitePaper: "-",
|
|
OfficialWebsite: "https://www.binance.com/en/busd",
|
|
BlockChainExplorer: "https://bscscan.com/token/0xe9e7cea3dedca5984780bafc599bd69add087d56",
|
|
},
|
|
}
|
|
|