Pages:
Author

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

sr. member
Activity: 304
Merit: 250

right now, with SOIL as well as ETH, smart contracts remain fairly esoteric, not only in definition, but in building, deployment and essential end-user interaction. im hoping that thru some discussions here, we can get some other folks working of dApps on the SOIL blockchain.


BLK as done this since month...
look at the last version of blackHalo (http://blackhalo.info/) look awesome
nobody care because no marketing and hype
David Zimbeck still working on it :-)

hero member
Activity: 722
Merit: 501


DANG! I wanted to buy soil for 300 satoshi instead of 600, now the coin is 3000! LOL



Just wait couple of days.

well, block times are now down to 29s average, with modest but persistent hashrates maintaining the block times and mining distribution. its not a rapid deployment of currency, but with stabler blocktimes, work on dApps can be accomplished much faster as well. it was killing me, launch a contract and wait half an hour for mining confirmation.

i dont see meteoric valuation rise like ethereum, or even decent sustainable rises like expanse. but i can see a steady slow increase in value, something that will prove its worth. im a dead realist when it comes to the market, kinda gotta be with something as attendant with chaos theory. the valuation, i think, serves us better right now, to attract that sort of computational need for renewable energy sciences and implementation.. for ubiquitous agricultural monitoring and design... that would benefit from cost effective computing AS EFFECTIVE BY DESIGN with the ethereum blockchain.

sr. member
Activity: 250
Merit: 250


DANG! I wanted to buy soil for 300 satoshi instead of 600, now the coin is 3000! LOL



Just wait couple of days.
hero member
Activity: 722
Merit: 500
StakeChain Community leader


DANG! I wanted to buy soil for 300 satoshi instead of 600, now the coin is 3000! LOL



Sometimes you have luck and and sometimes not.
I took some profit becouse I bought 200k for 400-600 Sat
legendary
Activity: 1190
Merit: 1004


DANG! I wanted to buy soil for 300 satoshi instead of 600, now the coin is 3000! LOL


legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
Wow. Kudos for that overview. Great piece of work!
hero member
Activity: 722
Merit: 501
first of all, id like to apologize for the lengthiness of this post, its the first in a series im hoping to pen in order to introduce everyone to smart contracts and dApps, in the hopes of getting more and varied dApps deployed onto the SOIL-VM.

as ive said before, i think the most important thing about SOIL is the fact we can run smart contracts (or dApps) on the blockchain. i truly believe that these are the the future of how we interact online, and given five years, smart contracts will be the underlying layer from everything from our email and social media to how we perform scientific studies and computational needs. it will lead, over the course of the next decade, to what stephen tual from Ethereum calls the "decentralization singularity".

right now, with SOIL as well as ETH, smart contracts remain fairly esoteric, not only in definition, but in building, deployment and essential end-user interaction. im hoping that thru some discussions here, we can get some other folks working of dApps on the SOIL blockchain.

why would SOIL be a great place to deploy smart contracts? the cost of the computational actions. where ETH is now $6.25, and "gas" to perform a transaction or deployment is 500 szabo (1 szabo=.00001ETH) the cost of transactions is $0.03125USD. this can add up in one is doing many transactions, which in business terms cuts in to the bottom line.

with SOIL, where whole unit costs are hovering around $0.015USD, the same transaction or computational cost works out to $0.000075USD. gas price acceptance by miners is alterable, as is the gas you want to use to perform a computation or transaction, but..well, default is default. with little incentive and nearly non-existent instructions to do so from a miners perspective, the "gas" system is becoming very inefficient and costly using ETH. what happens when ETH hits $10, or $20?

beyond the basic economic considerations of use on the EVM, the documentation for deployment and interaction with smart contracts is also less than accessible. so, maybe we need to break it down a little and put everything in simpler terms.

ive been watching the expansion of the dAppsphere over the last several months, and theres a lot of really promising projects being developed for Ethereum. being open source, this gives SOIL, as well as Expanse, the ability to really work with whats out there. unfortunately, generally without much support from the developers. but what makes smart contracts so important in the first place, especially now, in the nascent stages of the Virtual Machine architecture? and where does it go from here?

smart contracts are self-executing or self-enforcing (or both) bits of code that run on top of the virtual machine, which will create a decentralized internet, where we can access documents, perform scientific computations, and run financial and organizational schemes, just as a few examples. pretty much... imagination is the limit. as we continue to build this architecture into the blockchain, smart contracts will be able to communicate with each-other, creating massive scalability. right now, the bulk of contracts are very simple things, while there are some massive projects out there such as augur.

ethereum uses, essentially, three programming languages... solidity, serpent and lll. solidity is the language being pushed most, while serpent (a near relation to python) remains very usable. a number of online compilers exist, generally for the solidity language, to make setting up a contract from basic progamming language into machine code that is readable on the EVM. there are tons of tutorials online, although, with the speed of evolution for these languages, many times the example script is outdated and doesnt compile right, which just leads to frustration. other dApp development package managers are becoming available as well, both for solidity and for serpent, which seek to make building and deploying a contract much simpler. as we approach Homestead on ETH, which will naturally lead to improvements here on SOIL, we'll see a much greater accessibility to building dApps.

so, online compilers, on-console compilers.... thanks to peter, we have the SOIL development tool, based on cosmo, to work with.
( https://bitcointalksearch.org/topic/m.13574585 ) but using the other compilers to break a contract code into bytecode or "web3 deployment code" can be used as well. one of the issues ive found working with these is that not every online compiler works the same, or provides the same output.

probably the most well-known online compiler is chriseth's one at github ( https://chriseth.github.io/browser-solidity/ ) and it remains the one im using more often than not. entering in your contract code in the left-side pane will present different forms of compiled code. bytecode, which is how a contract is STORED on the blockchain is a long line of hexidecimal digits (0-9, a-h).

(*you can view the bytecode for many contracts already existing on the ETH blockchain at ( https://live.ether.camp/contracts ) and using some of the ETH block explorers, you can call up a contract's address and view the code built into it. ( https://www.etherchain.org provides the basic code (for verified source code), ABI, bytecodes and opcodes for contracts; https://etherscan.io provides opcodes and bytecodes) )

interface brings up the contract API, which is used to communicate with the contract.
web3 deploy brings the information necessary to copy/paste into the clientside CLI (gsoil) in order to deploy the contract simply
uDApp is short for Universal DApp, which is considered "a Universal Interface for contracts on the Ethereum blockchain". the project behind this feature seems to have been abandoned, or rolled into the basic solidity compiler, solc.
other features with chriseth's compiler give you the solidity interface, opcodes, functions, and gas estimates.

etherchain's compiler at ( https://www.etherchain.org/solc ) presents much of the same information, but i find it buggy, with lots of errors in compiling presented. simple contracts work well, but anything meaty seems to have issues.

cosmo ( http://meteor-dapp-cosmo.meteor.com/ ) which is what peter's development tools are based on, presents a clean interface with which to build, compile and deploy dApps, including basic interfaces with which to call and transact with a smart contract (methods) and to interact with state-changing events, which is VERY helpful.

ether-fund (http://ether.fund/tools/) has a development tool and compiler available under the "tools" section, but it requires an account with them, the creation of which seems to be broken. verification emails never arrive, setting up a new account leads to an error thats been in place for many months, unfixed.

compiling can also be done via the console on gsoil. first you must make sure that the compilers are available and installed. (https://github.com/ethereum/go-ethereum/wiki/Contract-Tutorial) has a not-so-clear tutorial on how to enable this. you will have to do a little searching to find the necessary repositories for the various compilers.

ether-scripter (http://etherscripter.com/0-5-1/) also maintains an online development tool for the serpent and lll languages, but ive not had much luck working with it thus far.

serpent also has the pyepm (pyethereum package manager) available, which requires building a .yaml file to handle releasing and setting up contracts. ill go into the list of  development packages in another post.

for right now, id suggest looking into the projects available (http://dapps.ethercasts.com/ , https://consensys.net/ventures/spokes/ , http://hack.ether.camp/) and see what interests you. start small, and work your way up into larger projects. a quick search for "smart contracts" at github also reveals a plethora of contracts being worked on. hope everyone is having a great day. me, im taking a long-deserved hike in the woods today and then, more work on my pet projects this evening.






sr. member
Activity: 1274
Merit: 263
dear dev.
if you need something.you can discuss it with community.
we are exsist to support a project.
i hope we can see the bright future for soilcoin.
sr. member
Activity: 616
Merit: 250

prices will stabilize in late 4000 Wink Wink Wink
hero member
Activity: 722
Merit: 501
Hi SOIL-Team,

Could you please send me an invite for slack? Would be great, thanks!

pm me your email address and ill send you an invite. our slack instance hasnt been used all of a much, really. shuld really change that and start just BEING there a bit more.
hero member
Activity: 1039
Merit: 510
Hi SOIL-Team,

Could you please send me an invite for slack? Would be great, thanks!
legendary
Activity: 902
Merit: 1001
Free trial of #AltFolio = save time, react faster
samsung news

I've just queried my favorite search engine :-) and found some backgrounds about that:
* short video - a washing machine orders detergent https://www.theprotocol.tv/adept-demo-ibm-samsung/
* her article http://public.dhe.ibm.com/common/ssi/ecm/gb/en/gbe03620usen/GBE03620USEN.PDF (not read yet)
* IBM's tool chain https://www.youtube.com/watch?v=hwaBM-kQeqc#t=2080 (not watched yet)

other, more on the spot sources are welcome :-)
newbie
Activity: 9
Merit: 0
Eth is getting a major lift off samsung news.  As one of the few eth forks on the market right now, this may best time to focus the public and potential investors on how soil is going to be part of the innovation explosion in block chain tech. Would help poloniex listing chances too. Marketcap of soilcoin should be on par with expanse.
sr. member
Activity: 304
Merit: 250
hoping to build interest in having #SOIL @SOILcoin included at @Poloniex please retweet this to help get SOIL listed!!

https://twitter.com/SOILcoin/status/698133684931665920
sr. member
Activity: 616
Merit: 250

Very nice trade in bittrex Wink Wink
legendary
Activity: 1190
Merit: 1000
Since
i wrote the above the price has improved a bit
legendary
Activity: 1190
Merit: 1000


the remaining 4868 SOIL i transfered to the exchange will be used next month to cover the costs as needed. essentially, we hoped that the mining pool fees would help cover some of these fees, but thats not been the case.



How much do you need? I will buy those soil at 0.00003 if you like. It's too cheap to sell them here. Give me a btc address...I will send the btc. If the price is higher later on sell them on market and return the btc. But don't sell here it's too cheap.


Do we have a btc donation address?
newbie
Activity: 9
Merit: 0
Shame to sell so low from developer account.  Is it possible to implement an early switch to POS instead of POW?  Ethereum is headed in the direction eventually and you'd get rid of a lot of selling pressure. 

Neucoin just announced plans to switch to full POS ahead of schedule and price has already rebounded, just on anticipation of POW stopping alone https://coinmarketcap.com/currencies/neucoin/
legendary
Activity: 2453
Merit: 1025
Energy coin master
just a quick note, made a withdrawl from my developers reserve to the exchange in order to pay for the cloud server costs hosting our network intelligence, mining pool, website, and development virtual machines.

i sold 5132 SOIL on bittrex to cover the .036 BTC costs of hosting for the next month.
(https://bitpay.com/invoice?id=Bz5ZD6yU3PFB8FHgPZnDke)

the remaining 4868 SOIL i transfered to the exchange will be used next month to cover the costs as needed. essentially, we hoped that the mining pool fees would help cover some of these fees, but thats not been the case.

just in case someone decides to check my developer's account balance on the explorer, for transparencies sake. im still still not dumping my SOIL on the market, but using what i have to work with for development purposes.

Selling 5132 is not dumping imo.
I hope that the blocktime reajusstment is soon okay then mining is more profitable.
I sold also some SOIL because I needed to pay some expenses and maybe I buy back if the rate is going down more.

 
Pages:
Jump to: