Pages:
Author

Topic: 🌱[ANN] SOIL | Environmental | Agriculture | Smart Contracts | Sustainable - page 4. (Read 237569 times)

member
Activity: 70
Merit: 12
MegaPool.io

nice one.

Our old one has been working fine for a long time too:  http://178.62.133.174:9001


also check out http://178.62.133.174:9001/#/util/peers
and http://178.62.133.174:9001/#/chain/

not sure the "mined" and "supply" is correct though.



now the old explorer is down   Sad Sad Sad
legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
...

and http://178.62.133.174:9001/#/chain/

not sure the "mined" and "supply" is correct though.




This is the formula I have been using:

   
Code:
var COINS_PER_BLOCK_PHASE1   = 8,
BLOCK_PHASE2             = 263708,
COINS_PER_BLOCK_PHASE2   = 4,

BLOCK_PHASE3             = 334000,
COINS_PER_BLOCK_PHASE3   = 1,

// uncles rewards

// but NOT counted into supply yet in v0.2.7 !
// ignorant devs, see https://github.com/ethereum/go-ethereum/issues/2088

COINS_PER_UNCLE0_PHASE1 = 7,
COINS_PER_UNCLE1_PHASE1 = 6,
COINS_PER_UNCLE0_PHASE2 = 3.5,
COINS_PER_UNCLE1_PHASE2 = 3,
COINS_PER_UNCLE0_PHASE3 = 0.875,
COINS_PER_UNCLE1_PHASE3 = 0.75,
...

Code:
var mined  = function(blockNumber){
var coins = 0;
// blocks until 263707, reward 8
if (blockNumber < BLOCK_PHASE2) {
coins += COINS_PER_BLOCK_PHASE1 * blockNumber;
}
else{
coins += COINS_PER_BLOCK_PHASE1 * (BLOCK_PHASE2 - 1)
// blocks until 333999, reward 4
if (blockNumber < BLOCK_PHASE3) {
coins += COINS_PER_BLOCK_PHASE2 * (blockNumber - BLOCK_PHASE2 + 1);
}
else{
coins += COINS_PER_BLOCK_PHASE2 * (BLOCK_PHASE3 - BLOCK_PHASE2)
// blocks since 334000, reward 1
coins += COINS_PER_BLOCK_PHASE3 * (blockNumber - BLOCK_PHASE3 + 1)
}
}


// TODO: There have been later changes, please someone extend this.
 

return coins;

}



   // block rewards:
   // see https://bitcointalksearch.org/topic/m.13207211
   // and https://bitcointalksearch.org/topic/m.13290036
   // and https://bitcointalksearch.org/topic/m.16635478


but ... I think there is a "phase 4". When? How? 
legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster

nice one.

Our old one has been working fine for a long time too:  http://178.62.133.174:9001


also check out http://178.62.133.174:9001/#/util/peers
and http://178.62.133.174:9001/#/chain/

not sure the "mined" and "supply" is correct though.

newbie
Activity: 43
Merit: 0
I marked this ANN, I am considering this carefully
newbie
Activity: 33
Merit: 0
Interesting....anything shaped gets my attention. Smiley Smiley
newbie
Activity: 4
Merit: 0

Hi there
Try these, after a several unsuccessful attempts finally a was able to sync my wallet with this nodes   
Code:
admin.addPeer('enode://1e22dc5c765d06e01f1caebb271dd37d52b972cb97ca024d39a0efce4864fbd8f431cb064ee5487e5fdb9db85aba8d574fa2462424eb32c64838949395b59912@148.251.90.69:10922');
admin.addPeer('enode://8f6539ecc961e8261ee9f5aa799448628dbd91994f23df67efacea31b61491103d9ab65348a73b7647c83f3bb316217692b66c9720d7f49348127ea7a46a7a4d@148.251.177.206:10922');
admin.addPeer('enode://95c860abfd5f427f89e8b4010f60d8221e0480963cdafa6cce798890fe1c8e1e2a156789a1b7a876133f77f8d7a73b89c17a2799089bfcc25fdf82f7e560a9a8@108.61.193.20:30308');
admin.addPeer('enode://d0e3cf63cc4d23d4003acc93966578401d8f77d785ce202736c34aa09683545fc37382d3396e750d095c9ee70c06382fabec4523a1b11d3aab5e68710e558706@195.201.33.184:10922');
admin.addPeer('enode://e2038d3848836dc21b2ffb6dbffe56488a6ebfb01112b60cbfdaeb3cc34bffadc465dcaca45e55c9b9a2057f2654d72f7632185b8cc48542e51766a67e0fa0cf@139.99.9.177:54160');

