Pages:
Author

Topic: ** LAUNCHED ** CredaCash -- The Most Private Cryptocurrency in the World - page 8. (Read 10537 times)

copper member
Activity: 128
Merit: 0
Ok so meantime Im selling at 0.5 $ each so grab a bargain till is hot  Cool
member
Activity: 235
Merit: 29
Any exchange in plans and chat community ? Any roadmap ? What is actual status of development and of course any user case ? And BTW if someone is interested I can sell 10 000 Creda Cash at 0.5$ each Cheesy

Yes, we are going to start looking for exchanges that would like to list CredaCash and we hope to find one or more in the near future.
copper member
Activity: 128
Merit: 0
How mine this token?

Mining Is done no more mining all coins mined
member
Activity: 235
Merit: 29
How mine this token?

The initial mining ended July 26. It will not be mineable again until the Proof-of-Stake protocol is implemented in the future.  In the interim, if you would like to use the CredaCash currency, we hope it will be possible to purchase it on an exchange in the near future.
member
Activity: 235
Merit: 29
where is the wallet "master secret" key stored? Is it possible to print is out?
I wrote it down when I first installed the wallet, but I would like to validate its correctness

There is not currently a command in the wallet that will print it out. However, it can be retrieved as follows:

Assuming you are running under Windows (if not, these directions can also be adapted for Linux):

1. Go to https://www.sqlite.org/download.html
2. Download sqlite-tools-win32-x86-3290000.zip
3. Extract sqlite3.exe
4. Run the commands:
sqlite3 %LOCALAPPDATA%\CredaCash\CCWallet-1\CCWallet.ccw
.mode quote
select PackedParams, Secret from Secrets where Id=1;

The first field printed is the "encrypted master secret" reported when the wallet is created, and the second is the unencrypted master secret.

To confirm that you can recreate this wallet from the "encrypted master secret" and password, you can do the following:

1. Run the command:
ccwallet --create-wallet --datadir=. --initial-master-secret=
2. Enter the password used when the wallet was created.
3. Run the commands:
sqlite3 CCWallet.ccw
.mode quote
select PackedParams, Secret from Secrets where Id=1;
4. del CCWallet.ccw

The results shown should be the same as shown above if you used the same encrypted master secret and password as when the first wallet was created.
newbie
Activity: 2
Merit: 0
copper member
Activity: 128
Merit: 0
Any exchange in plans and chat community ? Any roadmap ? What is actual status of development and of course any user case ? And BTW if someone is interested I can sell 10 000 Creda Cash at 0.5$ each Cheesy
newbie
Activity: 8
Merit: 0
where is the wallet "master secret" key stored? Is it possible to print is out?
I wrote it down when I first installed the wallet, but I would like to validate its correctness
member
Activity: 235
Merit: 29
When to release GUI Wallet

Our apologies, that is important and it is on our development roadmap but we don't currently have a time frame on it.  We will let you know if that changes.  Thank you.
newbie
Activity: 11
Merit: 0
When to release GUI Wallet
member
Activity: 235
Merit: 29
when update The Quick Start Guide?

Next week, after we setup a testnet...
newbie
Activity: 16
Merit: 0
A new version of the CredaCash software can be downloaded at https://CredaCash.com/software/ . This version supports the sendtoaddress function on the live network (mainnet).  The Quick Start Guide will be updated shortly.  A testnet will be setup next week to allow users who do not hold any CredaCash currency to test the software.

Please let us know if you have any questions or run into any issues, and thank you for your support.


when update The Quick Start Guide?
member
Activity: 235
Merit: 29
So looks like resetting the wallet is working, but for larger wallets I have to reset it 2-3 times to extract the full balance. The listunspent amount typically doesn't reflect the full getbalance after a single reset. Not sure if its because of the amount of transactions or not waiting long enough, but at least its working.

The most likely cause of this is pay-to-self billets (from merge transactions or transaction change) that have not yet been detected as cleared.  These should show with zero confirmations in listtransactions, and polling their receive addresses using cc.poll_destination should make them clear faster.

This should also resolve itself if the wallet is left running and connected to ccnode long enough.  And while the wallet is designed to hold many transactions, it will probably run a little faster and more efficiently if the balance is sent to a fresh wallet that doesn't contain all of the mint activity.
newbie
Activity: 9
Merit: 0
Listsinceblock doesnt seem to be working for me, however, I ran cc.poll on both wallets, but only 1 would finish the other would hang.  So far I still see a bunch of unconfirmed transactions according to listtransactions.

