Bitcoin Forum
May 03, 2024, 06:47:36 PM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 [34] 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 ... 176 »
  Print  
Author Topic: deleted thread  (Read 145433 times)
bitsta
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


r00t-dev


View Profile
May 06, 2014, 01:29:42 PM
 #661

#59 ON CMC






+1
1714762056
Hero Member
*
Offline Offline

Posts: 1714762056

View Profile Personal Message (Offline)

Ignore
1714762056
Reply with quote  #2

1714762056
Report to moderator
1714762056
Hero Member
*
Offline Offline

Posts: 1714762056

View Profile Personal Message (Offline)

Ignore
1714762056
Reply with quote  #2

1714762056
Report to moderator
1714762056
Hero Member
*
Offline Offline

Posts: 1714762056

View Profile Personal Message (Offline)

Ignore
1714762056
Reply with quote  #2

1714762056
Report to moderator
"You Asked For Change, We Gave You Coins" -- casascius
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
Vann
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 606



View Profile
May 06, 2014, 01:32:11 PM
 #662

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me    


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa


No mention that the coin was ninja launched and close to 50 blocks (with the highest rewards) were insta-mined BEFORE the announcement was made. That is NOT 'normal nowadays'. Normally the coins with the lowest diff at the start go to solo-miners that get setup the quickest and NOT pools like this suggests. Pools usually take  at least a couple of minutes AFTER the coin is released and that is with an announcement made well in advance, not a ninja launch like this was. Many coins will also start with the lowest block rewards at the start to avoid insta-mining, this is the opposite of what this coin has done. The insta-mining on this coin began BEFORE and after the announcement was made. Which make this an insta-mine SCAM coin with the largest rewards going to the 50 blocks mined BEFORE the release.
regmann
Full Member
***
Offline Offline

Activity: 126
Merit: 100


View Profile
May 06, 2014, 01:34:00 PM
 #663

lets get some promo going

https://twitter.com/Dragnar12/status/463671907326242816/photo/1  < retweet plz

Mrboot
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000


View Profile
May 06, 2014, 01:37:43 PM
 #664

Buy now cause it will hit 1000 today trust me
bitsta
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


r00t-dev


View Profile
May 06, 2014, 01:38:02 PM
 #665

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me     


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa




EAT THIS TROLLS!  SHIBE GOING TO DA MOOOOOOON. such community. many professional. much WoW!
neilyobanks
Newbie
*
Offline Offline

Activity: 6
Merit: 0


View Profile
May 06, 2014, 01:38:27 PM
 #666

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me    


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa


No mention that the coin was ninja launched and close to 50 blocks (with the highest rewards) were insta-mined BEFORE the announcement was made. That is NOT 'normal nowadays'. Normally the coins with the lowest diff at the start go to solo-miners that get setup the quickest and NOT pools like this suggests. Pools usually take  at least a couple of minutes AFTER the coin is released and that is with an announcement made well in advance, not a ninja launch like this was. Many coins will also start with the lowest block rewards at the start to avoid insta-mining, this is the opposite of what this coin has done. The insta-mining on this coin began BEFORE and after the announcement was made. Which make this an insta-mine SCAM coin with the largest rewards going to the 50 blocks mined BEFORE the release.

is it possible to see somewhere how many coins were made in the first 50 blocks
TrollboxChamp
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
May 06, 2014, 01:39:56 PM
 #667



OOOOOOOOOOOOOOOOOOOOOOOOOO  Grin Cool Shocked
Alty
Hero Member
*****
Offline Offline

Activity: 714
Merit: 500


RISE Project Manager


View Profile
May 06, 2014, 01:42:32 PM
 #668


Very Beautiful Logo
ptic-1
Sr. Member
****
Offline Offline

Activity: 336
Merit: 250


View Profile
May 06, 2014, 01:44:03 PM
 #669

such mega size picture

so so


but Ilike 80s blue debug window


█ B █ T █ C █12J89RucSq2vX5m5TcC5fP3PwVUrtWHn4c█ B █ T █ C █
MsCollec
Legendary
*
Offline Offline

Activity: 1400
Merit: 1000


View Profile
May 06, 2014, 01:44:10 PM
 #670

Buy now cause it will hit 1000 today trust me


Yes Mr boot... 1000 Satoshi.. Are you not the guy that predicted 300 yesterday   Roll Eyes
Mrboot
Legendary
*
Offline Offline

Activity: 1204
Merit: 1000


View Profile
May 06, 2014, 01:44:52 PM
 #671

Buy now cause it will hit 1000 today trust me


Yes Mr boot... 1000 Satoshi.. Are you not the guy that predicted 300 yesterday   Roll Eyes

Oke and were is it now Wink
bitsta
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


r00t-dev


View Profile
May 06, 2014, 01:46:08 PM
 #672


is it possible to see somewhere how many coins were made in the first 50 blocks


hi neilyobanks,

you can check it in the blockexplorer: http://blockexplorer.uni.me
just type in the blocknumber (for example 1) and you will se how many coins
were in that block.


we counted it for you.
first 50 blocks were: 50 x 125.000 = 6.250.000 SHIBE

but we also checked the addresses: so the premine address is: SPwicy5rt9q95oPXHYS9r6esVpMsMq6kNQ

we will release an TOP 100 list in the next few days.

MsCollec
Legendary
*
Offline Offline

Activity: 1400
Merit: 1000


View Profile
May 06, 2014, 01:48:46 PM
 #673

Buy now cause it will hit 1000 today trust me


Yes Mr boot... 1000 Satoshi.. Are you not the guy that predicted 300 yesterday   Roll Eyes

Oke and were is it now Wink

Getting there $1 in the next few days    Grin
Vann
Hero Member
*****
Offline Offline

Activity: 1036
Merit: 606



View Profile
May 06, 2014, 01:51:36 PM
 #674

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me    


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa


No mention that the coin was ninja launched and close to 50 blocks (with the highest rewards) were insta-mined BEFORE the announcement was made. That is NOT 'normal nowadays'. Normally the coins with the lowest diff at the start go to solo-miners that get setup the quickest and NOT pools like this suggests. Pools usually take  at least a couple of minutes AFTER the coin is released and that is with an announcement made well in advance, not a ninja launch like this was. Many coins will also start with the lowest block rewards at the start to avoid insta-mining, this is the opposite of what this coin has done. The insta-mining on this coin began BEFORE and after the announcement was made. Which make this an insta-mine SCAM coin with the largest rewards going to the 50 blocks mined BEFORE the release.

is it possible to see somewhere how many coins were made in the first 50 blocks

50 x 125,000 = 6,250,000 + the '0.5% premine' that is highlighted in the OP.
jimn
Sr. Member
****
Offline Offline

Activity: 360
Merit: 250


View Profile
May 06, 2014, 01:58:14 PM
 #675

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me    


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa


No mention that the coin was ninja launched and close to 50 blocks (with the highest rewards) were insta-mined BEFORE the announcement was made. That is NOT 'normal nowadays'. Normally the coins with the lowest diff at the start go to solo-miners that get setup the quickest and NOT pools like this suggests. Pools usually take  at least a couple of minutes AFTER the coin is released and that is with an announcement made well in advance, not a ninja launch like this was. Many coins will also start with the lowest block rewards at the start to avoid insta-mining, this is the opposite of what this coin has done. The insta-mining on this coin began BEFORE and after the announcement was made. Which make this an insta-mine SCAM coin with the largest rewards going to the 50 blocks mined BEFORE the release.

is it possible to see somewhere how many coins were made in the first 50 blocks

50 x 125,000 = 6,250,000 + the '0.5% premine' that is highlighted in the OP.

im here on launch, and yes it is the best ninja launch. make the announcement after the launch of the coin hahahha
u are only make rich the dev Grin


                              ████████████████
                           ████████████████████████
                    ████████                      ██████
                   █████                █████       ███████
               █████                 █████████            ███
            ████   █████   ██████████████████████           ████
           ████   █████████████████████████████████          ████
         ███      ███████████         █████████████████         ████
         ██       ███████████        ██████████     ████████████  ███
       ███        ████████████████████       ██       ██████████   ███
      ████      █████████       ██████       ████     ███████████   ██
     ████     ████    ██     ███     ██████████████████████████     ███
     ██       ████   ███     ████    ██████    ███    █████████      ███
   ███      ████     ████████████████████████  ███      ████████      ███
   ███   ███████████████     ███████████████████████   ███   ███      ███
  ████ █████████████   ██   ██████████████████ ███████████   ████     ████
  ████ ███████████     ███████████        ████████    ████   ████       ██
  ████ ███████████     █████ ████          ███████    █████  ████       ██
  ████   ██████████  ████████████          ████████████   ██████████    ██
  ████    █████   ██████   ██████          ████  █████    ███████████   ██
  ████     ████    █████   ███████       █████████████     ██████████ ████
   ███     ████    ██████████ ███████████████████  ███    ███████████ ████
   ███      ████   ██    ██████████████████  ██    ████████████████   ███
   ████     █████████    ████████████████████████ ██████    █████     ███
     ██     █████████      ██    ████████ ████████████     ████      ███
      ███   ████████████████████████████  ████     ███    ███       ██
      ████  ██████████████████████   ████████      ███ █████       ███
       ████ ███████████      ███      █████████████████████      ████
         ███████████████     ████    █████   ██████████████      ███
          ████         ███████████████        ██████████████   ████
           ████         ████████████████     ██████████████  ████
              █████         ███████████████████       ██  █████
               █████         █████████████              █████
                   ██████       ██████             ███████
                        ██████████████  ████████████
                            ██████████████████████
Gaze Coin

  BLOCKCHAIN-VR/AR TOKEN 


=
  [Facebook][Twitter][Telegram]
[Reddit] [Steemit]
bryanlee38
Newbie
*
Offline Offline

Activity: 63
Merit: 0


View Profile
May 06, 2014, 02:00:49 PM
 #676

wanted to buy: up to 2 btc of shibecoin. Pm me if u keen to sell.
bitsta
Hero Member
*****
Offline Offline

Activity: 518
Merit: 500


r00t-dev


View Profile
May 06, 2014, 02:05:30 PM
 #677

ANALYSIS-REPORT: SHIBECOIN
by bitsta, ra1nb0wdash & goldmann


dear shibe-community,

you maybe already know me or bitsta from the asiacoin-thread. it was us who detected
the asiacoin-scam. we got a lot of messages from SHIBE-users regarding an analysis of SHIBE.
well as there seems to be a huge interest in this coin, we have made a detailed analysis-report which
is going to be published on our new coming coinanalysis-website. This is the short report:


we have finished the analysis of shibecoin which consisted of:
  • hex debug (analysis of memory hops)
  • analysis of data/networkcommunication
  • analysis of sourcecodes
  • analysis of blockchain
  • setting up an 3rd party blockexplorer: http://blockexplorer.uni.me


1. hex debug:
analysing the memory-hops/hex debug of shibecoin-qt on windows & OSX 10.9.2
showed ordinary processcommunication with memory.

2. analysis of data/networkcommunication:
the seednodes are beeing requested form the seednode which is
hardcoded into the wallet. there is no other "hidden" communication
except the std. walletcommunication.
Code:
// DNS seeds
// Each pair gives a source name and a seed name.
// The first name is used as information source for addrman.
// The second name should resolve to a list of seed addresses.
static const char *strDNSSeed[][2] = {
    {"levitation", "levitation.theshibecoin.com"},
    {"magnetic", "magnetic.theshibecoin.com"},
    {"testnetfield", "testnetfield.theshibecoin.com"},
};

3. analysis of sourcecodes:
sourcecodes are clean and we can confirm that there are no hidden codes
or "edited" functions:
getinfo --> moneysupply is beeing requested by function ValueFromAmount();
Code:
obj.push_back(Pair("moneysupply",   ValueFromAmount(pindexBest->nMoneySupply)));
ValueFromAmount() is clean:
Code:
Value ValueFromAmount(int64 amount)
{
    return (double)amount / (double)COIN;
}
we also checked all other rpcfunctions and can confirm that they are all clean.

4. analysis of blockchain:
the analysis of the blockchain showed that all mined blocks contained the amounts
which are declared in the OP. No hidden "superblocks".

5. we set up an blockexplorer so you can make yourself sure everything is legit:
http://blockexplorer.uni.me     


summary: shibecoin is a 100% legit coin. there was a small instamine, but thats totally normal nowadays because some pools with huge miningpower start at low diff and therefore get a lot of blocks. there is a fair distribution of the coins over the network. we will release a TOP 100 list in the next few days.

tips appreciated: SV3eTFiVnuN478ESbjnA7WDQejcag3LFFa




EAT THIS TROLLS!  SHIBE GOING TO DA MOOOOOOON. such community. many professional. much WoW!

Palaxidon
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


Hi, Im Bitcoin trader and crypto enthusiast.


View Profile WWW
May 06, 2014, 02:09:44 PM
 #678

someone have working nodes for windows wallet? Ty..

CryptoPoolSupport
Member
**
Offline Offline

Activity: 112
Merit: 10


View Profile
May 06, 2014, 02:10:28 PM
 #679

A FRIENDLY REMINDER BY

Get your SHIBE coins here!

* Dedicated servers with SSD
* 10 Gbit/s network
* DDoS protection
* Mail support
* Backups of all wallets and pools
* Professional team
* The natural choice for mining!
* There is a mining fee of 1% and donations are appreciated!

HELP SPREAD THE HASH - MINE WITH CRYPTOPOOL:EU!!

TrollboxChamp
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile
May 06, 2014, 02:11:50 PM
 #680

162.243.234.210:18815
192.241.148.230:18815
173.74.122.155:18815
66.85.150.119:18815
174.45.80.214:18815
173.57.144.238:18815
64.90.187.253:18815
90.213.157.255:18815
67.249.18.92:18815
50.142.234.175:18815
174.25.40.140:18815
68.99.103.155:18815

Someone posted these earlier. I synced up right away no adding of nodes.

Weird.
Pages: « 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 [34] 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 ... 176 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!