Advertisement
Guest User

FedoraCoin 0.60 alpha

a guest
Feb 14th, 2014
442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.46 KB | None | 0 0
  1. FedoraCoin 0.60 changelog
  2. =========================================================================================
  3.  
  4. * Built-in coin mixing/anonymizer service, to conceal transaction origins
  5. - Mixing services can be announced to the network and are chosen by clients at random
  6. - 2% fee is added on top of mixed transactions to help out and give incentive toward running mixing services
  7. - A guide to starting a mixing service is available below
  8.  
  9. * RPC user system, become your own web wallet!
  10. - Users can be added with the adduser command and passwords are changed with the passwd command
  11. - User wallets are stored separately to the main wallet
  12. - Passwords are hashed with a per-user salt to help strengthen them, their password is also used to encrypt their wallet ensuring only they have access to their coins.
  13. - The encryption password can be changed with the usual commands, affecting the users password
  14. - Users have restricted access to commands, only the main admin user can use them all (admin user is read from fedoracoin.conf when 0.60 is first run, rpcuser is later unneeded in the conf file afterward)
  15. - A full list of commands is available below
  16.  
  17. * Alert key changed, now you can get alerts near instantly after an important announcement
  18. - You can use the -alertnotify setting to execute scripts when alerts are received
  19. - New admin-only commands: createalert, signalert, sendalert - only useful with the alert private key.
  20. - Mixer announcements use the same system as alerts with seperate keypairs, also has a set of admin-only commands: createann, signann, sendann (again only useful with the private key) and listann
  21.  
  22. * JavaScript/AJAX access now enabled on the RPC server, allowing web frontends to connect to your wallet (if allowed)
  23. - For an example of this set rpcuser and rpcpassword in your fedoracoin.conf file and also add daemon=1 and server=1 on seperate lines at the end
  24. - Run the QT wallet and after it's loaded visit http://fedoracoin.net/js-wallet/, enter your rpc login there and make sure the url field is set to "http://localhost:22888/"
  25. - Alternatively you can create a user in the debug console (with the adduser <username> <password> command) and login using that users details
  26. - Wallet is directly connected between your browser and your local wallet, our servers aren't anywhere in between
  27.  
  28. * Changed coin denominations to thousands and millions
  29. * Improved sync with updated checkpoints
  30. * Code now builds with no warnings on Windows, very few on other OS's
  31. * TestNet now enabled, you can test whatever changes you like on there
  32. * 500 billion coin limit now forced thanks to the new getchainvalue command
  33. * Splash screen made transparent
  34.  
  35. * New commands:
  36. adduser <username> <password> (admin only) - adds new user
  37. authuser <username> <password> (admin only) - tests user login
  38. passwd <username> <password> (admin only) | passwd <password> (user only) - update users password
  39. root (admin only) - displays root username
  40. whoami - displays logged in username
  41.  
  42. createalert <too many args, see help> (admin only) - creates alert data and outputs hex data
  43. signalert <alert hex data> <privatekey hex data> (admin only) - signs alert data with the private key and outputs hex data
  44. sendalert <signed alert hex data> (admin only) - sends (correctly signed only!) alert to the network
  45.  
  46. createann <too many args, see help> (admin only) - creates announcement data and outputs hex data
  47. signann <ann. hex data> <privatekey hex data> (admin only) - signs announcement data with the private key and outputs hex data
  48. sendann <signed ann. hex data> (admin only) - sends (correctly signed only!) announcement to the network
  49. listann (admin only) - lists mixing announcements in effect
  50.  
  51. getchainvalue [uptoblockidx] - outputs current chains total value up to given block idx
  52.  
  53. * Updated commands:
  54. getinfo/getmininginfo - updated with admin-only info
  55. sendtoaddress - add :mixed to end of destination address to send the coins through a mixer
  56. sendmany/sendfrom - add :mixed to end of source account to send the coins through a mixer
  57.  
  58. * Admin only commands:
  59. stop
  60. getconnectioncount
  61. getpeerinfo
  62. addnode
  63. getaddednodeinfo
  64. generatekey
  65. backupwallet
  66. getgenerate
  67. setgenerate
  68. gethashespersec
  69. getrawmempool
  70. verifymessage
  71. settxfee
  72. setmininput
  73. signrawtransaction
  74. sendrawtransaction
  75. gettxoutsetinfo
  76. gettxout
  77. verifychain
  78. adduser
  79. authuser
  80. root
  81. createalert
  82. signalert
  83. sendalert
  84. createann
  85. signann
  86. sendann
  87. listann
  88. encryptwallet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement