Bitcoin Forum
July 01, 2024, 03:15:15 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Poll
Question: none
. - 0 (0%)
. - 0 (0%)
Total Voters: 0

Pages: « 1 ... 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 [145] 146 147 148 »
  Print  
Author Topic: 🌱[ANN] SOIL | Environmental | Agriculture | Smart Contracts | Sustainable  (Read 237569 times)
CryptoBelgium
Newbie
*
Offline Offline

Activity: 4
Merit: 0


View Profile
April 02, 2018, 11:56:54 AM
 #2881


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?
sdjkhxz8977777
Newbie
*
Offline Offline

Activity: 33
Merit: 0


View Profile
April 07, 2018, 06:45:31 AM
 #2882

Interesting....anything shaped gets my attention. Smiley Smiley
tigerruller123
Newbie
*
Offline Offline

Activity: 43
Merit: 0


View Profile
April 08, 2018, 06:15:35 AM
 #2883

I marked this ANN, I am considering this carefully
altsheets
Legendary
*
Offline Offline

Activity: 902
Merit: 1001

Free trial of #AltFolio = save time, react faster


View Profile WWW
April 08, 2018, 07:32:05 PM
 #2884


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.


AltFolio = Altcoin Portfolio solution || AAsset = crowdfunding, dividends paying = profit sharing Assets on NXT || Newbium great new platform || AssetGraphs = novel GUI to assets & shareholders (won nxthacks2015!) || ABEE = Block Explorer Extension for ETH clones, live on SOIL || Advice = Consulting || assetparser.py and shareholders.py - tools for NXT/HZ asset buyers & issuers || bamm.py || PeerCrawler || PGP || Texts || Github e.g. ChainCountDown, ethjsre |||| /give/ GiveBackLicense /give/ |||| Looking for an affordable crypto advertisement service with adspaces on crypto-attractive websites, contact me, thx.
altsheets
Legendary
*
Offline Offline

Activity: 902
Merit: 1001

Free trial of #AltFolio = save time, react faster


View Profile WWW
April 08, 2018, 07:35:56 PM
 #2885

...

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://bitcointalk.org/index.php?topic=1176709.msg13207211#msg13207211
   // and https://bitcointalk.org/index.php?topic=1176709.msg13290036#msg13290036
   // and https://bitcointalk.org/index.php?topic=1176709.msg16635478#msg16635478


but ... I think there is a "phase 4". When? How? 

AltFolio = Altcoin Portfolio solution || AAsset = crowdfunding, dividends paying = profit sharing Assets on NXT || Newbium great new platform || AssetGraphs = novel GUI to assets & shareholders (won nxthacks2015!) || ABEE = Block Explorer Extension for ETH clones, live on SOIL || Advice = Consulting || assetparser.py and shareholders.py - tools for NXT/HZ asset buyers & issuers || bamm.py || PeerCrawler || PGP || Texts || Github e.g. ChainCountDown, ethjsre |||| /give/ GiveBackLicense /give/ |||| Looking for an affordable crypto advertisement service with adspaces on crypto-attractive websites, contact me, thx.
megapool.io
Member
**
Offline Offline

Activity: 70
Merit: 12

MegaPool.io


View Profile WWW
April 10, 2018, 06:32:16 AM
 #2886


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

MegaPool.io - Free Modern Mining Pool
achkn
Member
**
Offline Offline

Activity: 183
Merit: 10

Cryptobiosis


View Profile
April 10, 2018, 07:10:49 AM
Last edit: April 11, 2018, 08:21:05 AM by achkn
 #2887


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
hm...
if they stop working for a long time i can create new explorer Roll Eyes

team soil
Last Active:    February 02, 2018, 03:43:58 PM

i think we need a new soilcoin site( old not working ), explorer and topic update
and please create the official twitter. old is not good  Grin

and correct mistake in the client commands
In the first post:
Balance: web3.fromWei(eth.getBalance("address"), "soil") - wrong
Balance: web3.fromWei(eth.getBalance("address"), "ether") - working

or if you have only one address - web3.fromWei(eth.getBalance(eth.coinbase), "ether")

and please remove the poll from topic, or edit

ManDoneKTM
Newbie
*
Offline Offline

Activity: 150
Merit: 0


View Profile
April 13, 2018, 05:21:08 PM
 #2888

Guys , i used the wallet in the 1st post description , and i mined more than 450 soil coins , in the pool is   Total Paid: 513.19887418  but in the desktop wallet still 0 , i have 2 days with this ... Anyone has an another type of soil wallet ? or where i could store safety my soil coins ?