Running listunspent I see the following:

wallet 1
Sum unspent = 42.3076
Getbalance = 1042.2348

wallet2
Sum unspent = 210994.93
Getbalance = 210994.93

Attempting to send from wallet 1 continues to fail even when sending 100, however, wallet 2 I was just able to send 50,000.
listsinceblock will work, you just have to give it more time.  The wallet may contain up to a million mint transactions, and listsinceblock is paging through all of them.  The advantage of listsinceblock is that it will filter out and not display uncleared mint transactions.

listtransactions might be easier to use.  By default it only gives 10 transactions, and if none of those are cleared, you should ask it to see more until you get all the uncleared transactions.  To see more transactions, use listtransactions "" where n is the number of transactions you want to see.  listtransactions will show uncleared mint transactions with the category "immature".  Any uncleared mint transactions will not clear at this point, so these can be ignored.

Are any of the uncleared transactions in category receive?  If so, the address of the receive billet is the one you want to use in cc.poll_destination.

As a last resort, you can try to stop wallet 1, restart it with the --reset-wallet command line option, then run the listunspent command to see if that changes the wallet balance.

As far as the wallets are concerned these each should have been unique to each PC mining separately and then I've since consolidated all the wallet files to a single PC. I've been trying to consolidate the balances as I had quite a few different machines/wallets.

The question was if you at some point copied the wallet file.  It is the copying of the wallet file and using it on two machines that can cause the funds to overlap (among other problems).

First wallet seems to have a phantom 1,000, but the other wallet is functioning just fine now. I think there may have been a ccnode issue hindering wallet 2, but something funky happened with wallet 1. I am not worried about the 1,000 coins from wallet 1 so don't waste your time unless you are curious to investigate.

I would go ahead and try stopping wallet 1, restarting it with the --reset-wallet command line option, then running the listunspent command to see if that changes the wallet balance.


So looks like resetting the wallet is working, but for larger wallets I have to reset it 2-3 times to extract the full balance. The listunspent amount typically doesn't reflect the full getbalance after a single reset. Not sure if its because of the amount of transactions or not waiting long enough, but at least its working.

To answer your earlier question I copied the .ccw files from multiple other PC's and I am loading them 1 at a time on this local machine. There is only 1 active wallet at present, but the .ccw files were copied (after other wallets were shutdown).
member
Activity: 235
Merit: 29
The original replica wallet used an address, exceeding the balance of 6.8 million. Has the extra disappeared?

6.8 million is the maximum size of a single billet (coin). (Note that the current implementation could support single billets with a size up to 687 trillion, but the blockchain and zero knowledge proof currently enforce the smaller 6.8 million maximum as a precaution.)

The wallet can hold an unlimited number of billets, each one with a value up to 6.8 million. If funds in the wallet came from mining, then the wallet would contain multiple billets with a value of 1000 each (the amount of the mining reward).
newbie
Activity: 113
Merit: 0
The original replica wallet used an address, exceeding the balance of 6.8 million. Has the extra disappeared?
member
Activity: 235
Merit: 29
Listsinceblock doesnt seem to be working for me, however, I ran cc.poll on both wallets, but only 1 would finish the other would hang.  So far I still see a bunch of unconfirmed transactions according to listtransactions.

Running listunspent I see the following:

wallet 1
Sum unspent = 42.3076
Getbalance = 1042.2348

wallet2
Sum unspent = 210994.93
Getbalance = 210994.93

Attempting to send from wallet 1 continues to fail even when sending 100, however, wallet 2 I was just able to send 50,000.
listsinceblock will work, you just have to give it more time.  The wallet may contain up to a million mint transactions, and listsinceblock is paging through all of them.  The advantage of listsinceblock is that it will filter out and not display uncleared mint transactions.

listtransactions might be easier to use.  By default it only gives 10 transactions, and if none of those are cleared, you should ask it to see more until you get all the uncleared transactions.  To see more transactions, use listtransactions "" where n is the number of transactions you want to see.  listtransactions will show uncleared mint transactions with the category "immature".  Any uncleared mint transactions will not clear at this point, so these can be ignored.

Are any of the uncleared transactions in category receive?  If so, the address of the receive billet is the one you want to use in cc.poll_destination.

As a last resort, you can try to stop wallet 1, restart it with the --reset-wallet command line option, then run the listunspent command to see if that changes the wallet balance.

As far as the wallets are concerned these each should have been unique to each PC mining separately and then I've since consolidated all the wallet files to a single PC. I've been trying to consolidate the balances as I had quite a few different machines/wallets.