Great!!!, thanks this really helped a lot. I was giving up on this one... How do you save the configuration in the gsoil console? Is there somewhere a command line reference?
full member
Activity: 336
Merit: 100
The attention of the project seems to be getting lower and lower, although the project is long-term, but do not forget the good marketing and promotion!
member
Activity: 910
Merit: 14
Everyone join Blurt.blog & Steemit.com
newbie
Activity: 13
Merit: 0

Quote

.............I was able to access the console and add the peers, but still no luck, I see activity on the firewall too, but no synchronisation, not even on a freshly installed windows machine with a freshly installed soilsafe wallet  Sad

Hi there
Try these, after a several unsuccessful attempts finally a was able to sync my wallet with this nodes   
Code:
admin.addPeer('enode://1e22dc5c765d06e01f1caebb271dd37d52b972cb97ca024d39a0efce4864fbd8f431cb064ee5487e5fdb9db85aba8d574fa2462424eb32c64838949395b59912@148.251.90.69:10922');
admin.addPeer('enode://8f6539ecc961e8261ee9f5aa799448628dbd91994f23df67efacea31b61491103d9ab65348a73b7647c83f3bb316217692b66c9720d7f49348127ea7a46a7a4d@148.251.177.206:10922');
admin.addPeer('enode://95c860abfd5f427f89e8b4010f60d8221e0480963cdafa6cce798890fe1c8e1e2a156789a1b7a876133f77f8d7a73b89c17a2799089bfcc25fdf82f7e560a9a8@108.61.193.20:30308');
admin.addPeer('enode://d0e3cf63cc4d23d4003acc93966578401d8f77d785ce202736c34aa09683545fc37382d3396e750d095c9ee70c06382fabec4523a1b11d3aab5e68710e558706@195.201.33.184:10922');
admin.addPeer('enode://e2038d3848836dc21b2ffb6dbffe56488a6ebfb01112b60cbfdaeb3cc34bffadc465dcaca45e55c9b9a2057f2654d72f7632185b8cc48542e51766a67e0fa0cf@139.99.9.177:54160');

Where do you put the peers ? on windows .
newbie
Activity: 41
Merit: 0

Quote

.............I was able to access the console and add the peers, but still no luck, I see activity on the firewall too, but no synchronisation, not even on a freshly installed windows machine with a freshly installed soilsafe wallet  Sad

Hi there
Try these, after a several unsuccessful attempts finally a was able to sync my wallet with this nodes   
Code:
admin.addPeer('enode://1e22dc5c765d06e01f1caebb271dd37d52b972cb97ca024d39a0efce4864fbd8f431cb064ee5487e5fdb9db85aba8d574fa2462424eb32c64838949395b59912@148.251.90.69:10922');
admin.addPeer('enode://8f6539ecc961e8261ee9f5aa799448628dbd91994f23df67efacea31b61491103d9ab65348a73b7647c83f3bb316217692b66c9720d7f49348127ea7a46a7a4d@148.251.177.206:10922');
admin.addPeer('enode://95c860abfd5f427f89e8b4010f60d8221e0480963cdafa6cce798890fe1c8e1e2a156789a1b7a876133f77f8d7a73b89c17a2799089bfcc25fdf82f7e560a9a8@108.61.193.20:30308');
admin.addPeer('enode://d0e3cf63cc4d23d4003acc93966578401d8f77d785ce202736c34aa09683545fc37382d3396e750d095c9ee70c06382fabec4523a1b11d3aab5e68710e558706@195.201.33.184:10922');
admin.addPeer('enode://e2038d3848836dc21b2ffb6dbffe56488a6ebfb01112b60cbfdaeb3cc34bffadc465dcaca45e55c9b9a2057f2654d72f7632185b8cc48542e51766a67e0fa0cf@139.99.9.177:54160');
newbie
Activity: 4
Merit: 0
My soil safe wallet is looking for peers for ages now. The last block I received was 19 days ago. Does anyone have any idea what to do? I'm running the latest version of the wallet.

If it's the Linux one, you just add the peers to the gsoil client startup as --bootnodes arguments.
If Windows I have no idea - haven't used it. I assume it runs gsoil (aka forked geth) in background, though. So, I would also assume you can add peers/nodes to it as well.

