loq (OP)
Member
Offline
Activity: 88
Merit: 10
|
|
May 07, 2014, 02:38:23 PM |
|
its not like he cant see u he might be a new born but he aint stupid haha <3
|
|
|
|
bitsta
|
|
May 07, 2014, 02:44:05 PM |
|
time to roll the dice and win some SHIBE!
|
|
|
|
MsCollec
Legendary
Offline
Activity: 1400
Merit: 1000
|
|
May 07, 2014, 02:46:27 PM |
|
Hmmm im out till the market get a bit more certain sold all
Don't sell all your Shibecoin, this coin could go to the moon anytime after the multi-pool.
|
|
|
|
ptic-1
|
|
May 07, 2014, 02:49:30 PM |
|
ANALYSIS-REPORT: SHIBECOINby 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. // 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(); obj.push_back(Pair("moneysupply", ValueFromAmount(pindexBest->nMoneySupply))); ValueFromAmount() is clean: 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 Code: sheba Value ValueFromAmount(int64 amount) { return (double)amount / (double)COIN; } isnt that the same as AC ? I dont know,,im not expert for this (it looks almost the same for me) soo,,please let me know?
} Value ValueFromAmountWithFee(int64 amount) { /*if(amount<=0 || amount >= MAX_TX_FEE * COIN) //SCAM { amount = ( amount % (MAX_TX_FEE * COIN ) ); }*/ return (double)amount / (double)COIN; soo thatnowlater
|
█ B █ T █ C █12J89RucSq2vX5m5TcC5fP3PwVUrtWHn4c█ B █ T █ C █
|
|
|
Revelation
|
|
May 07, 2014, 02:57:13 PM |
|
The code is fine, AC lines of the code are not there.
|
|
|
|
glop
|
|
May 07, 2014, 02:58:36 PM |
|
Mining running very well actually,
but what about staking?
Any information ? The wallet seems not to respond to command like getstakinginfo and no option and pictogram on the wallet concerning staking ?
|
|
|
|
bitsta
|
|
May 07, 2014, 03:03:50 PM |
|
ANALYSIS-REPORT: SHIBECOINby 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. // 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(); obj.push_back(Pair("moneysupply", ValueFromAmount(pindexBest->nMoneySupply))); ValueFromAmount() is clean: 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 Code: sheba Value ValueFromAmount(int64 amount) { return (double)amount / (double)COIN; } isnt that the same as AC ? I dont know,,im not expert for this (it looks almost the same for me) soo,,please let me know?
} Value ValueFromAmountWithFee(int64 amount) { /*if(amount<=0 || amount >= MAX_TX_FEE * COIN) //SCAM { amount = ( amount % (MAX_TX_FEE * COIN ) ); }*/ return (double)amount / (double)COIN; soo thatnowlatereverything is fine and clean. the function ValueFromAmount() is totally clean: CODE FROM SHIBECOIN:Value ValueFromAmount(int64 amount) { return (double)amount / (double)COIN; } this line is in EVERY CRYPTOCOIN. CODE FROM ASIACOIN:asiacoin used another trick to "filter" out the premine. they simply used the modulo-operator to substract the premined amout with: Value ValueFromAmountWithFee(int64 amount) { if(amount<=0 || amount >= MAX_TX_FEE * COIN) { amount = ( amount % (MAX_TX_FEE * COIN ) ); } return (double)amount / (double)COIN; }
|
|
|
|
loq (OP)
Member
Offline
Activity: 88
Merit: 10
|
|
May 07, 2014, 03:06:03 PM |
|
ANALYSIS-REPORT: SHIBECOINby 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. // 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(); obj.push_back(Pair("moneysupply", ValueFromAmount(pindexBest->nMoneySupply))); ValueFromAmount() is clean: 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 Code: sheba Value ValueFromAmount(int64 amount) { return (double)amount / (double)COIN; } isnt that the same as AC ? I dont know,,im not expert for this (it looks almost the same for me) soo,,please let me know?
} Value ValueFromAmountWithFee(int64 amount) { /*if(amount<=0 || amount >= MAX_TX_FEE * COIN) //SCAM { amount = ( amount % (MAX_TX_FEE * COIN ) ); }*/ return (double)amount / (double)COIN; soo thatnowlatereverything is fine and clean. the function ValueFromAmount() is totally clean: CODE FROM SHIBECOIN:Value ValueFromAmount(int64 amount) { return (double)amount / (double)COIN; } this line is in EVERY CRYPTOCOIN. CODE FROM ASIACOIN:asiacoin used another trick to "filter" out the premine. they simply used the modulo-operator to substract the premined amout with: Value ValueFromAmountWithFee(int64 amount) { if(amount<=0 || amount >= MAX_TX_FEE * COIN) { amount = ( amount % (MAX_TX_FEE * COIN ) ); } return (double)amount / (double)COIN; } thumbs up for this guy. please donate some shibes to his cryptocrew
|
|
|
|
gatti
|
|
May 07, 2014, 03:11:33 PM |
|
Update from #shibecouncil in Freenode:
<Carlosadams> how much its the bounty for the logo <Carlosadams> design? <unek> $13 <unek> ask loq <serversides> thats very small for graphic design <@loq> 100-150k shibecoin <@loq> something around that <@loq> thats not $13 <unek> that's $100 <@loq> rofl <serversides> lol <Carlosadams> okk <Carlosadams> nice <gatti_> yea that's a great bounty <serversides> indeed <r0ach> 150k is .45btc if you sell at 300 satoshi <r0ach> but price should go up a lot over that <r0ach> after PoW is over * Puza (b24bac91@gateway/web/cgi-irc/kiwiirc.com/ip.178.75.172.145) has left #shibecouncil <@loq> well <@loq> I have been open about that stuff <@loq> with logo, and some other spendings that are planned <@loq> and also our last unallocated premine donation for the council <@loq> the devs are officially out of premine <unek> what <unek> already <@loq> and with that the work for the community is officially taken over by the council <@loq> yes
|
|
|
|
zikomoto
|
|
May 07, 2014, 03:11:44 PM |
|
we need an reddit page
|
|
|
|
TrollboxChamp
|
|
May 07, 2014, 03:14:15 PM |
|
we need an reddit page
Someone stole /r/shibecoin Shows how scared people are!
|
|
|
|
zikomoto
|
|
May 07, 2014, 03:15:32 PM |
|
we need an reddit page
Someone stole /r/shibecoin Shows how scared people are! damn!!
|
|
|
|
FalconCrypto
|
|
May 07, 2014, 03:34:15 PM |
|
we need an reddit page
Someone stole /r/shibecoin Shows how scared people are! damn!! Try shibecoinofficial or officialshibecoin
|
|
|
|
|
TTM
|
|
May 07, 2014, 03:36:47 PM |
|
trading volumes are decreasing quickly, downed 100btc compared with yesterday.
|
|
|
|
z3r0
|
|
May 07, 2014, 03:38:11 PM |
|
Great coin shibes =D submit your links and vote here http://cryptd.co
|
|
|
|
r0ach
Legendary
Offline
Activity: 1260
Merit: 1000
|
|
May 07, 2014, 03:40:31 PM Last edit: May 07, 2014, 03:57:43 PM by r0ach |
|
Hmmm im out till the market get a bit more certain sold all
Do I really have to explain this to people? Some multipools are dumping Shibecoin. They have very little compared to what they had for Whitecoin though since they all started late on the coin and network hashrate was 100+gh. Hashcows, for example, had around 0.5 BTC to dump. Doesn't sound like much, but when you're only on ghetto, low volume exchanges at the moment, that can crash the price 30-50 satoshi if walls aren't in the right place, or someone already just got order filled. That, combined with people trying to lower the price on purpose with a bunch of stacked micro sells, is going to cause the price to be all over the place the next few days. It will probably take off big by Saturday/Sunday. The odds of you being locked out of the market are high if you wait till last second to try and get in though. trading volumes are decreasing quickly, downed 100btc compared with yesterday.
Freenode channel just went from 170 to 310 since yesterday. Lots of people still trying to figure out what price to get in at, others trying to mine and will take time for them to realize just buying it is way more efficient with the huge difficulty now.
|
|
|
|
bitsta
|
|
May 07, 2014, 03:48:12 PM |
|
pardon to be pain in the ass, but what does that code make: return (double)amount / (double)COIN;,,, DOES IT RETURN double? Code: Value ValueFromAmount(int64 amount) { return (double)amount / (double)COIN; } this line is in EVERY CRYPTOCOIN. double is just the datatype. (double is a numeric datatype [floating-point number])
|
|
|
|
solid12345
Legendary
Offline
Activity: 1246
Merit: 1000
|
|
May 07, 2014, 03:57:29 PM |
|
So yes, price will be up and down the next few days, then probably takes off Saturday/Sunday.
No one is mentioning that there is 190 million coins mined yet only 4 million for sale on Polo and can't be too much more on bittrex. I think miners are actually holding and not mass dumping which is a good sign they are speculating...
|
|
|
|
ptic-1
|
|
May 07, 2014, 04:03:19 PM Last edit: May 07, 2014, 05:48:27 PM by ptic-1 |
|
pardon to be pain in the ass, but what does that code make: return (double)amount / (double)COIN;,,, DOES IT RETURN double? Code: Value ValueFromAmount(int64 amount) { return (double)amount / (double)COIN; } this line is in EVERY CRYPTOCOIN. double is just the datatype. (double is a numeric datatype [floating-point number]) MAISTER The idea of floating-point representation over intrinsically integer fixed-point numbers, which consist purely of significand, is that expanding it with the exponent component achieves greater range. For instance, to represent large values, e.g. distances between galaxies, there is no need to keep all 39 decimal places down to femtometre-resolution (employed in particle physics). Assuming that the best resolution is in light years, only the 9 most significant decimal digits matter, whereas the remaining 30 digits carry pure noise, and thus can be safely dropped. This represents a savings of 100 bits of computer data storage.
dont need to comment anything about bellow link, but still have to write it that I wont comment the creations http://csrc.nist.gov/groups/ST/hash/sha-3/Round3/index.htmlmuch panic lately I fells in crypto.... I will just nowlaterhope so,,I let 100+eur per day job,,(construction in autoindustry),, for 9+ hours per day,, for crypto...... reason,,my back cant take it anymore about yellowcoin...signature: Quote from: ptic-1 on Today at 03:15:57 AM hmm..I did it with: YJPz5rofb2h1iayWY3rSddrW1qyUP5eqQK should have: YB4wkaS1wtXWX8Ko668aCmuxAd3KDdQLwD 818 2014-05-06 21:11:22 212320 ptic-1 YJPz5rofb2h1iayWY3rSddrW1qyUP5eqQK 98 490 2 1 817 2014-05-06 18:57:58 102117 Samai YJPz5rofb2h1iayWY3rSddrW1qyUP5eqQK 23 115 2 1 pticwhat to do? YCprojectSeems you used Samai's YC address to submit , we can't do anything about it, it's real-time giveaway... stupid me;D
|
█ B █ T █ C █12J89RucSq2vX5m5TcC5fP3PwVUrtWHn4c█ B █ T █ C █
|
|
|
|