Bitcoin Forum
April 25, 2024, 10:28:18 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 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 [66] 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 ... 148 »
  Print  
Author Topic: 🌱[ANN] SOIL | Environmental | Agriculture | Smart Contracts | Sustainable  (Read 237556 times)
Dexport0100
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile WWW
December 02, 2015, 10:42:43 PM
 #1301

vote also send  Wink
1714040898
Hero Member
*
Offline Offline

Posts: 1714040898

View Profile Personal Message (Offline)

Ignore
1714040898
Reply with quote  #2

1714040898
Report to moderator
1714040898
Hero Member
*
Offline Offline

Posts: 1714040898

View Profile Personal Message (Offline)

Ignore
1714040898
Reply with quote  #2

1714040898
Report to moderator
1714040898
Hero Member
*
Offline Offline

Posts: 1714040898

View Profile Personal Message (Offline)

Ignore
1714040898
Reply with quote  #2

1714040898
Report to moderator
The block chain is the main innovation of Bitcoin. It is the first distributed timestamping system.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714040898
Hero Member
*
Offline Offline

Posts: 1714040898

View Profile Personal Message (Offline)

Ignore
1714040898
Reply with quote  #2

1714040898
Report to moderator
1714040898
Hero Member
*
Offline Offline

Posts: 1714040898

View Profile Personal Message (Offline)

Ignore
1714040898
Reply with quote  #2

1714040898
Report to moderator
abvhiael
Hero Member
*****
Offline Offline

Activity: 722
Merit: 501


View Profile
December 03, 2015, 04:07:01 AM
Last edit: December 03, 2015, 12:39:54 PM by abvhiael
 #1302

a week back, or so, when talking about our short and medium term road map, a community member brought up the request for something akin to stats.ethdev.com for SOIL. so, here you go:

http://stats.soilcoin.xyz/

adding one's node is voluntary, so that the map presented doesnt show the ENTIRE health of the network, but is a good window to peer into. this service runs alongside SOILcoin, and tracks the network status; fetching information thru JSON-RPC, and connecting thru WebSockets to stats.soilcoin to feed information. the original author of the network intelligence suite is Marian Oancea, who maintains his repository at GitHub at https://github.com/cubedro.

if you would like to add your node to the stats, to help present a fuller picture of the whole network state, peter supplied a SOIL-specific walkthru after he cloned the stats service for SOIL. he also fixed a small bug in eth-netstats, so its best to grab your build from our github repository. he has provided instructions to install and start the application a couple messages down from this one..

the information behind the parent DApp at GitHub, which this is simply a pointed-at-SOIL instead implementation, and to whom all props should go is: https://github.com/ethereum/wiki/wiki/Network-Status. the network information, the down and dirty esoteric numbers, really give a person a great understanding of how well the engine is running.

right now its only got peters node registered. i wouldve, but to be honest, there was a leafs game on teevee tonite, and thats about the only time im allowed to take control of the remote control in this house. ill get mine up on it tomorrow. hope this network intelligence provides you with all the specs your heart desires.

ive been watching it in the background all evening, and our block rate averages 16.5seconds, which ties into my earlier post. (laughs)
crypto4jan
Legendary
*
Offline Offline

Activity: 2448
Merit: 1025


Energy coin master


View Profile WWW
December 03, 2015, 07:10:42 AM
 #1303

Vote has been sent.

e2wwnbU8XBcnZxSfMTwZLS7Ru6LdWHunCu
00000a5ac2dc57cfb0b92bc8be7731fe6a94a8c1c49a0d2f32e9e2da4f7d2308
wildduck
Legendary
*
Offline Offline

Activity: 966
Merit: 1001


View Profile
December 03, 2015, 07:16:26 AM
 #1304

Vote has been sent  Smiley
soil (OP)
Full Member
***
Offline Offline

Activity: 130
Merit: 100

SOILteam


View Profile WWW
December 03, 2015, 09:03:06 AM
Last edit: February 03, 2016, 08:20:59 AM by soil
 #1305

HowTo join http://stats.soilcoin.xyz

Please note: You need a running gsoil instance with --rpc (rpc enabled) on you pc/server in order to join the stats

Ubuntu:

Install node.js:
Code:
curl -sL https://deb.nodesource.com/setup | sudo bash -
sudo apt-get install nodejs