Here's a few that I use as startup to gsoil command - not sure they all work but will get you synced:

Code:
...
--bootnodes \
enode://95c860abfd5f427f89e8b4010f60d8221e0480963cdafa6cce798890fe1c8e1e2a156789a1b7a876133f77f8d7a73b89c17a2799089bfcc25fdf82f7e560a9a8@108.61.193.20:30308,\
enode://6d3a030b4bb68e559085e34fc80abc53371cc89e62cd806e0f9feefdd175f672f68866d3fa007d994390485d872bd58a5f2008dd6a67a741c170dc64b4bf9b1a@213.136.76.42:30403,\
enode://7968705a5a1c9c84a64e1b3985e8605140a10bc8e68e9fd867605a7385b880b7ce945421fc92ad35a5caa573b988a22f5382cf478f8bc785d93324a5b89b71aa@37.187.76.123:30403,\
enode://7b33822011ca70f570a36716fb04a4d81e70b666dced75769446d775efe993fe9436fb5b8a2b5e06fbb9eb4566262ab3bb7d9e2d3eba4b0f900560412ccdf1ad@185.86.80.70:30403,\
enode://ab1c635687b783359230e734a7bb1a2bdc88b132979023517519bdcb789dbffc841fa09369de9426b8dc0e4eb7feb2f0e5f1d41d2fce572af07ff1dd8a904b6d@185.188.182.211:30403,\
enode://d0708361c50e38eacb8f79d3956eefa0f1f9800e99a4759461a690568bd73e3b48b6e72edb11f51a8d80d1c6bbe9819f0334210a0d7c70a7691b344e84eea2c9@37.187.76.123:21305,\
enode://46fce6fdc328596df97c8c2e4d1744b9bf5bfd540ff8cf95e4880d797bd92e2cb52a81f38a9a49e51079f875c1adbdc2d4d6f503253e2d7188a494d421bd968b@178.62.133.174:30403 \
...

Alternatively, if you can access the gsoil console while it runs, paste these (these are currently being shown as connected on mine):

Code:
admin.addPeer('enode://10a9d41520efc63efb43f99ee15febfd8aacf364164993ad5f14b1414ebc1481ccb24ef217ddc08e4a757e21e33186accad0548adb13629d8dc5d43a03720463@54.36.239.224:30303');
admin.addPeer('enode://11632e4798ffafb2e0dd0aee92efcbbd59e997ed1450625d35a3c7b05d23ea5f2d1b6d85f5931145e720e229d415f2047ed7bd5b9f4572f0c0f93e74c33b31f6@35.200.229.78:30303');
admin.addPeer('enode://1e22dc5c765d06e01f1caebb271dd37d52b972cb97ca024d39a0efce4864fbd8f431cb064ee5487e5fdb9db85aba8d574fa2462424eb32c64838949395b59912@148.251.90.69:30303');
admin.addPeer('enode://601b5659d10e16dd2ad30d978423cc48622f1ab3411f8b48f632dce6f5d0412a694c04b8cfd624b3210b3efcb5b0e55a0d3cdf38296853d2f176300689e1f1d7@35.200.184.215:30303');
admin.addPeer('enode://689ed0b9121cbcbc5f176e383631d10af33d075f2d4bae91ba250f3ef11177f581e5fd5bd926dda3282af01f9dfef678b6326bfbe75f2b5f8b7992b3cf9839d0@148.251.177.206:30303');
admin.addPeer('enode://6d3a030b4bb68e559085e34fc80abc53371cc89e62cd806e0f9feefdd175f672f68866d3fa007d994390485d872bd58a5f2008dd6a67a741c170dc64b4bf9b1a@213.136.76.42:30303');
admin.addPeer('enode://853831a021a99f96c7f2680d04fe9f2a82d18517513023b22efdfe127abe44b2edf570d0bf660853f6987df475582a13948360ae2e9ff2fad292dbbef1ce96a5@35.200.182.65:30303');
admin.addPeer('enode://8f6539ecc961e8261ee9f5aa799448628dbd91994f23df67efacea31b61491103d9ab65348a73b7647c83f3bb316217692b66c9720d7f49348127ea7a46a7a4d@148.251.177.206:30303');
admin.addPeer('enode://ab1c635687b783359230e734a7bb1a2bdc88b132979023517519bdcb789dbffc841fa09369de9426b8dc0e4eb7feb2f0e5f1d41d2fce572af07ff1dd8a904b6d@185.188.182.211:30303');
admin.addPeer('enode://af938bfda804fd6459c4a540c644e99ae9ed71d68e5414f18df19d007a238b2e450cfb5a63df45ff4bb2b71d9a350eeabe01ab7f30daff1aa9d7eeb21576fb0b@148.251.90.69:30303');
admin.addPeer('enode://b41476d0891a135163b8a6e289291fca04598f91242b596bdee3c22bbc919486609c28c6a12386b7b8fd7daae753d662f031d071f82156570461e6a02cdcf2a3@5.103.198.52:30303');
admin.addPeer('enode://f13f47dba2a54cf5587f334cf265df6df978cc7dd9679d63c8e739c7507bf3f8e9551d0175a568d8a20e3e7983e74b85735d7530ebee0c303f0111490878c45c@92.53.90.124:30303');

You could also substitute the first ones listed with these as they are alive as of today.


Thanks for your answer, I am running soilsafe on windows indeed. I was able to access the console and add the peers, but still no luck, I see activity on the firewall too, but no synchronisation, not even on a freshly installed windows machine with a freshly installed soilsafe wallet  Sad
member
Activity: 910
Merit: 14
Everyone join Blurt.blog & Steemit.com
how do you create a token on the soil platform do you have a website or app for it and is there an etherdelta equivalent?
newbie
Activity: 10
Merit: 0
Why bother with dead coin?

One main reason: If whattomine would list it again on main page, it would be 9th in profitability today (just after Pirl).
Why bother asking on a dead coin if you have it all figured out?
sr. member
Activity: 2506
Merit: 319
Why bother with dead coin?
newbie
Activity: 10
Merit: 0
My soil safe wallet is looking for peers for ages now. The last block I received was 19 days ago. Does anyone have any idea what to do? I'm running the latest version of the wallet.

If it's the Linux one, you just add the peers to the gsoil client startup as --bootnodes arguments.
If Windows I have no idea - haven't used it. I assume it runs gsoil (aka forked geth) in background, though. So, I would also assume you can add peers/nodes to it as well.

Here's a few that I use as startup to gsoil command - not sure they all work but will get you synced:

Code:
...
--bootnodes \
enode://95c860abfd5f427f89e8b4010f60d8221e0480963cdafa6cce798890fe1c8e1e2a156789a1b7a876133f77f8d7a73b89c17a2799089bfcc25fdf82f7e560a9a8@108.61.193.20:30308,\
enode://6d3a030b4bb68e559085e34fc80abc53371cc89e62cd806e0f9feefdd175f672f68866d3fa007d994390485d872bd58a5f2008dd6a67a741c170dc64b4bf9b1a@213.136.76.42:30403,\
enode://7968705a5a1c9c84a64e1b3985e8605140a10bc8e68e9fd867605a7385b880b7ce945421fc92ad35a5caa573b988a22f5382cf478f8bc785d93324a5b89b71aa@37.187.76.123:30403,\
enode://7b33822011ca70f570a36716fb04a4d81e70b666dced75769446d775efe993fe9436fb5b8a2b5e06fbb9eb4566262ab3bb7d9e2d3eba4b0f900560412ccdf1ad@185.86.80.70:30403,\
enode://ab1c635687b783359230e734a7bb1a2bdc88b132979023517519bdcb789dbffc841fa09369de9426b8dc0e4eb7feb2f0e5f1d41d2fce572af07ff1dd8a904b6d@185.188.182.211:30403,\
enode://d0708361c50e38eacb8f79d3956eefa0f1f9800e99a4759461a690568bd73e3b48b6e72edb11f51a8d80d1c6bbe9819f0334210a0d7c70a7691b344e84eea2c9@37.187.76.123:21305,\
enode://46fce6fdc328596df97c8c2e4d1744b9bf5bfd540ff8cf95e4880d797bd92e2cb52a81f38a9a49e51079f875c1adbdc2d4d6f503253e2d7188a494d421bd968b@178.62.133.174:30403 \
...

Alternatively, if you can access the gsoil console while it runs, paste these (these are currently being shown as connected on mine):

Code:
admin.addPeer('enode://10a9d41520efc63efb43f99ee15febfd8aacf364164993ad5f14b1414ebc1481ccb24ef217ddc08e4a757e21e33186accad0548adb13629d8dc5d43a03720463@54.36.239.224:30303');
admin.addPeer('enode://11632e4798ffafb2e0dd0aee92efcbbd59e997ed1450625d35a3c7b05d23ea5f2d1b6d85f5931145e720e229d415f2047ed7bd5b9f4572f0c0f93e74c33b31f6@35.200.229.78:30303');
admin.addPeer('enode://1e22dc5c765d06e01f1caebb271dd37d52b972cb97ca024d39a0efce4864fbd8f431cb064ee5487e5fdb9db85aba8d574fa2462424eb32c64838949395b59912@148.251.90.69:30303');
admin.addPeer('enode://601b5659d10e16dd2ad30d978423cc48622f1ab3411f8b48f632dce6f5d0412a694c04b8cfd624b3210b3efcb5b0e55a0d3cdf38296853d2f176300689e1f1d7@35.200.184.215:30303');
admin.addPeer('enode://689ed0b9121cbcbc5f176e383631d10af33d075f2d4bae91ba250f3ef11177f581e5fd5bd926dda3282af01f9dfef678b6326bfbe75f2b5f8b7992b3cf9839d0@148.251.177.206:30303');
admin.addPeer('enode://6d3a030b4bb68e559085e34fc80abc53371cc89e62cd806e0f9feefdd175f672f68866d3fa007d994390485d872bd58a5f2008dd6a67a741c170dc64b4bf9b1a@213.136.76.42:30303');
admin.addPeer('enode://853831a021a99f96c7f2680d04fe9f2a82d18517513023b22efdfe127abe44b2edf570d0bf660853f6987df475582a13948360ae2e9ff2fad292dbbef1ce96a5@35.200.182.65:30303');
admin.addPeer('enode://8f6539ecc961e8261ee9f5aa799448628dbd91994f23df67efacea31b61491103d9ab65348a73b7647c83f3bb316217692b66c9720d7f49348127ea7a46a7a4d@148.251.177.206:30303');
admin.addPeer('enode://ab1c635687b783359230e734a7bb1a2bdc88b132979023517519bdcb789dbffc841fa09369de9426b8dc0e4eb7feb2f0e5f1d41d2fce572af07ff1dd8a904b6d@185.188.182.211:30303');
admin.addPeer('enode://af938bfda804fd6459c4a540c644e99ae9ed71d68e5414f18df19d007a238b2e450cfb5a63df45ff4bb2b71d9a350eeabe01ab7f30daff1aa9d7eeb21576fb0b@148.251.90.69:30303');
admin.addPeer('enode://b41476d0891a135163b8a6e289291fca04598f91242b596bdee3c22bbc919486609c28c6a12386b7b8fd7daae753d662f031d071f82156570461e6a02cdcf2a3@5.103.198.52:30303');
admin.addPeer('enode://f13f47dba2a54cf5587f334cf265df6df978cc7dd9679d63c8e739c7507bf3f8e9551d0175a568d8a20e3e7983e74b85735d7530ebee0c303f0111490878c45c@92.53.90.124:30303');

You could also substitute the first ones listed with these as they are alive as of today.
newbie
Activity: 4
Merit: 0
My soil safe wallet is looking for peers for ages now. The last block I received was 19 days ago. Does anyone have any idea what to do? I'm running the latest version of the wallet.
newbie
Activity: 10
Merit: 0
I have put up a new block explorer since old has been defunct for so long; was done rather quickly, but appears to work okay. Tip: Don't try and use shapeshift  Wink - will remove that another day..

Block Explorer:
http://soilblocks.holylinux.net
Stats:
https://soilstats.holylinux.net
Soil Coin Pool:
https://soil.holylinux.net

Links also referenced on pool page/footer.

Enjoy.
newbie
Activity: 37
Merit: 0

````````````````````¶
```````````````````¶¶¶
``````````````````¶¶¶¶
`````````````````¶¶¶¶¶¶````````````````¶
`````````````````¶¶¶¶¶¶¶`````````````¶¶
`````````````````¶¶¶¶¶¶¶¶``````````¶¶¶¶
`````````¶¶``````¶¶¶¶¶¶¶¶¶````````¶¶¶¶¶
`````````¶¶¶``````¶¶¶¶¶¶¶¶¶``````¶¶¶¶¶¶
`````````¶¶¶¶`````¶¶¶¶¶¶¶¶¶¶¶````¶¶¶¶¶¶
`````````¶¶¶¶¶`````¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
`````````¶¶¶¶¶````¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
````````¶¶¶¶¶¶````¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
```````¶¶¶¶¶¶¶```¶¶¶¶¶¶¶¶``¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
`````¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶```¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
````¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶```¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
````¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶````¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
```¶¶¶¶¶¶¶¶¶¶¶¶¶¶`¶¶¶¶¶¶````¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶¶
```¶¶¶¶¶¶¶¶¶¶¶¶¶¶``¶¶¶``````¶¶¶`¶¶¶¶¶¶¶¶¶¶¶¶¶
```¶¶¶¶¶¶¶¶¶¶¶¶¶```¶````````¶¶``¶¶¶¶¶¶¶¶¶¶¶¶¶
```¶¶¶¶¶¶¶¶¶¶¶¶`````````````¶¶``¶¶¶¶¶¶¶¶¶¶¶¶
```¶¶¶¶¶¶¶¶¶¶¶¶``````````````¶````¶¶¶¶¶¶¶¶¶
````¶¶¶¶¶¶¶¶¶¶`````````````````````¶¶¶¶¶¶¶
``````¶¶¶¶¶¶¶¶`````````````````````¶¶¶¶¶¶
````````¶¶¶¶¶¶`````FIREPOOL.RU`````¶¶¶¶
```````````¶¶¶¶```````````````````¶¶
```````````````¶¶¶``````````````¶


Welcome to multipul Firepool.ru - http://www.firepool.ru

SOIL pool - http://soil.firepool.ru

1. Commission 0.25%
2. Yield calculator
3. Wallet generator
4. Information about the exchange
5. Current exchange rates
member
Activity: 294
Merit: 10
There will be an option to make payments, chat and exchange files performed in telegram groups or the like
newbie
Activity: 10
Merit: 0
i dont know,  blocktime shouldn't have to be re set all the time because of more hashrate, ethereum is proof of this. keeps a 15s blocktime average regardless if its 130 th/s or 170 th/s so why shouldn't soil? instantly as hashrate goes up, blocktime goes down, http://178.62.133.174:9001/#/chain/ is what i use, right now its been a very low hashrate and therefore blocktime is around 53s last 10 blocks, which is ridicules. but instantly as hashrate goes up, blocktime goes down and difficulty up. but i dont see this as pool sided.

what i see is a Treshold that the developer wants there to be a certain amount of hashrate on the network before giving out all the coins as promised, this will keep single miners with 1-2 gh/s from scooping up all the coins if there is low hashrate, which isn't really fair in any sort of way.

i've watched expanse, ellaism, all go from 200 gh/s to 990 GH/s and blocktime is always the same average, it doesn't change based on pool and not the hashrate, for soil all i see is a treshold, once we surpass it again there will be 15s blocktime average, but right now its too low.

Yes, as far as I understand it* you are exactly right : the difficulty is the only thing that should be changing relative to the network and is based on the network looking at the previous blocktime found. (Blocktime going down - raise diff. Blocktime going up - lower diff). But 'gsoil' also has those hardfork variables laid in once certain block heights are achieved..

Example (Ethereum) of block time calc and diff adjustment as needed:
Code:
block_time=current_block_timestamp — parent_block_timestamp
current_block_difficulty = parent_block_difficulty + (parent_block_difficulty // 2048) * max(1 — (block_time// 10), -99) + int(2**((current_block_number // 100000) — 2))

Anyway, as you said, the set blocktime -should- be maintained (via difficulty).

The approximate network hashrate is just a by product of this - and as it says: it's an approximation.

From what I've seen over last few months block time was 30+ secs (?) on soilcoin and has been going up since (?) (What I remember..) Now around 53 secs last I looked. So, not sure what's going on with it - seems to drift up. It's still mine-able, though, which I guess is main concern (for now..)

( My pool: https://soil.holylinux.net - yes my blocktime variable is updated. LOL. Is at 53 secs right now. Though, now I see https://whattomine.com/coins/189-soil-ethash has increased to 55secs (was 53 other day)..)

* Ethereum: "The difficulty dynamically adjusts so that on average one block is produced by the entire network every 12 seconds (ie., 12 s block time). This heartbeat basically punctuates the synchronisation of system state and guarantees that maintaining a fork (to allow double spend) or rewriting history is impossible unless the attacker possesses more than half of the network mining power (so called 51% attack)." ( From: https://github.com/ethereum/wiki/wiki/Mining )
Also: https://medium.facilelogin.com/the-mystery-behind-block-time-63351e35603a is a good read.
Pages:
Jump to: