(可能有点离题,但按照以前的问题,如"有多少节点支持Ethereum经典?“和"售前地址有几个?",也许.)
"ERC-20的命名约定“这个问题让我纳闷:
澄清:
发布于 2017-11-28 20:32:20
以太扫描上写着:
总共有17724个Erc20令牌合同
这将是所有的令牌,后面的以太ERC20令牌标准接口。我计算了CoinMarketCap上构建在Ethereum上的所有令牌,其中有324 (来源)。
您还可以从下面的图表中看到构建在每个平台上的资产数量,取自本文:益母草是如何成为ICO数字资产选择平台的

发布于 2017-11-28 21:04:32
根据另一个答案中的讨论,我使用CoinMarketCap作为质量的仲裁者,而不是用更好的方法来清除所有那些被欺骗或从未被使用过的合同,或者由于其他原因不值得考虑的其他原因。
吃了无数的盐,但给出了生态系统的概念。(当我问我的模糊问题时,我想这就是我所得到的。)
结果:
Total token count: 409
-----------------------------
Ethereum 324
Waves 26
Omni 13
BitShares 11
Nxt 9
Counterparty 9
Burst 7
Ethereum Classic 2
NEO 2
Qtum 2
Ubiq 2
NEM 1
NuBits 1剧本(也许有更好的方法.):
#!/usr/bin/env python
import urllib
from bs4 import BeautifulSoup
import operator
page = urllib.urlopen("https://coinmarketcap.com/tokens/views/all/")
soup = BeautifulSoup(page.read())
token_dict = {}
token_count = 0
for token in soup.find_all('td', { 'class' : 'platform-name' }):
token_count += 1
if token.a.get_text() in token_dict:
token_dict[token.a.get_text()] += 1
else:
token_dict[token.a.get_text()] = 1
# Sort the dictionary, which creates a list of sorted tuples.
sorted_dict = sorted(token_dict.items(),
key = operator.itemgetter(1),
reverse = True)
print("\n{0:25} {1:10}".format("Total token count:", str(token_count)))
print("-----------------------------")
for i in sorted_dict:
print("{0:18} {1:10}".format(i[0], i[1]))发布于 2017-11-28 20:36:20
截至2017年11月28日,约有17724枚代金券。看看所有的令牌这里
在“以太经典”上,它仅仅是7个记号。看看他们,这里
IMHO,以太上的记号数总是最高的。此外,与任何其他平台相比,ethereum上令牌的增长速度也是最高的。
https://ethereum.stackexchange.com/questions/31922
复制相似问题