Get and install eth-net-intelligence-api:
Code:
git clone https://github.com/soilcurrency/eth-net-intelligence-api.git
cd eth-net-intelligence-api
npm install
sudo npm install -g pm2

Edit the app.json file:
Code:
[
  {
    "name"              : "node-app",
    "script"            : "app.js",
    "log_date_format"   : "YYYY-MM-DD HH:mm Z",
    "merge_logs"        : false,
    "watch"             : false,
    "max_restarts"      : 10,
    "exec_interpreter"  : "node",
    "exec_mode"         : "fork_mode",
    "env":
    {
      "NODE_ENV"        : "production",
      "RPC_HOST"        : "localhost",
      "RPC_PORT"        : "39421",
      "LISTENING_PORT"  : "39420",
      "INSTANCE_NAME"   : "YOUR NODE NAME",
      "CONTACT_DETAILS" : "EMAIL, WALLET, WHATEVER",
      "WS_SERVER"       : "http://45.63.4.165:3000",
      "WS_SECRET"       : "ilikesoil1.4.0",
      "VERBOSITY"       : 2
    }
  }
]

Finally run the process with:
Code:
pm2 start app.json

Windows:

Install python:
Choose add "python to path" in the dialog window.
Python

Install nodejs:
https://nodejs.org

Get eth-net-intelligence-api:
Download

Extract it to e.g. "C:\Users\username\Desktop"

Edit  "INSTANCE_NAME" in the file app.json:
Code:
[
  {
    "name"              : "node-app",
    "script"            : "app.js",
    "log_date_format"   : "YYYY-MM-DD HH:mm Z",
    "merge_logs"        : false,
    "watch"             : false,
    "max_restarts"      : 10,
    "exec_interpreter"  : "node",
    "exec_mode"         : "fork_mode",
    "env":
    {
      "NODE_ENV"        : "production",
      "RPC_HOST"        : "localhost",
      "RPC_PORT"        : "39421",
      "LISTENING_PORT"  : "39420",
      "INSTANCE_NAME"   : "YOUR NODE NAME",
      "CONTACT_DETAILS" : "EMAIL, WALLET, WHATEVER",
      "WS_SERVER"       : "http://45.63.4.165:3000",
      "WS_SECRET"       : "ilikesoil1.4.0",
      "VERBOSITY"       : 2
    }
  }
]

Double-click "init.bat"

Double-click "start.bat" to register yourself to the node.

Double-click "stop.bat" to deregister yourself to the node.

fartbags
Legendary
*
Offline Offline

Activity: 1190
Merit: 1004


View Profile
December 03, 2015, 09:14:37 PM
 #1306




I just bought my first 1000 SOIL! This coin is exciting. Good development so far and community so far.

Here is some very important information for the SOIL devs if they plan on switching to PoS:
https://www.youtube.com/channel/UCU5CBbxAeFYnodf32w3ahOQ/videos

Watch the 3 videos called "π-calculus for fun and profit". Greg Meredith, the developer of Synereo, is teaching Vitalik, Vlad and the other LBs over at Ethereum how to develop software. This Casper project is pretty exciting. It looks like the majority of Ethereum is going to be totally rewritten though.



kawa900jc
Hero Member
*****
Offline Offline

Activity: 720
Merit: 500


StakeChain Community leader


View Profile
December 04, 2015, 04:10:21 PM
 #1307




I just bought my first 1000 SOIL! This coin is exciting. Good development so far and community so far.

Here is some very important information for the SOIL devs if they plan on switching to PoS:
https://www.youtube.com/channel/UCU5CBbxAeFYnodf32w3ahOQ/videos

Watch the 3 videos called "π-calculus for fun and profit". Greg Meredith, the developer of Synereo, is teaching Vitalik, Vlad and the other LBs over at Ethereum how to develop software. This Casper project is pretty exciting. It looks like the majority of Ethereum is going to be totally rewritten though.



Welcome, the 100 SOIL is jus the beginning of your collection of SOIL?
We need more volume of SOIL!
buy buy buy or sell sell sell

123sss
Sr. Member
****
Offline Offline

Activity: 315
Merit: 250


View Profile
December 05, 2015, 11:43:51 AM
 #1308

need poloniEX.
123sss
Sr. Member
****
Offline Offline

Activity: 315
Merit: 250


View Profile
December 05, 2015, 11:44:59 AM
 #1309

where promised mobile wallet?
Dimid
Sr. Member
****
Offline Offline

Activity: 702
Merit: 255



View Profile
December 05, 2015, 12:10:52 PM
 #1310

where promised mobile wallet?
https://play.google.com/store/apps/details?id=com.soilcoin.currency
abvhiael
Hero Member
*****
Offline Offline

Activity: 722
Merit: 501


View Profile
December 05, 2015, 03:17:17 PM
 #1311

need poloniEX.


i actually wrote poloniex this last week, as we'd tried to get listed with them in the first week after launch. they havent responded yet. theres a disturbing lack of communicatin that flows out from these exchanges, sadly, and its rare for them to even respond one way or another nowadays. if you want us listed on your favorite exchange, let THEM know, as well. community involvement and requests go a long way.

that being said, as therewere n oother issues brought up regarding our first public vote on SOIL, we'll go with the block time question. ive already received a few votes, with their connected wallet addresses. we'll tally the balloting up on wednesday, at 23:59 GMT,  and then post the results.

the options we've presented are:
A - 10-12 seconds - what Buterin proposes would be sustainable
B - 15 seconds     - leave it as is
C - 30 seconds     - closer to what we intended in the first place
D - 60 seconds     - about the average block time target among all altcoins
E - 120 seconds    - about 1/5th the time of BTC, still leading to stronger stability but longer overall confirmations

let us know what you think. have a great weekend everyone!!
Dexport0100
Newbie
*
Offline Offline

Activity: 7
Merit: 0


View Profile WWW
December 05, 2015, 05:52:49 PM
 #1312

B Smiley
abvhiael
Hero Member
*****
Offline Offline

Activity: 722
Merit: 501


View Profile
December 05, 2015, 06:06:02 PM
 #1313

B Smiley

send me your wallet address, by PM if youd prefer, so that i can use your balance as voting weight. 1SOIL=1 vote.
NextGenCrypto
Sr. Member
****
Offline Offline

Activity: 462
Merit: 250


View Profile WWW
December 05, 2015, 07:50:32 PM
 #1314

B - will PM you address

soil (OP)
Full Member
***
Offline Offline

Activity: 130
Merit: 100

SOILteam


View Profile WWW
December 06, 2015, 12:53:28 AM
 #1315

C - 0x4bee6966bd51bf448f40d89e65a9c93179fed002
skunk
Sr. Member
****
Offline Offline

Activity: 329
Merit: 250


View Profile
December 06, 2015, 01:09:45 AM
 #1316

C - 0xbd0beda67e12968514858d0facc90bdacc553224

compmaster
Sr. Member
****
Offline Offline

Activity: 476
Merit: 250


View Profile
December 06, 2015, 01:37:53 AM
 #1317




I just bought my first 1000 SOIL! This coin is exciting. Good development so far and community so far.

Here is some very important information for the SOIL devs if they plan on switching to PoS:
https://www.youtube.com/channel/UCU5CBbxAeFYnodf32w3ahOQ/videos

Watch the 3 videos called "π-calculus for fun and profit". Greg Meredith, the developer of Synereo, is teaching Vitalik, Vlad and the other LBs over at Ethereum how to develop software. This Casper project is pretty exciting. It looks like the majority of Ethereum is going to be totally rewritten though.




If @fartbags is down with SOIl. Then I'm in on this thing!
Dimid
Sr. Member
****
Offline Offline

Activity: 702
Merit: 255



View Profile
December 06, 2015, 04:21:45 AM
 #1318

C - 0xa3896a24f84072d2c28acc77d962db1e0248a910
crypto4jan
Legendary
*
Offline Offline

Activity: 2448
Merit: 1025


Energy coin master


View Profile WWW
December 06, 2015, 07:15:12 AM
 #1319

D - 0x4e2230c39dfcd0828a0b4dcad791a12cb084f11c

e2wwnbU8XBcnZxSfMTwZLS7Ru6LdWHunCu
00000a5ac2dc57cfb0b92bc8be7731fe6a94a8c1c49a0d2f32e9e2da4f7d2308
123sss
Sr. Member
****
Offline Offline

Activity: 315
Merit: 250


View Profile
December 06, 2015, 11:57:00 AM
 #1320

I send to D - 0x4e2230c39dfcd0828a0b4dcad791a12cb084f11c     5235.90000000SOIL.
Pages: « 1 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 [66] 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 ... 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!