3months18w
|
|
August 28, 2014, 04:06:10 PM |
|
Regarding hero members in this thread . Is it time to get on bittrex ? More buy support is needed.
|
|
|
|
teknohog
|
|
August 28, 2014, 06:39:21 PM |
|
A couple of brief technical issues: The backupwallet RPC does not work on the daemon on my Linux box. It could be a botched build on my part, but it generally works on all other Bitcoin derivatives I've tried (about 20 of them), and the rest of cryptonited works fine. The log shows 2014-08-28 18:10:33 copied wallet.dat to /home/teknohog/test.dat
but there is no file to be found. Also, is there an RPC for finding the current total XCN out there? In some coins you can find it as "moneysupply" in getinfo.
|
|
|
|
bitfreak! (OP)
Legendary
Offline
Activity: 1536
Merit: 1000
electronic [r]evolution
|
|
August 28, 2014, 08:07:29 PM |
|
The backupwallet RPC does not work on the daemon on my Linux box. Yeah I think that issue was reported once before. We'll try to have it fixed in the next release. Also, is there an RPC for finding the current total XCN out there? In some coins you can find it as "moneysupply" in getinfo. I think the best way is to use listbalances to get the balance of the coinbase address (CGTta3M4t3yXu8uRgkKvaWd2d8DQvDPnpL) and then subtract the balance of the coinbase address from the total possible coin supply (2^64/10000000000) to calculate how many coins have already been mined (aka how many coins have been taken from the coinbase account).
|
XCN: CYsvPpb2YuyAib5ay9GJXU8j3nwohbttTz | BTC: 18MWPVJA9mFLPFT3zht5twuNQmZBDzHoWF Cryptonite - 1st mini-blockchain altcoin | BitShop - digital shop script Web Developer - PHP, SQL, JS, AJAX, JSON, XML, RSS, HTML, CSS
|
|
|
teknohog
|
|
August 28, 2014, 11:01:04 PM |
|
Also, is there an RPC for finding the current total XCN out there? In some coins you can find it as "moneysupply" in getinfo. I think the best way is to use listbalances to get the balance of the coinbase address (CGTta3M4t3yXu8uRgkKvaWd2d8DQvDPnpL) and then subtract the balance of the coinbase address from the total possible coin supply (2^64/10000000000) to calculate how many coins have already been mined (aka how many coins have been taken from the coinbase account). Cheers The reward formula is still a bit of a mystery, though. Solving reward = (2^64 - coins_so_far) * constant
gives a nice exponential formula for the reward as a function of height, but I'd rather use the coinbase to account for the large block penalty and whatnot.
|
|
|
|
bitfreak! (OP)
Legendary
Offline
Activity: 1536
Merit: 1000
electronic [r]evolution
|
|
August 28, 2014, 11:51:09 PM Last edit: August 29, 2014, 12:46:18 AM by bitfreak! |
|
I think the most correct way to calculate the current block reward is using this formula:
current_block_reward = 243.1 * (coinbase_account_balance / (264-1 / 10000000000))
243.1 XCN is the starting block reward in case you're wondering.
|
XCN: CYsvPpb2YuyAib5ay9GJXU8j3nwohbttTz | BTC: 18MWPVJA9mFLPFT3zht5twuNQmZBDzHoWF Cryptonite - 1st mini-blockchain altcoin | BitShop - digital shop script Web Developer - PHP, SQL, JS, AJAX, JSON, XML, RSS, HTML, CSS
|
|
|
bitfreak! (OP)
Legendary
Offline
Activity: 1536
Merit: 1000
electronic [r]evolution
|
|
August 29, 2014, 12:11:09 AM Last edit: August 29, 2014, 12:50:16 AM by bitfreak! |
|
Thought I'd post some screenshots of the web wallet I'm working on: Gallery: http://postimg.org/gallery/22befbl42/1c89816d/Making Payment: http://postimg.org/image/56rdrx4b5/Don't get too excited though, I haven't implemented any client side wallet encryption, so at this point it's really more like an alternative to the Qt wallet, but once it's finished I will create a fork with all the fancy javascript-based wallet encryption so that it can be used as a web wallet without worrying about the owner of the website stealing all your coins (like the blockchain.info web wallet). I personally like to use it instead of Qt because it provides better control over tx inputs and outputs and it also has a graphical interface for creating multi-signature addresses and transactions as well as an interface for controlling the withdrawal limit of an address. It also features a simple type of blockchain explorer built in the wallet and the home page of the wallet contains a bunch of useful info like the current coin supply, the current block reward, the current difficulty, the current block count, etc. The wallet script should be released within the next day or two, I'll upload it to the main github account when it's ready. Next task after the wallet is to create a blockchain explorer, which shouldn't take me too long. I'll include support for weird transactions like withdrawal limit updates (where the input is the same as the output) so that it's easier to understand how some of the new Cryptonite features work.
|
XCN: CYsvPpb2YuyAib5ay9GJXU8j3nwohbttTz | BTC: 18MWPVJA9mFLPFT3zht5twuNQmZBDzHoWF Cryptonite - 1st mini-blockchain altcoin | BitShop - digital shop script Web Developer - PHP, SQL, JS, AJAX, JSON, XML, RSS, HTML, CSS
|
|
|
heskey
|
|
August 29, 2014, 01:17:35 AM |
|
Good stuff!
|
██████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████████
|
|
|
polanskiman
|
|
August 29, 2014, 01:36:10 AM |
|
Thought I'd post some screenshots of the web wallet I'm working on: Gallery: http://postimg.org/gallery/22befbl42/1c89816d/Making Payment: http://postimg.org/image/56rdrx4b5/Don't get too excited though, I haven't implemented any client side wallet encryption, so at this point it's really more like an alternative to the Qt wallet, but once it's finished I will create a fork with all the fancy javascript-based wallet encryption so that it can be used as a web wallet without worrying about the owner of the website stealing all your coins (like the blockchain.info web wallet). I personally like to use it instead of Qt because it provides better control over tx inputs and outputs and it also has a graphical interface for creating multi-signature addresses and transactions as well as an interface for controlling the withdrawal limit of an address. It also features a simple type of blockchain explorer built in the wallet and the home page of the wallet contains a bunch of useful info like the current coin supply, the current block reward, the current difficulty, the current block count, etc. The wallet script should be released within the next day or two, I'll upload it to the main github account when it's ready. Next task after the wallet is to create a blockchain explorer, which shouldn't take me too long. I'll include support for weird transactions like withdrawal limit updates (where the input is the same as the output) so that it's easier to understand how some of the new Cryptonite features work. Good to hear some positive news and updates.
|
|
|
|
aminorex
Legendary
Offline
Activity: 1596
Merit: 1030
Sine secretum non libertas
|
|
August 29, 2014, 03:17:16 AM |
|
running the current win64_cryptonite-qt, trying a fresh sync, i get up to 7 days behind, then Not enough 0000000000000000000000000000000000000000 0 0 Not enough 0000000000000000000000000000000000000000 0 0 infinitely repeats and no further progress occurs.
|
Give a man a fish and he eats for a day. Give a man a Poisson distribution and he eats at random times independent of one another, at a constant known rate.
|
|
|
Fablio2
|
|
August 29, 2014, 05:24:56 AM |
|
Why do you always post 2 big pictures? Very uncomfortable to watch.
|
|
|
|
smooth
Legendary
Offline
Activity: 2968
Merit: 1198
|
|
August 29, 2014, 05:25:42 AM |
|
Why do you always post 2 big pictures? Very uncomfortable to watch. He's obviously doing it to make you uncomfortable. Don't like it? Ignore button just for you.
|
|
|
|
yellowduck2
|
|
August 29, 2014, 05:40:19 AM |
|
Why do you always post 2 big pictures? Very uncomfortable to watch. u prefer real human right ? Me too.
|
|
|
|
Amph
Legendary
Offline
Activity: 3248
Merit: 1070
|
|
August 29, 2014, 06:24:08 AM |
|
Why do you always post 2 big pictures? Very uncomfortable to watch. u prefer real human right ? Me too. lol i like them, i was looking for nude animals with human guises
|
|
|
|
GreekBitcoin
Legendary
Offline
Activity: 1428
Merit: 1001
getmonero.org
|
|
August 29, 2014, 07:50:13 AM |
|
So, should i invest something here? Why? Where can i read some speculation?
|
|
|
|
yellowduck2
|
|
August 29, 2014, 07:51:47 AM |
|
So, should i invest something here? Why? Where can i read some speculation?
should i invest something here? yesWhy? speculationWhere can i read some speculation? Here
|
|
|
|
|
suchnekky
|
|
August 29, 2014, 08:53:05 AM |
|
I have introduced your coin to james @ btcd (jl777) and he has shown some interest in cryptonite. bitfreak could have a bit of a read up over at btcd and see if yous can work something out in the way of being part of the anom system. Linky: https://bitcointalk.org/index.php?topic=684090.msg8580794#msg8580794Together btcd and cryptonite combined is unstoppable! Solving all the problems bitcoin faced. James has staded that cryptonite could handle many more teleports, due to its tiny blockchain
|
• ⓢⓤⓒⓗⓝⓔⓚⓚⓨ •
|
|
|
teknohog
|
|
August 29, 2014, 09:09:17 AM |
|
I think the most correct way to calculate the current block reward is using this formula:
current_block_reward = 243.1 * (coinbase_account_balance / (264-1 / 10000000000))
243.1 XCN is the starting block reward in case you're wondering.
Thanks, this is starting to make a lot of sense
|
|
|
|
polanskiman
|
|
August 29, 2014, 09:23:47 AM |
|
I have introduced your coin to james @ btcd (jl777) and he has shown some interest in cryptonite. bitfreak could have a bit of a read up over at btcd and see if yous can work something out in the way of being part of the anom system. Linky: https://bitcointalk.org/index.php?topic=684090.msg8580794#msg8580794Together btcd and cryptonite combined is unstoppable! Solving all the problems bitcoin faced. James has staded that cryptonite could handle many more teleports, due to its tiny blockchain This was already posted few hours ago. Why was it deleted and reposted again?
|
|
|
|
Jungian
Legendary
Offline
Activity: 930
Merit: 1010
|
|
August 29, 2014, 09:34:58 AM |
|
Up 70% now. I don't think the dump is over yet. I think we will continue to see very high selling pressure. I will probably not buy more before we get very low, because I have already bought as much as I am willing to risk with such an experimental alt.
|
|
|
|
|