Main account (Etherbase)
 0xeab9839a3C6D15BC47705387BAaB06745229DA4c
0,00  SOIL
ManDoneKTM
Newbie
*
Offline Offline

Activity: 150
Merit: 0


View Profile
April 17, 2018, 12:27:54 AM
 #2889

so , nobody knows why the soil coins i mined , doesnt show in my soil wallet Huh  Angry
altsheets
Legendary
*
Offline Offline

Activity: 902
Merit: 1001

Free trial of #AltFolio = save time, react faster


View Profile WWW
April 17, 2018, 10:43:09 PM
 #2890

The cloud provider restarted all machines, that's why the Blockexplorer was offline.

Blockexplorer is back: http://178.62.133.174:9001


If you have coins that you want to give away:     0x8da4fc05ca343e6a41646194e91931d9f413a40c    Thanks.


AltFolio = Altcoin Portfolio solution || AAsset = crowdfunding, dividends paying = profit sharing Assets on NXT || Newbium great new platform || AssetGraphs = novel GUI to assets & shareholders (won nxthacks2015!) || ABEE = Block Explorer Extension for ETH clones, live on SOIL || Advice = Consulting || assetparser.py and shareholders.py - tools for NXT/HZ asset buyers & issuers || bamm.py || PeerCrawler || PGP || Texts || Github e.g. ChainCountDown, ethjsre |||| /give/ GiveBackLicense /give/ |||| Looking for an affordable crypto advertisement service with adspaces on crypto-attractive websites, contact me, thx.
altsheets
Legendary
*
Offline Offline

Activity: 902
Merit: 1001

Free trial of #AltFolio = save time, react faster


View Profile WWW
April 20, 2018, 10:57:21 PM
 #2891

...

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,

...
...




https://coinmarketcap.com/currencies/soilcoin/

says 5,702,048 SOIL = Circulating Supply

And I do not know how they arrive at that number, or whether it is wrong or not.


My -wrong- number is supply = 6,300,326

See http://178.62.133.174:9001/#/chain/



Whoever knows more about this, please enlighten us, then I can adapt the code, to come to the right answer.

AltFolio = Altcoin Portfolio solution || AAsset = crowdfunding, dividends paying = profit sharing Assets on NXT || Newbium great new platform || AssetGraphs = novel GUI to assets & shareholders (won nxthacks2015!) || ABEE = Block Explorer Extension for ETH clones, live on SOIL || Advice = Consulting || assetparser.py and shareholders.py - tools for NXT/HZ asset buyers & issuers || bamm.py || PeerCrawler || PGP || Texts || Github e.g. ChainCountDown, ethjsre |||| /give/ GiveBackLicense /give/ |||| Looking for an affordable crypto advertisement service with adspaces on crypto-attractive websites, contact me, thx.
oscarjessa
Newbie
*
Offline Offline

Activity: 28
Merit: 0


View Profile
April 26, 2018, 06:28:23 AM
 #2892

I'm getting some network lag or lack of connectivity and making my own temp forks briefly, then the client catches up. It looks like I have enough peers though.
phamnguyenthientinh
Newbie
*
Offline Offline

Activity: 23
Merit: 0


View Profile
April 26, 2018, 05:02:15 PM
 #2893

Hi dev, I have a couple of questions when the reward of preminado will receive necessary update the portfolio or something I read a previous post I had to give you again the addresses of the portfolio, and one last question is the exange ready are 25 minutes and I bite my fingers I'm very excited about its currency hope not to be disappointed with the price hehe thanks .
altsheets
Legendary
*
Offline Offline

Activity: 902
Merit: 1001

Free trial of #AltFolio = save time, react faster


View Profile WWW
May 09, 2018, 08:32:18 PM
 #2894


anyone?


...

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,

...
...




https://coinmarketcap.com/currencies/soilcoin/

says 5,702,048 SOIL = Circulating Supply

And I do not know how they arrive at that number, or whether it is wrong or not.


My -wrong- number is supply = 6,300,326

See http://178.62.133.174:9001/#/chain/



Whoever knows more about this, please enlighten us, then I can adapt the code, to come to the right answer.


AltFolio = Altcoin Portfolio solution || AAsset = crowdfunding, dividends paying = profit sharing Assets on NXT || Newbium great new platform || AssetGraphs = novel GUI to assets & shareholders (won nxthacks2015!) || ABEE = Block Explorer Extension for ETH clones, live on SOIL || Advice = Consulting || assetparser.py and shareholders.py - tools for NXT/HZ asset buyers & issuers || bamm.py || PeerCrawler || PGP || Texts || Github e.g. ChainCountDown, ethjsre |||| /give/ GiveBackLicense /give/ |||| Looking for an affordable crypto advertisement service with adspaces on crypto-attractive websites, contact me, thx.
227ths
Newbie
*
Offline Offline

Activity: 10
Merit: 0


View Profile
May 10, 2018, 11:47:24 AM
Last edit: May 10, 2018, 12:23:12 PM by 227ths
 #2895


anyone?

...

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

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

...

Just saw these new posts.
I could be wrong but wouldn't circulating supply be the current top block?

At any rate, I'm not the dev and not quite sure what you are asking? (I am sleep deprived right now which isn't helping..)

And yes, I put up some links to help when I saw http://178.62.133.174:9001 wasn't working anymore..

https://soil.holylinux.net/ -> my pool - the following links are also at bottom/footer on pool page :
http://soilblocks.holylinux.net and some blocktimes -> http://soilblocks.holylinux.net/#/chain/
https://soilstats.holylinux.net/  (probably not very accurate/but most ethash stats pages I see aren't very)


(If you are looking to mine please give my pool a try. Concerned no one is mining on my pool? Don't be - you WILL win blocks easily. You do not need multi-miners on soil pools to win coins/blocks. The only drawback/concern are these ever increasing blocktimes. I am making next to nothing on my pool and doing this as a service because I like the idea behind this coin - it also helps it's still listed on Cryptopia. ;-) I just hope dev (or someone) starts working on it again!!)

If you get http://178.62.133.174:9001 working and/or find out more info please post here. :-)

The thing that concerns me most is the ever increasingly huge blocktimes. I doubt this was by design?
I find myself having to adjust pool variables every couple weeks (so that the pool home page/etc stats are more correct (things like variance are based on a static blocktime variable - soilcoin avg blocktime isn't staying static as you can see).

I may edit this later after I get some sleep. lol...
altsheets
Legendary
*
Offline Offline

Activity: 902
Merit: 1001

Free trial of #AltFolio = save time, react faster


View Profile WWW
May 10, 2018, 09:23:11 PM
 #2896

thanks a lot

anyone?
...
and http://178.62.133.174:9001/#/chain/
not sure the "mined" and "supply" is correct though.
...
Just saw these new posts.
I could be wrong but wouldn't circulating supply be the current top block?
At any rate, I'm not the dev and not quite sure what you are asking? (I am sleep deprived right now which isn't helping..)
The question goes to one of the several core devs who showed up here and worked on extending the code, long ago. They changed the block reward, and my post further back explained how I reflected that in the block explorer mined/supply totals.
But the last update/s are not included yet, so I am asking for the exact block number/s at which the block rewards were changed.

It won't cost me much time to include that information into my block explorer code, I just need to get the numbers right.



And yes, I put up some links to help when I saw http://178.62.133.174:9001 wasn't working anymore..

https://soil.holylinux.net/ -> my pool - the following links are also at bottom/footer on pool page :
http://soilblocks.holylinux.net and some blocktimes -> http://soilblocks.holylinux.net/#/chain/
https://soilstats.holylinux.net/  (probably not very accurate/but most ethash stats pages I see aren't very)

(If you are looking to mine please give my pool a try. Concerned no one is mining on my pool? Don't be - you WILL win blocks easily. You do not need multi-miners on soil pools to win coins/blocks. The only drawback/concern are these ever increasing blocktimes. I am making next to nothing on my pool and doing this as a service because I like the idea behind this coin - it also helps it's still listed on Cryptopia. ;-) I just hope dev (or someone) starts working on it again!!)

Good resources.

Who is administering the OP#1 post, and the website at the moment?

I suggest you (whoever) put 227ths' links there.


If you get http://178.62.133.174:9001 working and/or find out more info please post here. :-)
Oh, it is working fine, just try again now:

http://178.62.133.174:9001/#/chain/
http://178.62.133.174:9001/#/address/0x8da4fc05ca343e6a41646194e91931d9f413a40c


The thing that concerns me most is the ever increasingly huge blocktimes. I doubt this was by design?
No idea, sorry.

Could be aftermath of some hashing power attack (where large miners come in, mine very fast, drive up the difficulty, and then leave it behind, stuttering).
Could also be by design - does anyone know whether the Ethereum Ice Age was ever removed from the soil fork code?  If not, anyone able to do that?


I find myself having to adjust pool variables every couple weeks (so that the pool home page/etc stats are more correct (things like variance are based on a static blocktime variable - soilcoin avg blocktime isn't staying static as you can see).
I may edit this later after I get some sleep. lol...

Rest well!


AltFolio = Altcoin Portfolio solution || AAsset = crowdfunding, dividends paying = profit sharing Assets on NXT || Newbium great new platform || AssetGraphs = novel GUI to assets & shareholders (won nxthacks2015!) || ABEE = Block Explorer Extension for ETH clones, live on SOIL || Advice = Consulting || assetparser.py and shareholders.py - tools for NXT/HZ asset buyers & issuers || bamm.py || PeerCrawler || PGP || Texts || Github e.g. ChainCountDown, ethjsre |||| /give/ GiveBackLicense /give/ |||| Looking for an affordable crypto advertisement service with adspaces on crypto-attractive websites, contact me, thx.
Dunkelheit667
Legendary
*
Offline Offline

Activity: 1045
Merit: 1157


no degradation


View Profile
May 11, 2018, 12:09:57 AM
 #2897

thanks a lot

anyone?
...
and http://178.62.133.174:9001/#/chain/
not sure the "mined" and "supply" is correct though.
...
Just saw these new posts.
I could be wrong but wouldn't circulating supply be the current top block?
At any rate, I'm not the dev and not quite sure what you are asking? (I am sleep deprived right now which isn't helping..)
The question goes to one of the several core devs who showed up here and worked on extending the code, long ago. They changed the block reward, and my post further back explained how I reflected that in the block explorer mined/supply totals.
But the last update/s are not included yet, so I am asking for the exact block number/s at which the block rewards were changed.

It won't cost me much time to include that information into my block explorer code, I just need to get the numbers right.

Not sure it was the latest build, but these source lines might help?

https://github.com/martymcfly2015/go-soil/blob/master/params/protocol_params.go#L35

"And the machine keeps pushing time through the cogs, like paste into strings into paste again, and only the machine keeps using time to make time to make time.
And when the machine stops, time is an illusion that we created free will.
" - an unnamed Hybrid
altsheets
Legendary
*
Offline Offline

Activity: 902
Merit: 1001

Free trial of #AltFolio = save time, react faster


View Profile WWW
May 11, 2018, 09:12:44 PM
 #2898



Perfect, that seems to be it.  

Those constants are used here: https://github.com/martymcfly2015/go-soil/blob/bcb00548a496c1ae14109f6b9703bdaf1389cc6b/core/state_processor.go#L89-L126

I'll wait a bit, whether someone else steps in, to answer this question

Not sure it was the latest build ...

Then I am also going to mention the block reward on the block page, e.g. http://178.62.133.174:9001/#/block/3259073 - that should help.



AltFolio = Altcoin Portfolio solution || AAsset = crowdfunding, dividends paying = profit sharing Assets on NXT || Newbium great new platform || AssetGraphs = novel GUI to assets & shareholders (won nxthacks2015!) || ABEE = Block Explorer Extension for ETH clones, live on SOIL || Advice = Consulting || assetparser.py and shareholders.py - tools for NXT/HZ asset buyers & issuers || bamm.py || PeerCrawler || PGP || Texts || Github e.g. ChainCountDown, ethjsre |||| /give/ GiveBackLicense /give/ |||| Looking for an affordable crypto advertisement service with adspaces on crypto-attractive websites, contact me, thx.
Skyzer0
Newbie
*
Offline Offline

Activity: 266
Merit: 0


View Profile
May 12, 2018, 02:51:15 PM
 #2899

Main developer with twitter, account here and so on has not shown face in 1 year, either the guy perished, died or just ran out of money to continue supporting this.


To me it should take ALOT to stop visiting your own made coin as this is a serious investment opportunity, so either he dead or really stupid.

pretty sure he wont come back and that you can just quit supporting this coin as it will NEVER get anywhere, you're wasting your time mining this coin. even mining it is useless compared to mining ether and simply buying this coin.
spinttt
Newbie
*
Offline Offline

Activity: 18
Merit: 0



View Profile WWW
May 15, 2018, 03:26:02 PM
 #2900

Hi all Soil Coin people.  I have been working on a new web site for  soilcoin and will have something up by the end of the month.  It will be at www.soil.cash 

I also set up a discord channel for soilcoin. 

Links to both are on the coinmarketcap soilcoin listing.

I will have more time in june to devote to working on soil coin.   I think the original ideas behind it are great...

Have a good one.

Peace

Pages: « 1 ... 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 [145] 146 147 148 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!