Bitcoin Forum
May 06, 2024, 01:11:24 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
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 85 86 87 »
881  Alternate cryptocurrencies / Announcements (Altcoins) / Re: | ARDOR | Scalable Blockchain-as-a-Service Platform | Proof of Stake on: March 29, 2017, 02:38:39 AM
Sorry, I didn't read all de earlier posts, but
What is the exact benefit that Ardor coin owners will have from the Ardor child chains?
it is only the price change of ardor coins or will there be other income from the child chains?


Forging all child chains and receiving the ARDR fees from the forged blocks.

Maybe will be lottery on it also like on Nxt to receive more tokens.

ARDR has its own client? Not only a token?
882  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [BCAP] THE FIRST DIGITAL LIQUID VENTURE FUND - BLOCKCHAIN CAPITAL FUND on: March 28, 2017, 02:45:07 PM
Just wait for 3rd April for more details.
883  Alternate cryptocurrencies / Announcements (Altcoins) / Re: | ARDOR | Scalable Blockchain-as-a-Service Platform | Proof of Stake on: March 28, 2017, 02:30:56 PM
FYI, newcomers!
Did you know you can mine NXT (and buy Ardor with it on the Nxt Asset Exchange!) in the Lucky node project?
Computational and bandwidth requirements are very low - some users run it on a Raspberry Pi.
Run the node 24/7 or as often as you can while you work or play.
Join in with the over 100 nodes that are already in the project.


Lucky node project is still working?
Actually, I use my linux to run nxt client for 24/7.
884  Alternate cryptocurrencies / Announcements (Altcoins) / Re: | ARDOR | Scalable Blockchain-as-a-Service Platform | Proof of Stake on: March 28, 2017, 02:28:43 PM
Is James in the dev's team?

885  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [PRE-ANN] SONM - Supercomputer Organized by Network Mining (GRIB technology) on: March 28, 2017, 02:13:22 PM
A good idea.

Ripple had also used BONIC to distribute.

Are they similar?

886  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][DASH] Dash (dash.org) | First Self-Funding Self-Governing Crypto Currency on: March 27, 2017, 02:20:45 PM
Price slowly going down now I might but at  < 0.06

Won't happen unless btc explodes.

Let's see. Everything is possible.
887  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ZID] Identity | SINGULARITY roadmap --> DNA | AI | no ICO, no premine on: March 26, 2017, 03:42:59 PM
That offer of free distribution still stands or it is over ? I didn't go through every single page as just now found about this topic. I think those amount for every single person is suitable and reasonable when there is zero premine. Any answer would be appreciated a lot in this this regard.

Free coin will be available in the future.
Now you need mine them if you wanna have them.
888  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ZID] Identity | SINGULARITY roadmap --> DNA | AI | no ICO, no premine on: March 26, 2017, 03:41:38 PM
Hello everyone,Why can not I continue to install here? help me! Thank you!
Linux ubuntu 14.4


Following the instructions, run apt-get update first.
889  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AQUA | Fluidity on the Blockchain | 1000 total coins | AIRDROP ON SLACK on: March 26, 2017, 07:27:10 AM
The time is not friendly for me. I will be sleeping then.  Angry Angry
890  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN][ICO][ADX]Iadix Coin POS Purenode 3D+HTML5 Blockchain, ICO COMING SOON on: March 26, 2017, 07:22:36 AM
Hello Smiley

Some news from the developpment Smiley

i have put online the new block explorer :

http://iadix.com/ico/blocks/en

Which include a filter system, the api looks like this :

http://iadix.com/ico/api/blocks?height<86000&tx*>2&size>400



https://github.com/iadix/purenode/blob/master/block_explorer/block_explorer.c#L212


Code:
	

tree_manager_set_child_value_i64(result, "height", height);
tree_manager_set_child_value_i32(result, "size", size);
tree_manager_set_child_value_hash(result, "hash", block_hash);
tree_manager_set_child_value_i32(result, "confirmations", nblks-height);
tree_manager_set_child_value_i32(result, "time", time);
tree_manager_set_child_value_i32(result, "version", version);
tree_manager_set_child_value_i32(result, "bits", bits);
tree_manager_set_child_value_i32(result, "nonce", nonce);


for (qv = 0; req->query_vars[qv].value.len > 0; qv++)
{
if (!tree_node_keval_i64(result, &req->query_vars[qv]))
{
release_zone_ref(&block);
return 0;
}
}



I also added a mechanism to buffer blocks that are potentially orphaned, and being able to put a node on testing to test a few blocks and rollback the current chain to the fork point if the other chain is longer.

https://github.com/iadix/purenode/blob/master/purenode/main.c#L1182

Code:
if (testing>0)
{
hash_t lh;
int new_len,cur_len;

if (!tree_manager_get_child_value_hash(node, NODE_HASH("last_header_hash"), lh))
node_get_hash_idx(testing-1, lh);

tree_manager_create_node ("log", NODE_LOG_PARAMS, &log);
tree_manager_set_child_value_hash (&log, "ph", prevHash);
tree_manager_set_child_value_hash (&log, "lh", lh);
log_message (" testing block '%ph%' -- '%lh%'", &log);
release_zone_ref (&log);

if (memcmp_c(prevHash, lh, sizeof(hash_t)))
{
release_zone_ref(&header);
return 0;
}

new_len = node_add_block_header(node, &header);
cur_len = get_last_block_height();

tree_manager_create_node("log", NODE_LOG_PARAMS, &log);
tree_manager_set_child_value_i32(&log, "new_len", new_len);
tree_manager_set_child_value_i32(&log, "cur_len", cur_len);
log_message("testing chain at height : %new_len% - %cur_len%", &log);
release_zone_ref(&log);

if (new_len > cur_len)
{
mem_zone_ref last_blk = { PTR_NULL };
int n;
uint64_t lost_reward;

lost_reward = 0;
n = cur_len;
while ((n--) > testing)
{
char chash[65];
hash_t h;
uint64_t reward;

if (!node_get_hash_idx(n, h))continue;

n = 0;
while (n<32)
{
chash[n * 2 + 0] = hex_chars[h[n] >> 4];
chash[n * 2 + 1] = hex_chars[h[n] & 0x0F];
n++;
}
chash[64] = 0;

if (is_pow_block(chash))
reward=get_blockreward(n);
else
get_stake_reward(n, &reward);

lost_reward += reward;
}

tree_manager_create_node("log", NODE_LOG_PARAMS, &log);
tree_manager_set_child_value_i32(&log, "testing", testing);
log_message("truncate chain to height : %testing%", &log);
release_zone_ref(&log);

if(node_truncate_chain(testing))
{
if (tree_manager_find_child_node(&self_node, NODE_HASH("last pos block"), NODE_BITCORE_BLK_HDR, &last_blk))
{
unsigned int pBits;
if (compute_last_pos_diff(&last_blk, &pBits))
tree_manager_set_child_value_i32(&self_node, "current pos diff", pBits);
else
tree_manager_set_child_value_i32(&self_node, "current pos diff", 0x1FFFFFFF);

release_zone_ref(&last_blk);
}

sub_moneysupply (lost_reward);

log_output ("switching to new chain \n");
tree_manager_set_child_value_i32(node, "testing_chain", 0);
}
}
release_zone_ref(&header);
return 0;
}

if (!tree_manager_find_child_node(payload, NODE_HASH("txs"), NODE_BITCORE_TX_LIST, &tx_list)){ release_zone_ref(&header); return 1; }
if (!tree_manager_find_child_node(payload, NODE_HASH("signature"), NODE_BITCORE_ECDSA_SIG, &sig)){ release_zone_ref(&tx_list); release_zone_ref(&header); return 1; }
tree_manager_get_node_istr(&sig, 0, &signature, 0);
release_zone_ref(&sig);

ret = node_is_next_block (&header, &lastBlk);
if (!ret)
{
ret = check_node_chain(node, &header, &keep_block);
if (!ret)
{
free_string(&signature);
release_zone_ref(&header);
release_zone_ref(&tx_list);
return (keep_block==1)?0:1;
}
}


And also 2 command line parameters to rebuild local index and re validate local block chain, or looking for corrupt data.

Code:
launcher rebuildtxs

To recheck the block headers and tx indexes.

Code:
launcher rebuildsupply

To recheck block reward and proof of stake/proof of work to rebuild the money supply.


Additionally i started to write some more in depth documentation about the memory model, and the binary module system :

http://iadix.com/articles/viewarticle/en/purenode%20memory%20and%20component%20programming%20model_0/blogs/purenode

I'll probably update it to add more example and better page formatting Smiley

Still no date from the ICO, nothing is really heavily tested for the moment, don't hesitate to mentions bugs or errors or comments Smiley

Normally i just have to finish the page with the 3D demo, and we can start to get more precise with the ICO details, with the escrowed coins and the official detail, and the bounty campain.

Thanks for your patience Smiley


The dev's positive attitude may make a likely success in the future. Keep my eye on it. And look forward to the ico.
891  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 10 Million USD raised in 90 minutes! [ANN][Qtum]UTXO based POS Smart Contracts on: March 26, 2017, 07:03:20 AM
When are they going to release the coin? i hope we dont have to wait till mainnet is launched.

It's not possible to release the tokens until the main network is finished. 

Can you look into the log-in problem on the ICO dashboard please ? Cheers !

This is for Bizhongchou? We will contact them right now.

Thanks, yes Bizhongchou, when I log-in I get
"Sorry, that email address is already used!
ERROR: Couldn’t register you in wordpress... please contact the webmaster !"
I have changed my password and everything, nothing is working

scammed? Look after your money.
892  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ZID] Identity | SINGULARITY roadmap --> DNA | AI | no ICO, no premine on: March 25, 2017, 09:02:48 AM
Decided to update a couple links:

globalblocks.getglobalid.com

instead of getglobalid.com/GlobalBlocks

globalpool.getglobalid.com


instead of getglobalid.com/GlobalPool

Those still work but now i added the subdomains

The pool only has two workers. Where are the others?

The hash rate of three pools posted in op is only 1/5 of the total hash rate.
Is there any other pool?

Zid.mypool.name

zid.hashpool.eu

mypool+hashpool+globalpool ~ 3-4kh/s, while the total hash rate is >12hk/s.
893  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 10 Million USD raised in 90 minutes! [ANN][Qtum]UTXO based POS Smart Contracts on: March 25, 2017, 07:17:49 AM

Glebby's real age: 57

Glebby's mental age: 5  Grin


That's it! I'm telling theymos that you're picking on me. You're in so much trouble now. Expect a timeout, dude.

HAHA! this one is funny, look at all the name calling, slander and insults you directed to me!

And now you're pissed  Grin

Lets go back to the topic, shall we?

QTUM is a big scam.

What we shall do is to leave this thread. Just wait for the justification by time.
894  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AQUA | Fluidity on the Blockchain | 1000 total coins | Next Release TBA on: March 25, 2017, 07:11:30 AM
The faucets will run out over the next couple of hours, there are now 26 left at the time of this post.

http://freewav.es/

http://fortunetoken.wavesdrop.com/

http://wavesdrop.com/

http://wavesgo.com/account.html?3PLWSXDAuqFPUyxFnhXSx8rzhw9SLdiqDL6

http://wavesgo.com/account.html?3PE9n5HRUsU6kjknatxPfvam7WmKy8EJcRW

There are the links to the faucets and the links to the block explorer that shows the transactions and current balances. I'm going to delete these links from the original post now.

update: only 10+7 AQUA left.
Hurry up if you are thirsty.
895  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ZID] Identity | SINGULARITY roadmap --> DNA | AI | no ICO, no premine on: March 25, 2017, 07:05:02 AM
Decided to update a couple links:

globalblocks.getglobalid.com

instead of getglobalid.com/GlobalBlocks

globalpool.getglobalid.com


instead of getglobalid.com/GlobalPool

Those still work but now i added the subdomains

The pool only has two workers. Where are the others?

The hash rate of three pools posted in op is only 1/5 of the total hash rate.
Is there any other pool?
896  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] [ZID] Identity | SINGULARITY roadmap --> DNA | AI | no ICO, no premine on: March 25, 2017, 06:58:16 AM
Decided to update a couple links:

globalblocks.getglobalid.com

instead of getglobalid.com/GlobalBlocks

globalpool.getglobalid.com


instead of getglobalid.com/GlobalPool

Those still work but now i added the subdomains

The pool only has two workers. Where are the others?
897  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BYTEBALL: Totally new consensus algorithm + private untraceable payments on: March 25, 2017, 04:10:20 AM
sorry, but I have an innocent question:
why are there two coins: byte and blackbyte?
What's the difference? Huh Huh

Blackbyte is a private untraceable currency while byte is not.

so Byteball has two currencies?
we can trade them both separately,right?
898  Alternate cryptocurrencies / Announcements (Altcoins) / Re: BYTEBALL: Totally new consensus algorithm + private untraceable payments on: March 25, 2017, 02:03:53 AM
sorry, but I have an innocent question:
why are there two coins: byte and blackbyte?
What's the difference? Huh Huh
899  Alternate cryptocurrencies / Announcements (Altcoins) / Re: 10 Million USD raised in 90 minutes! [ANN][Qtum]UTXO based POS Smart Contracts on: March 25, 2017, 01:46:36 AM
I love how Roger Ver's name was probably the main selling point for this coin, but now that BU is being exposed for what it is he has lost any remaining credibility within the BTC core community.

He is a pure speculator and complete a clown, never trust him any more. Sick of him.

Agreed! If you invest your own money to a suck coin just because of some big names' words, you are total fool.
Only you take the responsibility for your money!
900  Alternate cryptocurrencies / Announcements (Altcoins) / Re: [ANN] AQUA | Fluidity on the Blockchain | 1000 total coins | Airdrop Has Ended on: March 24, 2017, 12:02:51 PM
The faucet is really shity.

Waiting for a whole hour, and submit my request. Resulting as an error:

Quote
The faucet system encountered an error. Common causes:
- Those bloody faucet bugs(webmaster has received details of the error and will fix it asap)
- Node is temporarily unresponsive(Please try again in a few minutes)
- Faucet system is being upgraded(we try to keep these downtimes as short as possible but hey, it probably means new features!)

Then, refresh the website:
Quote
Current Block: 421076 - You need to wait 57 more blocks until your next claim.

 Angry Angry Angry
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 85 86 87 »
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!