It was the Bitcointalk forum that inspired us to create Bitcointalksearch.org - Bitcointalk is an excellent site that should be the default page for anybody dealing in cryptocurrency, since it is a virtual gold-mine of data. However, our experience and user feedback led us create our site; Bitcointalk's search is slow, and difficult to get the results you need, because you need to log in first to find anything useful - furthermore, there are rate limiters for their search functionality.
The aim of our project is to create a faster website that yields more results and faster without having to create an account and eliminate the need to log in - your personal data, therefore, will never be in jeopardy since we are not asking for any of your data and you don't need to provide them to use our site with all of its capabilities.
We created this website with the sole purpose of users being able to search quickly and efficiently in the field of cryptocurrency so they will have access to the latest and most accurate information and thereby assisting the crypto-community at large.
> SOILfaucet = new web3.eth.contract([ { "constant": false, "inputs" ... see above )
{
address: "0xdac49860bee0e6d0775f69721459c411d62fd1bc",
allEvents: function(),
... }
> loadScript("altsheets.js")
> bal()
0x2668de18c1... 0.90685 soil
> web3.fromWei(SOILfaucet.getBalance.call(), "soil")
9.5
> SOILfaucet.getSOIL.sendTransaction({from:eth.coinbase})
Unlock account 2668de18c1...
Passphrase: *****************
"0x8064638daa2e4846e5b38765a188605ce3cb34fe189b89e53484a1820f0d0c70"
> web3.fromWei(SOILfaucet.getBalance.call(), "soil")
9
> bal()
0x2668de18c1... 1.40441185 soil
after - before - received = - costs
1.40441185 - 0.90685 - 0.5 = - 0.00243815
SOILfaucet.getSOIL.sendTransaction({from:eth.coinbase})
web3.fromWei(SOILfaucet.getBalance.call(), "soil")
SOILfaucet.sendSOIL.sendTransaction('DESTINATION ADDRESS',{from:eth.coinbase})
contract SOILfaucet {
address owner;
uint256 sendAmount;
mapping (address => uint) lastSent;
uint blockLimit;
function SOILfaucet(){
owner = msg.sender;
sendAmount = 500000000000000000;
blockLimit = 86400;
}
function getBalance() returns (uint){
return address(this).balance;
}
function getSOIL() returns (bool){
if(lastSent[msg.sender]<(block.number-blockLimit)&&address(this).balance>sendAmount){
msg.sender.send(sendAmount);
lastSent[msg.sender] = block.number;
return true;
} else {
return false;
}
}
function sendSOIL(address recp) returns (bool){
if(lastSent[msg.sender]<(block.number-blockLimit)&&address(this).balance>sendAmount){
recp.send(sendAmount);
lastSent[msg.sender] = block.number;
return true;
} else {
return false;
}
}
function getBlockLimit() returns (uint){
return blockLimit;
}
function setBlockLimit(uint limit) returns (bool){
if(msg.sender==owner) {
blockLimit = limit;
return true;
} else {
return false;
}
}
function setSendAmount(uint256 val) returns (bool){
if(msg.sender==owner) {
sendAmount = val;
return true;
} else {
return false;
}
}
function getSendAmount() returns (uint256){
return sendAmount;
}
function killSOILfaucet(){
if(msg.sender==owner) {
suicide(owner);
}
}
}
cd ~/soil/eth-net-intelligence-api
nano app.json
pm2 restart app.json