The question was if you at some point copied the wallet file.  It is the copying of the wallet file and using it on two machines that can cause the funds to overlap (among other problems).

First wallet seems to have a phantom 1,000, but the other wallet is functioning just fine now. I think there may have been a ccnode issue hindering wallet 2, but something funky happened with wallet 1. I am not worried about the 1,000 coins from wallet 1 so don't waste your time unless you are curious to investigate.

I would go ahead and try stopping wallet 1, restarting it with the --reset-wallet command line option, then running the listunspent command to see if that changes the wallet balance.
newbie
Activity: 9
Merit: 0
Definitely some issues with the sending process.  Tried sending 100,000 out of a balance of 212,000 and it says insufficient funds after cutting it up into 25 transactions. Right now seems like sending multiple small chunks manually is working far better than large lump sums.

Noted, thank you.  You could try stopping the wallet and then restarting with the command line or configuration file option "--tx-new-billet-wait-sec=180".  This will cause the wallet to wait 3 minutes for an expected incoming billet to clear before reporting "Insufficient funds".

Seems like no additional billets are being generated / cleared. I should clarify I was trying to consolidate my balances across numerous wallets, however, no amount of waiting appears to remedy the issue. It's been at least 10 min since I attempted sending coins and now even attempting to send 500 coins results in the below message.

The wallet appears to have sufficient balance, but there are not enough billets available to construct the
transaction. It may be possible to manually solve this problem by sending transactions to yourself to split the wallet
balance into more output billets.

Error:
{
  "code" : -6,
  "message" : "Insufficient funds"

Our apologies for the difficulties.  Does the command "ping" work?  Is the console output of ccnode.exe still reporting new blocks (the latest block as of this post is level 203683).  If you do a listsinceblock command, how many transactions do you see with zero confirmations and what is the total value of their output billets? (Note that unconfirmed transactions should be listed last, but it may take a while for this command to complete because it filters out and does not report unconfirmed mint transactions that did not earn a mining reward.)  How does this compare with the balance reported by getbalance?  If you use the command cc.poll_destination to poll the address of one of the unconfirmed transactions, does the transaction then show as cleared after a short time?  Does the command listunspent show any unspent billets, and what is their total value compared to the amount you are trying to send?

P.S., did you at some point copy the wallet .ccw file to another computer and then start using it at two computers at the same time?  If so, then the balances of the two wallets might overlap, and when you send funds from one wallet, it could have made those same funds unspendable in the other wallet.

So ping is working fine, block is showing 204721

Listsinceblock doesnt seem to be working for me, however, I ran cc.poll on both wallets, but only 1 would finish the other would hang.  So far I still see a bunch of unconfirmed transactions according to listtransactions.

Running listunspent I see the following:

wallet 1
Sum unspent = 42.3076
Getbalance = 1042.2348

wallet2
Sum unspent = 210994.93
Getbalance = 210994.93

Attempting to send from wallet 1 continues to fail even when sending 100, however, wallet 2 I was just able to send 50,000.

As far as the wallets are concerned these each should have been unique to each PC mining separately and then I've since consolidated all the wallet files to a single PC. I've been trying to consolidate the balances as I had quite a few different machines/wallets.


****** update *****

First wallet seems to have a phantom 1,000, but the other wallet is functioning just fine now. I think there may have been a ccnode issue hindering wallet 2, but something funky happened with wallet 1. I am not worried about the 1,000 coins from wallet 1 so don't waste your time unless you are curious to investigate.

I'll confirm once I've consolidated all coins, but I think it should be fine from here on out :crossfingers:
member
Activity: 235
Merit: 29
Yes, now looks ok, thanks.

Good to hear. Thanks for letting us know, and please let us know if you run into any additional issues. Thank you.
newbie
Activity: 61
Merit: 0
No, problem not resolved by itself. But i didnt use ready version, used github and compiled. Maybe that could be problem?
Because old version worked correctly but new one doesnt find peers

Ok, big apologies, this is our fault.  The new distribution has a different rendezvous.lis file and it has not yet been updated for the Linux build process.  We will update it shortly and reply again when it is available to download.  Our most sincere apologies, and thank you for bearing with us...

You can get the latest file by re-running the script ./get_genesis.sh and then restarting ccnode.exe and waiting a few minutes for the tor network to bootstrap.  Please let us know if that works for you, and our apologies again for the oversight.  Thank you.

Yes, now looks ok, thanks.
Pages:
Jump to: