Pages:
Author

Topic: Gridcoin (GRC) - first coin utilizing BOINC - Official Thread - page 4. (Read 597251 times)

newbie
Activity: 28
Merit: 3
member
Activity: 122
Merit: 16

Since James commented on this i presume this is genuine?
Is it possible that Rob is the developer of Biblepay?

Greetz, djoser.
newbie
Activity: 28
Merit: 3
That was a very graceful letter from Rob, and merely formalizes what has been operationally true for some time.

James C. Owens
Gridcoin Core Developer
jr. member
Activity: 490
Merit: 4
sr. member
Activity: 364
Merit: 252
newbie
Activity: 28
Merit: 3
From @barton26's writeup on Reddit...

The Gridcoin Developers are proud to unveil our latest milestone release, version 4.0.2, codename Camilla. This release contains a lot of small fixes and optimizations as well as the long awaited side staking and stake splitting functionality! This is a leisure release, and not required for users. It is however recommended if you want the latest features and optimizations!

For some of the details about the syncing optimizations, please see https://steemit.com/gridcoin/@ravonn/a-disappointing-optimization from core developer @ravonn. Overall users can expect a roughly 10-25% improvement in speeds when syncing the wallet. As always we continue to look for new ways to decrease sync time and reduce our need for snapshots.

Probably the biggest and most exciting part of this milestone is the addition of Stake Splitting and Side Staking added by @jamescowens. He describes how to use the feature in his PR:

This PR extends the work I have done in PR #1244 and implements the ability to "side stake" or distribute the CBR and research rewards to valid addresses. These addresses may be in the same wallet or any other valid Gridcoin address. The potential uses for sidestaking range from a person insuring that all reward go into the same address (and key) for easier backup and recovery to someone donating CBR and rewards to a charity, or sending it to their grandma! Smiley. This functionality is very similar to Pinkcoin.

The PR adds the following additional conf file parameters...

enablesidestaking=0|1 sidestake=address,allocation_percentage

You can specify multiple sidetake entries, just like addnode or connect. Note that the total number of ouputs for the coinstake will be limited to 8 in V10, and vout[0] must be empty, so that gives 7 usable outputs. One must always be reserved for the actual coinstake output (return), so that leaves up to 6 usuable outputs for rewards distribution.

Note that the total of all of the percentages can add up to less than 100%, in which cases the leftover reward will be returned back on the coinstake(s).

Also with side staking we have stake splitting, which enables users to optimize their UTXOs automatically when they stake. Jim describes how it works in this PR:

This PR implements three conf file parameters:

minstakesplitvalue enablestakesplit stakingefficiency

enablestakesplit=1 will enable the automatic splitting of UTXO's in the coinstake transaction (stake outputs). Zero is the default (disabled).

stakingefficiency=xx is an integer that specifies the desired staking efficiency. This is constrained by the code to be between 75% and 98%

minstakesplitvalue=xxx is an integer that specifies the minimum UTXO size desired post split to provide a secondary control on UTXO size. If difficulty drops and a high efficiency is specified, the efficiency alone may split UTXO's into amounts smaller than the user desires. This will prevent that from occurring. If a user specifies less than 800 GRC, then the code uses 800 GRC. Note that the stake splitter uses a 160 block averaging interval for calculating the difficulty to smooth out the difficulty swings.

So to summarize, users can enable side staking in their wallets by adding the line enablesidestaking=1 to their config files. To add addresses to side stake to, simply add another line for each side stake entry like so sidestake=address,percentage.

To enable stake splitting in your wallet, add the line enablestakesplit=1 to your config. This will enable default splitting at 90% efficiency. To change the efficiency value, simply add another line with stakingefficiency=xx where "xx" is a percentage (between 75 and 98).

Note that there is already development work underway to allow users to define their side staking or splitting preferences from within the wallet. Currently the functionality is enabled through config flags only. Note that changing your config will require a wallet restart to use the new settings!

 

Download the update from GitHub at https://github.com/gridcoin-community/Gridcoin-Research/releases/tag/4.0.2.0.

The Windows MSI can be downloaded https://download.gridcoin.us/download/downloadstake/GridcoinResearch.msi. Checksum file at https://download.gridcoin.us/download/downloadstake/GridcoinResearch.msi.sha256.

Changelog for the 4.0.2 release:

Added

Add rainbymagnitude RPC command #1235 (@Foggyx420).
Add stake splitting and side staking #1265 (@jamescowens).
Detect and block Windows shutdown so wallet can exit cleanly #1309
(@jamescowens).
Add message support to sendfrom and sendtoaddress #1400 (@denravonska).
Changed

Configuration options are now case insensitive #294 (@Foggyx420).
Update command in beaconstatus help message #1312 (@chrstphrchvz).
Improve synchronization speeds:
    Refactor superblock pack/unpack #1194 (@denravonska).
    Optimize neuralsecurity calculations #1255 (@denravonska).
    Reduce hash calculations when checking blocks #1206 (@denravonska).
Make display of private key in beaconstatus OPT-IN only #1275 (@Foggyx420).
Store Beacon keys in Wallet #1088 (@tomasbrod).
Use default colors for pie chart #1333 (@chrstphrchvz).
Show hand cursor when hovering clickable labels #1332 (@chrstphrchvz).
Update README.md #1337 (@Peppernrino).
Fix integer overflow with displayed nonce #1297 (@personthingman2).
Improve application cache performance #1317 (@denravonska).
Improve reorg speeds #1263 (@denravonska).
Update Polish translation #1375 (@michalkania).
Fixed

Remove expired polls from overview page #1250 (@personthingman2).
Fix plural text on block age #1304 (@scribblemaniac).
Fix researcher staking issue if your chain head was staked by you,
#1299 (@denravonska).
Fix incorrect address to grcpool node #1314 (@wilkart).
Do not replace underscores by spaces in Qt Poll URLs #1327 (@tomasbrod).
Fix scraper SSL issues #1330 (@Foggyx420).
Removed

Remove or merged several RPC commands #1228 (@Foggyx420):
    newburnaddress, removed.
    burn2: Removed.
    cpid: Merged into projects.
    mymagnitude: Merged into magnitude.
    rsa: Removed, use magnitude.
    rsaweight: Removed, use magnitude.
    proveownership: Removed.
    encrypt: Removed.
Remove obsolete POW fields from RPC responses #1358 (@jamescowens).
Remove obsolete netsoft fields for slight RAM requirement reduction
#1336 (@denravonska).
Remove unused attachment functionality #1345 (@denravonska).
 

Thanks as usual to our developers for this milestone leisure release. Thanks also to our dedicated testers, who have my gratitude for ensuring a smooth release.
copper member
Activity: 196
Merit: 2
newbie
Activity: 28
Merit: 3
I am pleased to announce that the native C++ replacement for the "neural network" has been merged into the development branch and is slated for the Denise milestone release. Please see https://steemit.com/gridcoin/@jamescowens/progress-update-on-the-new-gridcoin-boinc-stats-collection-system-the-scraper-which-replaces-the-old-neural-network for more information.

Jim
Gridcoin Core Developer
hero member
Activity: 1666
Merit: 565
maybe you will be surprised - gridcoin dot us

you're right Sad

i should have done some research before posting Sad

Anyway, i put here the link for some other users --> https://www.gridcoin.us/Guides/investor-gridcoin-setup.htm
legendary
Activity: 2884
Merit: 1035
maybe you will be surprised - gridcoin dot us
hero member
Activity: 1666
Merit: 565
Hello everyone, i would like to start to mine gridcoin as i am a boinc's user since 2011.

Where can i find some guide about it?

Thanks!
member
Activity: 349
Merit: 10
member
Activity: 122
Merit: 16
Hello Jim,

thank you very much for posting here! It's been a long time since a developer posted something here.
The upcoming features sound awesome and i'm looking forward to them.
Thanks for still working with such enthusiasm on this great coin!

Yours sincerely,
djoser.
newbie
Activity: 28
Merit: 3
Here are some comments...

The last mandatory implemented Constant Block Rewards, which is POS of 10 GRC per block staked. Proof of Research is paid on top based on calculated magnitude. This implements linear inflation, which means the percentage of inflation will slowly decline. It also does away with paying time based interest, which encourages people to keep their nodes online to stake and secure the network. It has worked and we have seen difficulty rise from an average of < 3 to almost 9, meaning triple the number of coins are online. This is really good for network security.

The 4.0.1.0 leisure corrected a longstanding and subtle bug in the calculation of lifetime research rewards that was causing chain forks. This was the last "big one" that was causing forks. The chain has been extraordinarily stable since then.

The Camilla milestone has automatic UTXO splitting on the coinstake output to optimize staking in the CBR regime, and also sidestaking, which provides the ability to direct your reward to up to six different valid addresses (specifying a percentage for each). This makes the ability to conveniently create a "cold" wallet to receive the rewards possible.

Camilla also fixes a number of bugs and implements a number of performance optimizations.

Denise has a number of really cool enhancements coming along...

I have completely rewritten the BOINC statistics collection and computation code (the scraper and "neural network") in native C++, completely integrated in the core wallet code. This will completely replace the old .net VB code and make the stats computation and NN completely cross platform, and 10X more efficient.

See the repo link at https://github.com/gridcoin-community/Gridcoin-Research
Camilla milestone tasks at https://github.com/gridcoin-community/Gridcoin-Research/milestone/5
Denise milestone tasks at https://github.com/gridcoin-community/Gridcoin-Research/milestone/6

https://github.com/gridcoin-community/Gridcoin-Research/pull/1387

We are going to be completely overhauling the UI... see
https://github.com/madmaxpayne/Gridcoin-wallet-redesign

In the future, manual (user initiated rewards claims) and more.

Lots of activity on this coin and a good core team. Ravon is the technical lead.

Jim

Core Developer
hero member
Activity: 524
Merit: 502
What’s coming in 2019? Glad this coin has survived the altcoin cull! Although I knew it would thanks to the amazing unique properties.
newbie
Activity: 1
Merit: 0
one old coin and still alive to date,this one coin is very potential guys..
see current prices are very under value https://ibb.co/PmBSqZT
I saw last year no big pump happened..


good luck Wink
full member
Activity: 490
Merit: 101
Gridcoin is back on Google Ads!

Well, it is my great pleasure to inform you that Gridcoin’s New Marketing Initiative has received plenty of support and that it’s officially going LIVE, as of today! It will take some time to ramp everything up and there’s a lot of work ahead for sure, but if you go to Google now and search for BOINC (or something BOINC-related), you should get a nice ad like this, pointing to our website gridcoin 

full member
Activity: 504
Merit: 102
Gridcoin Leisure Update 4.0.1 Released
The Gridcoin development team is happy to announce a hotfix release to the previous 4.0.0 mandatory that fixes the root cause of the bad forks we have experienced recently. This hotfix also contains a minor patch to the voting system that fixes a bug discovered while testing.

https://medium.com/@gridcoinnetwork/gridcoin-leisure-update-4-0-1-released-5396cb90f6a3
full member
Activity: 542
Merit: 102
Gridcoin — State of the Network — 26 November 2018
27th Gridcoin State of the Network Report. The SotN is a fortnightly report that compiles useful news and statistics for the Gridcoin communit

https://medium.com/@gridcoinnetwork/gridcoin-state-of-the-network-26-november-2018-8779a289575c
sr. member
Activity: 1946
Merit: 350
Will I get owed staked coins?

Yes, if you stake GRC in your wallet why not?
I got recently 9..something GRC - may be for this new staking.

Also I need to say that I like new wallet version much more!
Pages:
Jump to: