Pages:
Author

Topic: CoinMarketCap.com - Market Cap Rankings of All Cryptocurrencies! - page 7. (Read 639534 times)

drm
legendary
Activity: 1176
Merit: 1005
Don't know what is wrong but if my math is right, BTX should be around the top50 coins in coinmarketcap at the moment..  The numbers are way off, weird.

very strange indeed  Roll Eyes Roll Eyes Roll Eyes


How clear does it need to be for you coinmarketcap? This perfectly explains it to you:

CMC lists an incorrect marketcap for quite a few coins.

Anyway.. to clear a few misconceptions, circulating supply means coins that have recently been sent or addresses known to be active (CMC gives no indication of the time cut-off however). A fairly stupid measuring metric to be honest.
Total marketcap are coins generated 'to date' or in existence at any given point.
If coins were sent to an address; and the owner lost the private key - this does not affect the marketcap total, as said coins still exist and are valid on the blockchain.
The Bitcoin holders 'forked' coins don't matter, if they were reimbursed with BTX due to the snapshot - the BTX they were sent already existed beforehand.

To find the to the minute (and correct) coinmarketcap:
Ensure your baking tray is lightly greased, along with a txindex'd copy of bitcored, mix with python 2.7 and gently stir python-bitcoinrpc library in (pip install python-bitcoinrpc). Don't forget to add your rpcuser/pass otherwise rpc comms will fail.

Code:
from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
import time, os, sys

def find_between( s, first, last ):
    try:
        start = s.index( first ) + len( first )
        end = s.index( last, start )
        return s[start:end]
    except ValueError:
        return ""

def find_between_r( s, first, last ):
    try:
        start = s.rindex( first ) + len( first )
        end = s.rindex( last, start )
        return s[start:end]
    except ValueError:
        return ""

# user-config section
rpchost = '127.0.0.1'
rpcuser = ''
rpcpass = ''
rpcport = '8556'

rpcpipe = AuthServiceProxy('http://' + rpcuser + ':' + rpcpass + '@' + rpchost + ':' + rpcport)
currentblk = 0
totalcoincap = 0

while True:

   currentblk=currentblk+1

   #get total blocks
   while True:
     blocktotal = int(rpcpipe.getblockcount())
     if currentblk == blocktotal:
        print 'hit end of chain, waiting'
        time.sleep(15)
     else:
        break

   #request each block
   blockhash = rpcpipe.getblockhash(currentblk)
   blockdata = rpcpipe.getblock(blockhash)
   blocktx = find_between(str(blockdata),'[',']').replace('u','').replace(' ','').replace('\'','')
   blocktxlist = blocktx.split(',')

   #parse all tx in block
   for tx in blocktxlist:
       rawtx = rpcpipe.getrawtransaction(tx)
       # generated pow/pos coins have no prevout
       if '0000000000000000000000000000000000000000000000000000000000000000' in rawtx:
          break

   #decode the 'generated/mined' tx data, extract the value
   coinbasetx = rpcpipe.decoderawtransaction(rawtx)
   valuemined = find_between(str(coinbasetx), 'Decimal(\'', '\'),')

   #special case for nonstandard pool where coinbaseout isn't first vout
   while float(valuemined)==0:
      try:
        valuemined = find_between_r(str(coinbasetx), 'Decimal(\'', '\'),')
      except:
        valuemined = 0
        print '* could not find vout for block '+str(currentblk)+'!'
        break

   totalcoincap = totalcoincap + float(valuemined)
   currentblk_fmt = str(currentblk)
   while len(str(currentblk_fmt)) < 6:
     currentblk_fmt=' '+currentblk_fmt

   print 'block '+str(currentblk_fmt)+'|'+blockhash+'|mined '+str(round(float(valuemined),8))+'|coincap '+str(round(float(totalcoincap),8))



We can see as of block 95,338; a total of 16,678,946.0337BTX are in existence.

as of block 95,338; a total of 16,678,946.0337BTX are in existence.

Nobody is asking you to count the airdrop wallet. Calculating the circulating supply should be a piece of cake, thanks.
member
Activity: 293
Merit: 19
We even got a calculation code in our topic for the correct BTX amount.

https://bitcointalksearch.org/topic/m.25820198

sr. member
Activity: 882
Merit: 252
Don't know what is wrong but if my math is right, BTX should be around the top50 coins in coinmarketcap at the moment..  The numbers are way off, weird.
full member
Activity: 307
Merit: 100
0xb58D6E68944e195420843fA98c4A3481a5914282
CMC needs to fix their incorrect data on BTX , period, there are other forks that are counting the coins as they should.  There is a Token called XNN and they have done airdrop and all their coins are counted as in circulation.  There is absolutely no need for CMC to be holding back BTX unless they have an agenda to keep BTX down because they know adding correct amount of coins in circulation will sky rocket BTX to the top 25 and and A LOT more people will take notice and BTX will be in direct competition with BTG and BCH (ScamCash).  I really do think this is the reason why they have not fixed it all this time.  They say they are waiting on the devs, but yet the devs have given CMC all the information they need.

Come on, that's getting out of hand here. Why would CMC have an agenda against BTX?
newbie
Activity: 58
Merit: 0
CMC needs to fix their incorrect data on BTX , period, there are other forks that are counting the coins as they should.  There is a Token called XNN and they have done airdrop and all their coins are counted as in circulation.  There is absolutely no need for CMC to be holding back BTX unless they have an agenda to keep BTX down because they know adding correct amount of coins in circulation will sky rocket BTX to the top 25 and and A LOT more people will take notice and BTX will be in direct competition with BTG and BCH (ScamCash).  I really do think this is the reason why they have not fixed it all this time.  They say they are waiting on the devs, but yet the devs have given CMC all the information they need.
sr. member
Activity: 794
Merit: 272
Can't believe the owner of CMC is an scammer. amazing how every rich owner turns out to scams.

Not every!

It is wrong of you to assume or stereotype.

#crysx

But CMC definitely seems to be these days.
newbie
Activity: 34
Merit: 0
coin market cheat is rigged ... we need another market watcher
newbie
Activity: 43
Merit: 0
So many people demanding BTX to be fixed... You should just do it to get rid of so many complains Smiley

Well, now its a good time to fix that number ...  We done Buying Cool
full member
Activity: 350
Merit: 100
At least give a explaination of the btx registration lagency. It is a nice coin pls be handle it like it is.
member
Activity: 293
Merit: 19
They don't put the coins form "virtual" fork into account.

But I don't understand why. The dev's took the exact state from BTC-chain (2nd Nov)., like any other fork. (BCH, BTG..)
Multiplied that with 0.5 and did import that even with the same addresses into the Bitcore-chain.
So anybody with a valid BTC address has access to his BTX, same as the other forks ...

So why do they get their forked values accounted into their circulating supply and not BTX?
member
Activity: 444
Merit: 31
Still a manic miner
They just dont want to fix it.

They are adding crapcoins daily. They have an interest in delaying BTX success.
sr. member
Activity: 476
Merit: 266
full member
Activity: 214
Merit: 100
The updated btx numbers are still wrong , there is no reason not to fix it if you have btg and bcash listed.
full member
Activity: 560
Merit: 106
they just scam people and put the numbers they wants. someone paying them to don't fix it. shame!
full member
Activity: 728
Merit: 100
After so many appeals from people and a team of developers, providing evidence, you must correct the circulating turnover of BTX coins. Or at least to declare all the reasons for which you can not do it. If you can not explain it, then many people are already inclined to think that you are playing someone else's dishonest game.
drm
legendary
Activity: 1176
Merit: 1005
The updated value is now:

Circulating Supply
1,808,259 BTX

still far from reality but moving the right way .....

Why do you even bother doing this Gliss? There is nobody who cares about an incorrect supply being updated with the incorrect numbers...again.
member
Activity: 293
Merit: 19
The updated value is now:

Circulating Supply
1,808,259 BTX

still far from reality but moving the right way .....
member
Activity: 280
Merit: 10
If CMC don't want to fix Bitcore (BTX) circulation for more than a month they have its own reasons for sure.
But I'm not sure that they are reading this thread...
jr. member
Activity: 39
Merit: 1
At least tell us why you don't want to fix btx circulating supply
sr. member
Activity: 882
Merit: 252
We would love to promote BTX with the link of https://coinmarketcap.com/currencies/bitcore/ if the circulating supply would be correct.  Grin
Yep same here, BTX is an awesome coin but the numbers are incorrect it seems
Pages:
Jump to: