I finally got all my Smart Nodes up and running (see <a href="https://steemit.com/smartcash/@lukestokes/smartnodes-are-among-us-and-smartcash-price-is-rising">my previous post</a> for more on what a Smart Node is) and needed to create some scripts to manage them. This isn't really a start up guide as much as it tells a story of what I did, and it might be helpful for those who already understand how Smart Nodes work, but want some scripts to manage multiple nodes on a server. The first step on my new box was to get IP addresses added. Adding lines like this in the `iface eth0 inet static` block inside `/etc/network/interfaces/` did the trick: ``` up route add -net x.x.x.11 netmask 255.255.255.240 gw y.y.y.y eth0 up ip addr add x.x.x.11/28 dev eth0 up ip addr add x.x.x.12/28 dev eth0 ``` Where y.y.y.y is the main server IP and x.x.x.11, x.x.x.12, x.x.x.13, etc are the IPs we want to add. This example assumes you have <a href="https://www.aelius.com/njh/subnet_sheet.html">a /28 which has 15 usable IPs</a>. The 11, 12, 13 are just examples. Next I followed <a href="http://smartnodes.cc/files/SmartCash_SmartNode_Setup_Guide_v1.1.pdf">the start up guide</a> and will add notes here starting with these parts: ``` sudo apt-get install software-properties-common sudo add-apt-repository ppa:smartcash/ppa sudo apt-get update sudo apt-get install smartcashd mkdir ~/smartcash/ mkdir ~/smartcash/SmartNode_bootstrap cd ~/smartcash/ ``` You can use all of the scripts I made on your server as well (make sure they are executable via `chmod +x <file>`). A lot of these borrow heavily from the scripts you can find here: https://github.com/SmartCash/smartnode but have been modified to handle multiple nodes. * <a href="https://gist.github.com/lukestokes/9530eb772f111b1cec9382d0088808ad">create_node.sh</a> Script for copying from an already synced SmartCash SmartNode to a SmartNode01, SmartNode02, etc folder. * <a href="https://gist.github.com/lukestokes/695705fc89d037f6b0167ba416542103">clear_all_logs.sh</a> Clears all log files every other day * <a href="https://gist.github.com/lukestokes/585b03d8531b2e96738f34c2d2212eb2">smart-cli.sh</a> Call smartcash-cli for a specific node * <a href="https://gist.github.com/lukestokes/467045e2472b76d6c2388f193f9028c3">checkdaemons.sh</a> If the blocknumber isn't increasing, restart the deamon. * <a href="https://gist.github.com/lukestokes/4e0348ae4bde2e0b518951899f51f831">makerun.sh</a> Make sure each smart node is running. If it's not, restart it. * <a href="https://gist.github.com/lukestokes/c69d13b6fc2440d3f41d2d1ea9b911b5">printblocks.sh</a> Print out the current block numbers for all nodes. * <a href="https://gist.github.com/lukestokes/be1bf88ea07d08b3b7a9d44ef35b99ae">smart-start.sh</a> Start a specific Smart Node. Start with a bootstrap of the blockchain via: ``` wget http://proteanx.com/txindexstrap.zip unzip txindexstrap.zip ``` Copy those folders into SmartNode_bootstrap and start up your server via smart-start.sh: ``` ./smart-start.sh _bootstrap ``` That will take a _long_ time to sync up. You check the status with: ``` ./smart-cli.sh _bootstrap getinfo ``` Once it's done, you're ready to start creating your nodes. First, shut it down: ``` ./smart-cli.sh _bootstrap stop ``` Now you should be ready. Have all your GenKeys, IPs, Node Numbers, and RPC Ports ready. I just increment the Node Numbers (01, 02, 03, etc) and RPC Ports (9679, 9680, 9681, etc) ``` ./create_node.sh ``` The just fill in the prompts starting with your first node (01), and you should be good to go. Next just start your first node with: ``` ./smart-start.sh 01 ``` Verify it's working with: ``` ./smart-cli.sh 01 getinfo ``` Once you get all your nodes set up, create two text files `start_number.txt` and `end_number.txt`and put in them your start and end numbers for how many nodes you have. For example, if you had 30 nodes on one machine, put a single `1` in start_number.txt and `30` in end_number.txt. If you have additional servers to set up, I recommend zipping up the SmartNode_bootstrap folder and sending it to the new server via scp to save you some time. I also set the following crontab entries to ensure the log files don't get too big, the blocknumbers are increasing, and the daemons are running: ``` 0 0 */2 * * ~/smartcash/clear_all_logs.sh */2 * * * * ~/smartcash/makerun.sh */30 * * * * ~/smartcash/checkdaemons.sh ``` I spent quite a bit of time putting these scripts together to manage my nodes, so I hope it saves you some time. Please don't ask me what the future price of SmartCash will be or if Smart Nodes will remain this profitable for long. I have no idea. Using this calculator tool by @bitcoiner as a guide, here's what we see now: <center><a href="https://smartcash.bitcoiner.me/smartnodes/calculator/"><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/bf7ce3b0-b454-44da-b65c-0ed75e567b9e/00004398.png"></a></center> Sounds crazy, right? I don't know if we'll end up having > 50,000 nodes or if the price will go down or what. Maybe hyperinflation will tank the price. Maybe node opperators will regularly sell to add down pressure. At this point, I'm treating all of this as pretend money until it has a lot more volume, is traded on a lot more exchanges, and has a lot more use-cases as cash in real-world situations. For now, I'm just having fun, taking a risk on a relatively new project. The Smart Cash team has dealt with quite a few bumps and bruises lately. They had an issue with the zerocoin protocol which may have led to some hacked coins (I'm still waiting for an official announcement from their team on that). Fixing that caused problems for exchanges, including Cryptopia which, as of this post, is delisting SmartCash (you can still get them on <a href="https://wallet.crypto-bridge.org/market/BRIDGE.SMART_BRIDGE.BTC">Crypto Bridge</a>). <center><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/3be282b0-bdfa-4b6c-8738-28d26d038d02/00004400.png"></center> The rollout of Smart Nodes went fairly well, but there's also some issues with the rewards payout not being correct and some (like myself) not getting any rewards while others are getting double rewards. Hopefully this will be fixed by their team very soon. I like how they are communicating well about the issue: <center><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/d8e72363-283f-4982-9062-fce0c7ebc551/00004399.png"></center> You can find out more via their <a href="https://discord.gg/BDUh8jr">Discord channel</a>. Here are my previous Smart Cash Posts: <ul> <li>$0.02222 (0.00000463 BTC) <a href="https://steemit.com/smartcash/@lukestokes/my-smartcash-story">My SmartCash Story</a></li> <li>$0.03416 (0.00000648 BTC) <a href="https://steemit.com/smartcash/@lukestokes/i-bought-some-more-smartcash">I Bought Some More SmartCash</a></li> <li>$0.08218 (0.00001485 BTC) <a href="https://steemit.com/trading/@lukestokes/i-finally-took-the-loss">I Finally Took the Loss</a></li> <li>$0.12584 (0.00002270 BTC) <a href="https://steemit.com/smartcash/@lukestokes/smartcash-is-blowing-up-social-capital-and-the-warm-feeling-of-being-lucky">SmartCash is Blowing Up! Social Capital and the Warm Feeling of Being Lucky!</a></li> <li>$0.05442 (0.00000669 BTC) <a href="https://steemit.com/cryptocurrency/@lukestokes/teaching-cryptocurrency-to-the-next-generation-my-son-just-bought-dollar833-more-smartcash">Teaching Cryptocurrency to the Next Generation: My Son Just Bought $8.33 More SmartCash</a></li> <li>$0.69885 (0.00005205 BTC) <a href="https://steemit.com/smartcash/@lukestokes/smartnodes-are-among-us-and-smartcash-price-is-rising">SmartNodes Are Among Us and SmartCash Price Is Rising!</a></li> <li>Price as of this post: $0.35449 (0.00003868 BTC)</li> </ul> ----- <img src="https://steemitimages.com/DQmR3hhPtgcqhNDZyArucp2dZv2pG62WDKiWam8jrppCXNB/on_a_log_cropped.png"> <p> <div class="pull-right"> <a href="https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in"><img src="https://steemitimages.com/DQmRh7DLpp1hDKugxyWxdDof7rkj5fpBus6tECvv7vcmL6d/smile.png" /></a> </div> <em><a href="https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in">Luke Stokes</a> is a father, <a href="https://steemit.com/@corinnestokes">husband</a>, <a href="https://www.foxy.io/">business owner</a>, programmer, STEEM witness, and voluntaryist who wants to help create a world we all want to live in. Visit <a href="http://understandingblockchainfreedom.com/">UnderstandingBlockchainFreedom.com</a></em> </p> <center>[](http://steemitboard.com/board.html?user=lukestokes) [](http://steemitboard.com/board.html?user=lukestokes) [](http://steemitboard.com/board.html?user=lukestokes) [](http://steemitboard.com/board.html?user=lukestokes) [](http://steemitboard.com/board.html?user=lukestokes) [](http://steemitboard.com/board.html?user=lukestokes) [](http://steemitboard.com/board.html?user=lukestokes)</center> <center><sub><a href="https://steemit.com/witness-category/@lukestokes/vote-luke-stokes-for-witness-as-lukestokes-mhth">I'm a Witness</a>! Please <a href="https://steemit.com/~witnesses">vote for @lukestokes.mhth</a></sub></center><center><a href="https://steemit.com/~witnesses" alt="Please vote for @lukestokes.mhth"><img src="https://content.screencast.com/users/lukestokes/folders/Jing/media/f5b0fd42-ddf4-421c-a087-0b6ac81810a3/00004401.png"></a></center>
author | lukestokes |
---|---|
permlink | scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server |
category | smartcash |
json_metadata | {"tags":["smartcash","smartnodes","scripts","devops"],"users":["bitcoiner"],"image":["https://content.screencast.com/users/lukestokes/folders/Jing/media/bf7ce3b0-b454-44da-b65c-0ed75e567b9e/00004398.png","https://content.screencast.com/users/lukestokes/folders/Jing/media/3be282b0-bdfa-4b6c-8738-28d26d038d02/00004400.png","https://content.screencast.com/users/lukestokes/folders/Jing/media/d8e72363-283f-4982-9062-fce0c7ebc551/00004399.png","https://steemitimages.com/DQmR3hhPtgcqhNDZyArucp2dZv2pG62WDKiWam8jrppCXNB/on_a_log_cropped.png","https://steemitimages.com/DQmRh7DLpp1hDKugxyWxdDof7rkj5fpBus6tECvv7vcmL6d/smile.png","https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/commented.png?v=20171221","https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/votes.png?v=20171221","https://steemitimages.com/60x70/http://steemitboard.com/@lukestokes/posts.png?v=20171221","https://steemitimages.com/100x80/http://steemitboard.com/@lukestokes/level.png?v=20171221","https://steemitimages.com/60x70/http://steemitboard.com/@lukestokes/comments.png?v=20171221","https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/voted.png?v=20171221","https://steemitimages.com/50x60/http://steemitboard.com/@lukestokes/payout.png?v=20171221","https://content.screencast.com/users/lukestokes/folders/Jing/media/f5b0fd42-ddf4-421c-a087-0b6ac81810a3/00004401.png"],"links":["https://steemit.com/smartcash/@lukestokes/smartnodes-are-among-us-and-smartcash-price-is-rising","https://www.aelius.com/njh/subnet_sheet.html","http://smartnodes.cc/files/SmartCash_SmartNode_Setup_Guide_v1.1.pdf","https://github.com/SmartCash/smartnode","https://gist.github.com/lukestokes/9530eb772f111b1cec9382d0088808ad","https://gist.github.com/lukestokes/695705fc89d037f6b0167ba416542103","https://gist.github.com/lukestokes/585b03d8531b2e96738f34c2d2212eb2","https://gist.github.com/lukestokes/467045e2472b76d6c2388f193f9028c3","https://gist.github.com/lukestokes/4e0348ae4bde2e0b518951899f51f831","https://gist.github.com/lukestokes/c69d13b6fc2440d3f41d2d1ea9b911b5","https://gist.github.com/lukestokes/be1bf88ea07d08b3b7a9d44ef35b99ae","https://smartcash.bitcoiner.me/smartnodes/calculator/","https://wallet.crypto-bridge.org/market/BRIDGE.SMART_BRIDGE.BTC","https://discord.gg/BDUh8jr","https://steemit.com/smartcash/@lukestokes/my-smartcash-story","https://steemit.com/smartcash/@lukestokes/i-bought-some-more-smartcash","https://steemit.com/trading/@lukestokes/i-finally-took-the-loss","https://steemit.com/smartcash/@lukestokes/smartcash-is-blowing-up-social-capital-and-the-warm-feeling-of-being-lucky","https://steemit.com/cryptocurrency/@lukestokes/teaching-cryptocurrency-to-the-next-generation-my-son-just-bought-dollar833-more-smartcash","https://steemit.com/introduceyourself/@lukestokes/my-name-is-luke-let-s-create-the-world-we-want-to-live-in","https://steemit.com/@corinnestokes","https://www.foxy.io/","http://understandingblockchainfreedom.com/","http://steemitboard.com/board.html?user=lukestokes","https://steemit.com/witness-category/@lukestokes/vote-luke-stokes-for-witness-as-lukestokes-mhth","https://steemit.com/~witnesses"],"app":"steemit/0.1","format":"markdown"} |
created | 2018-02-01 22:24:00 |
last_update | 2018-02-01 22:24:00 |
depth | 0 |
children | 69 |
last_payout | 2018-02-08 22:24:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 61.933 HBD |
curator_payout_value | 12.950 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10,272 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,239,401 |
net_rshares | 12,170,479,361,843 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
rossco99 | 0 | 2,680,629,070 | 4% | ||
ajvest | 0 | 128,569,559,994 | 100% | ||
bue | 0 | 13,876,098,141 | 100% | ||
boatymcboatface | 0 | 110,620,320,545 | 4% | ||
kingscrown | 0 | 303,599,169,691 | 5% | ||
bryner | 0 | 4,320,217,490 | 10% | ||
gekko | 0 | 6,057,639,452 | 100% | ||
teamsteem | 0 | 946,999,736,916 | 8% | ||
nanzo-scoop | 0 | 400,567,320,337 | 10% | ||
theshell | 0 | 15,201,881,232 | 4% | ||
billbutler | 0 | 504,700,537,727 | 100% | ||
writewords | 0 | 501,738,448 | 11% | ||
ashe-oro | 0 | 135,591,378,775 | 50% | ||
the-alien | 0 | 103,322,929,580 | 100% | ||
churdtzu | 0 | 35,721,112,779 | 100% | ||
hedge-x | 0 | 105,118,300,092 | 100% | ||
paradise-paradox | 0 | 17,867,263,843 | 100% | ||
bravenewcoin | 0 | 2,623,110,221 | 100% | ||
g-dubs | 0 | 9,388,758,747 | 5% | ||
sean-king | 0 | 5,672,387,513,313 | 100% | ||
jonnyrevolution | 0 | 12,619,546,908 | 10% | ||
vortac | 0 | 728,253,666,704 | 20% | ||
anyx | 0 | 60,630,601,630 | 7% | ||
grolelo | 0 | 189,277,162,648 | 100% | ||
dayush | 0 | 3,379,636,899 | 100% | ||
jedau | 0 | 25,782,756,712 | 100% | ||
daynewright | 0 | 15,741,439,125 | 100% | ||
benslayton | 0 | 7,971,235,355 | 100% | ||
team-leibniz | 0 | 26,987,098,845 | 40% | ||
brianphobos | 0 | 23,723,400,926 | 14% | ||
jasonstaggers | 0 | 265,951,074,455 | 100% | ||
kelseyslayton | 0 | 56,153,709 | 100% | ||
dercoco | 0 | 25,203,664,208 | 100% | ||
cristi | 0 | 75,954,606,373 | 20% | ||
fooblic | 0 | 16,829,772,733 | 99% | ||
scaredycatguide | 0 | 68,885,836,615 | 20% | ||
hanshotfirst | 0 | 334,175,163,344 | 9% | ||
intothewild | 0 | 93,821,247,416 | 100% | ||
samstonehill | 0 | 1,550,872,999 | 5% | ||
jankasparec | 0 | 126,029,772,912 | 100% | ||
hilarski | 0 | 68,905,901,301 | 100% | ||
nomadnessie | 0 | 3,004,982,331 | 100% | ||
wannabite | 0 | 1,857,354,386 | 25% | ||
dadview | 0 | 5,356,180,726 | 15% | ||
saramiller | 0 | 86,533,315,384 | 10% | ||
kyusho | 0 | 8,575,964,272 | 5% | ||
profitgenerator | 0 | 976,472,906 | 100% | ||
nubchai | 0 | 2,639,904,032 | 50% | ||
ibringawareness | 0 | 36,263,155,513 | 100% | ||
bitcoinparadise | 0 | 3,107,803,484 | 1% | ||
rynow | 0 | 21,728,877,288 | 5% | ||
steemtruth | 0 | 24,978,109,408 | 10% | ||
blhz | 0 | 6,175,419,535 | 33% | ||
unipsycho | 0 | 76,097,906 | 1% | ||
yuky | 0 | 2,113,341,870 | 100% | ||
abraomarcos | 0 | 2,136,798,523 | 100% | ||
teamhumble | 0 | 23,547,236,632 | 6% | ||
sebastianjago | 0 | 11,848,120,029 | 5% | ||
crystalgeometry | 0 | 6,498,916,938 | 100% | ||
gomatthew | 0 | 15,705,356,595 | 25% | ||
decentralizd | 0 | 265,030,504,024 | 100% | ||
lovenfreedom | 0 | 4,719,403,814 | 100% | ||
sebhofmann | 0 | 24,006,147,446 | 100% | ||
mfg | 0 | 2,011,336,008 | 100% | ||
honeybeee | 0 | 50,148,674,436 | 97% | ||
sevinwilson | 0 | 3,641,439,230 | 19% | ||
nov3a4 | 0 | 2,869,924,873 | 100% | ||
robertgenito | 0 | 291,734,661,585 | 100% | ||
andrewdaines | 0 | 213,141,858 | 10% | ||
orionschariot | 0 | 1,588,395,970 | 100% | ||
cryptoindestment | 0 | 27,017,373,929 | 100% | ||
sv67216721 | 0 | 415,808,820 | 5% | ||
sacred-agent | 0 | 56,245,539,309 | 51% | ||
mandagoi | 0 | 4,342,432,862 | 10% | ||
forykw | 0 | 16,258,838,136 | 100% | ||
world-travel-pro | 0 | 15,086,970,704 | 25% | ||
dhn0411 | 0 | 19,240,411,218 | 100% | ||
catboy | 0 | 615,392,770 | 100% | ||
stormriderstudio | 0 | 3,488,745,624 | 25% | ||
lokii | 0 | 4,052,920,717 | 100% | ||
galberto | 0 | 335,574,418 | 1% | ||
bukigirl | 0 | 142,630,471 | 100% | ||
vmining | 0 | 902,320,681 | 25% | ||
michaelwilshaw | 0 | 3,759,720,460 | 10% | ||
cantribute | 0 | 2,460,023,258 | 100% | ||
amvanaken | 0 | 1,915,326,362 | 15% | ||
brandyb | 0 | 11,783,414,885 | 100% | ||
yooraa | 0 | 326,626,867 | 100% | ||
gambit.coin | 0 | 1,400,373,857 | 100% | ||
pointeblue | 0 | 37,746,933,651 | 100% | ||
davaowhenyo | 0 | 614,503,785 | 100% | ||
allenshayzar | 0 | 614,503,785 | 100% | ||
nitego | 0 | 150,983,804 | 100% | ||
ravenousappetite | 0 | 614,503,440 | 100% | ||
uberbrady | 0 | 2,936,803,420 | 100% | ||
bscruggs | 0 | 614,500,000 | 100% | ||
twodollars | 0 | 67,507,195,349 | 100% | ||
jimrogers | 0 | 614,133,900 | 100% | ||
mychild01 | 0 | 2,966,982,142 | 100% | ||
mychild02 | 0 | 3,015,792,109 | 100% | ||
mychild03 | 0 | 2,834,740,620 | 100% | ||
buggedout | 0 | 3,747,282,929 | 100% | ||
rmaxhuni | 0 | 617,812,645 | 100% | ||
unrared | 0 | 20,228,299,918 | 20% | ||
cryptokeepr | 0 | 94,960,598,422 | 40% | ||
boomshikha | 0 | 3,031,894,435 | 100% | ||
melvinbonner | 0 | 4,092,647,241 | 100% | ||
felander | 0 | 6,526,876,025 | 30% | ||
gregvence | 0 | 644,665,145 | 100% | ||
cloudspyder | 0 | 788,384,158 | 100% | ||
kettleandseagull | 0 | 9,971,560,045 | 100% | ||
jordanx2 | 0 | 2,585,779,921 | 100% | ||
oucan | 0 | 426,612,088 | 100% | ||
synergy-now | 0 | 1,441,083,086 | 100% | ||
wolfgramm432 | 0 | 539,934,088 | 100% | ||
rksumanthraju | 0 | 555,612,880 | 100% | ||
ddepalma | 0 | 533,417,070 | 100% | ||
cyb3rcrypto | 0 | 413,784,225 | 100% | ||
justderek | 0 | 2,333,758,779 | 100% | ||
mejustandrew | 0 | 8,691,358,762 | 100% | ||
kslo | 0 | 4,679,134,861 | 100% | ||
deanyeong | 0 | 1,834,335,562 | 80% | ||
aqiel | 0 | 330,346,882 | 100% | ||
beachsagebrush | 0 | 67,745,477,278 | 38% | ||
cknr7 | 0 | 616,221,038 | 100% | ||
munaw81 | 0 | 452,319,649 | 100% | ||
daviddivergent | 0 | 1,483,566,604 | 10% | ||
islandcrypto | 0 | 645,980,850 | 100% | ||
dumasari | 0 | 503,322,197 | 100% | ||
dun.nayya | 0 | 89,221,400 | 100% | ||
dmwh | 0 | 18,890,262,305 | 100% | ||
consciousangel7 | 0 | 5,546,772,436 | 100% | ||
utomobong | 0 | 536,985,167 | 100% | ||
dinobot | 0 | 2,669,409,962 | 100% | ||
ategun | 0 | 540,330,426 | 100% | ||
fun2learn | 0 | 2,645,012,435 | 35% | ||
dandida | 0 | 2,515,249,255 | 100% | ||
acecauis | 0 | 55,316,049 | 100% | ||
marylene-roy | 0 | 457,405,821 | 100% | ||
trifler | 0 | 513,383,150 | 100% | ||
gangas | 0 | 0 | 0% | ||
btccurrency1 | 0 | 52,289,430 | 100% | ||
chicoree | 0 | 273,311,582 | 100% | ||
yvvng | 0 | 457,812,681 | 100% | ||
iqbaladp162 | 0 | 584,331,002 | 100% | ||
amico | 0 | 474,914,248 | 100% | ||
isaaceko | 0 | 490,145,275 | 100% | ||
controllinghand | 0 | 0 | 100% | ||
superiorsteem | 0 | 613,793,354 | 100% | ||
tdntv | 0 | 569,952,503 | 100% | ||
aellly | 0 | 221,207,409 | 100% | ||
aluxstem | 0 | 328,737,576 | 100% | ||
haunting | 0 | 438,911,158 | 100% | ||
lilianamovilio | 0 | 156,687,851 | 100% | ||
cryptofig | 0 | 380,966,020 | 100% |
Glad I found this!! I'm really into masternodes and this look pretty similar and the amount to start seems low enough for me!!!
author | alao |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t213232262z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 21:32:30 |
last_update | 2018-02-02 21:32:30 |
depth | 1 |
children | 1 |
last_payout | 2018-02-09 21:32:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.143 HBD |
curator_payout_value | 0.044 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 128 |
author_reputation | 23,510,767,447,737 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,492,638 |
net_rshares | 29,966,401,170 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
brianphobos | 0 | 29,966,401,170 | 19% |
Me and a friend got enough coins for Smart Nodes and I looked into a lot of different masternodes and this one honestly seems like a sleeper considering you can get the Smart Node earnings and Smart Rewards each month as well. Our plan is to earn enough coins and keep putting up more Smart Nodes. Time will tell but I guess I have my hopes these things will be worth 50K + a piece sooner than later.
author | brianphobos |
---|---|
permlink | re-alao-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t050007360z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-04 05:00:06 |
last_update | 2018-02-04 05:00:06 |
depth | 2 |
children | 0 |
last_payout | 2018-02-11 05:00:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 404 |
author_reputation | 170,165,448,541,606 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,803,666 |
net_rshares | 0 |
When programmers give updates, What does a novice like me understands?
author | ategun |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t224905107z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:49:36 |
last_update | 2018-02-01 22:49:36 |
depth | 1 |
children | 1 |
last_payout | 2018-02-08 22:49:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 71 |
author_reputation | 608,930,546,201 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,243,541 |
net_rshares | 531,067,619 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
ategun | 0 | 531,067,619 | 100% |
Not every post is for everyone. :)
author | lukestokes |
---|---|
permlink | re-ategun-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230644889z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:06:45 |
last_update | 2018-02-01 23:06:45 |
depth | 2 |
children | 0 |
last_payout | 2018-02-08 23:06:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,246,401 |
net_rshares | 3,153,888,233 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robertgenito | 0 | 3,153,888,233 | 1% |
Thanks Luke! I think I will end up running two Smartnodes on the same server. This helps a lot .
author | brianphobos |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t043226275z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-04 04:32:24 |
last_update | 2018-02-04 04:32:24 |
depth | 1 |
children | 0 |
last_payout | 2018-02-11 04:32:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 99 |
author_reputation | 170,165,448,541,606 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,799,282 |
net_rshares | 0 |
I really don't figure that out to manage 4 Masternode in one server. I am thinking of virtual server in one virtual server but it don't work as what I expected.
author | cloudspyder | ||||||
---|---|---|---|---|---|---|---|
permlink | re-lukestokes-201823t165128883z | ||||||
category | smartcash | ||||||
json_metadata | {"tags":["smartcash","smartnodes","scripts","devops"],"app":"esteem/1.5.1","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-03 08:45:21 | ||||||
last_update | 2018-02-03 08:45:21 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2018-02-10 08:45:21 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 160 | ||||||
author_reputation | 8,281,689,777,163 | ||||||
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 34,595,670 | ||||||
net_rshares | 0 |
Thanks for the detailed post and for addressing the current issues! Itβs important to be real:) Glad that @SmartCash is working on it and communicating back. We love Smartcash and it will be fun to watch this coin blow up!!
author | consciousangel7 |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t232308772z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"users":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:23:09 |
last_update | 2018-02-01 23:23:09 |
depth | 1 |
children | 5 |
last_payout | 2018-02-08 23:23:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 223 |
author_reputation | 15,940,173,309,631 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,248,976 |
net_rshares | 0 |
@smartbot tip @consciousangel7 25
author | lukestokes |
---|---|
permlink | re-consciousangel7-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t235509726z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"users":["smartbot","consciousangel7"],"app":"steemit/0.1"} |
created | 2018-02-01 23:55:09 |
last_update | 2018-02-02 00:41:42 |
depth | 2 |
children | 4 |
last_payout | 2018-02-08 23:55:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.042 HBD |
curator_payout_value | 0.010 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 33 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,254,422 |
net_rshares | 8,976,460,435 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
consciousangel7 | 0 | 8,976,460,435 | 100% |
Thanks for the love @lukestokes :)
author | consciousangel7 |
---|---|
permlink | re-lukestokes-re-consciousangel7-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t190311478z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"users":["lukestokes"],"app":"steemit/0.1"} |
created | 2018-02-04 19:03:12 |
last_update | 2018-02-04 19:03:12 |
depth | 3 |
children | 0 |
last_payout | 2018-02-11 19:03:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 34 |
author_reputation | 15,940,173,309,631 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,956,342 |
net_rshares | 0 |
**Ξ£$$$** Tipped **@consciousangel7** <code>**Ξ£25 SMART**</code>! Comment <code>**@smartbot help**</code> to claim. Currently the price of SmartCash in the market is <code>**$0.343 USD**</code> per <code>**SMART**</code>. Current value of the tip is <code>**$8.58 USD**</code>. To find out more about SmartCash, please visit **https://smartcash.cc**.
author | smartbot |
---|---|
permlink | scashbot-20180202t004243625z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"smartcash/tipbot"} |
created | 2018-02-02 00:42:45 |
last_update | 2018-02-02 00:42:45 |
depth | 3 |
children | 2 |
last_payout | 2018-02-09 00:42:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.434 HBD |
curator_payout_value | 0.142 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 349 |
author_reputation | 3,721,888,729,782 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,262,738 |
net_rshares | 93,519,095,074 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
msg768 | 0 | 93,519,095,074 | 100% |
Wow, thanks for sharing and explaining your process. This will definitely be helpful if I decide to go with multiple nodes. I'm actually hoping for a nice dip to start accumulating some more SMART. Their discord is super helpful as well. Hopefully the payment scheduling is just a minor blip before a long haul of steady node payouts :)
author | crystalgeometry |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230431072z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:04:30 |
last_update | 2018-02-01 23:06:42 |
depth | 1 |
children | 1 |
last_payout | 2018-02-08 23:04:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.038 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 336 |
author_reputation | 3,326,526,421,068 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,246,027 |
net_rshares | 6,362,097,634 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
crystalgeometry | 0 | 6,362,097,634 | 100% |
I hope so too. Still waiting for my first reward after more than 2 days of being live.
author | lukestokes |
---|---|
permlink | re-crystalgeometry-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230950949z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:09:51 |
last_update | 2018-02-01 23:09:51 |
depth | 2 |
children | 0 |
last_payout | 2018-02-08 23:09:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.031 HBD |
curator_payout_value | 0.007 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 86 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,246,877 |
net_rshares | 6,363,886,202 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
crystalgeometry | 0 | 6,363,886,202 | 100% |
Thanks mate, I hope you have a great day!!!
author | cyb3rcrypto |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t231051683z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:10:51 |
last_update | 2018-02-01 23:10:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 23:10:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 43 |
author_reputation | 802,086,899 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,247,034 |
net_rshares | 0 |
Ahhhh this will help many people, as I had trouble with these same issues as well. Will resteem and follow :)
author | ddepalma |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t025241008z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 02:52:42 |
last_update | 2018-02-02 02:52:42 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 02:52:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 2,187,608,041 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,285,809 |
net_rshares | 0 |
I have had an AWS account and I was able to get a 3 year t2 micro which is 1GB ram and 30GB hd for $100 which is about $3/month cost. I have 2 payouts on my node already so have already paid back my node cost. From here on it is just profit. I am REALLY curious to see what happens as the number of nodes increases. I am pretty sure Smartcash will do well, it will really depend on the overall crypto-sphere. Everything is far to closely tied to bitcoin right now so are still under it's influence.
author | flemingfarm |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t011811199z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 01:18:15 |
last_update | 2018-02-02 01:18:15 |
depth | 1 |
children | 2 |
last_payout | 2018-02-09 01:18:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 501 |
author_reputation | 1,362,319,035,393,876 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,269,043 |
net_rshares | 0 |
Wow, well done! That's a nice set up, but my hunch is you'll need more than a GIG as the blockchain grows long before 3 years, but I guess time will tell.
author | lukestokes |
---|---|
permlink | re-flemingfarm-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t051055381z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 05:10:54 |
last_update | 2018-02-02 05:10:54 |
depth | 2 |
children | 1 |
last_payout | 2018-02-09 05:10:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 154 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,310,824 |
net_rshares | 0 |
Yeah, i was thinking about it when setting it up, the future needs, but if it comes to it I can always grab another upgraded instance and shift to it if needed. With everyone's scripts being made available it will be even easier to migrate if I have to.
author | flemingfarm |
---|---|
permlink | re-lukestokes-re-flemingfarm-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t160356260z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 16:04:00 |
last_update | 2018-02-02 16:04:00 |
depth | 3 |
children | 0 |
last_payout | 2018-02-09 16:04:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 254 |
author_reputation | 1,362,319,035,393,876 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,432,494 |
net_rshares | 0 |
I'll put my money on it going up. I feel it in my bonesπ. It's gonna rise. I don't know of you wouldn't mind me translating this to French. It will really be of much benefit to the new small upcoming French community. I would of course give you credit as the original author and put your link in the post.
author | gamsam | ||||||
---|---|---|---|---|---|---|---|
permlink | re-lukestokes-201821t232753683z | ||||||
category | smartcash | ||||||
json_metadata | {"tags":["smartcash","smartnodes","scripts","devops"],"app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-01 22:28:00 | ||||||
last_update | 2018-02-01 22:28:00 | ||||||
depth | 1 | ||||||
children | 2 | ||||||
last_payout | 2018-02-08 22:28:00 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.066 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 306 | ||||||
author_reputation | 68,278,661,463,063 | ||||||
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 34,240,090 | ||||||
net_rshares | 11,318,206,277 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cyb3rcrypto | 0 | 398,344,515 | 100% | ||
dmwh | 0 | 9,239,802,214 | 50% | ||
gamsam | 0 | 1,680,059,548 | 100% |
Sure, go for it. Feel free to link back to this original so they can give me some upvote love as well. :)
author | lukestokes |
---|---|
permlink | re-gamsam-re-lukestokes-201821t232753683z-20180201t223757671z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:37:57 |
last_update | 2018-02-01 22:37:57 |
depth | 2 |
children | 1 |
last_payout | 2018-02-08 22:37:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 105 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,241,678 |
net_rshares | 0 |
Sure thing ThanksβΊ
author | gamsam | ||||||
---|---|---|---|---|---|---|---|
permlink | re-lukestokes-201821t234354505z | ||||||
category | smartcash | ||||||
json_metadata | {"tags":"smartcash","app":"esteem/1.5.0","format":"markdown+html","community":"esteem"} | ||||||
created | 2018-02-01 22:44:03 | ||||||
last_update | 2018-02-01 22:44:03 | ||||||
depth | 3 | ||||||
children | 0 | ||||||
last_payout | 2018-02-08 22:44:03 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 18 | ||||||
author_reputation | 68,278,661,463,063 | ||||||
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 34,242,643 | ||||||
net_rshares | 0 |
Awesome , great post. I recently discovered ur interesting blog. Which I didn't hesitate to follow you , upvote and resteem. Support me too , I am new on steemit. Upvote my comment . Thanks.
author | gangas |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t225727620z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:57:33 |
last_update | 2018-02-01 22:57:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 22:57:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 190 |
author_reputation | -352,261,216,847 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,244,822 |
net_rshares | 0 |
great info luke
author | islandcrypto |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t222616965z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:26:18 |
last_update | 2018-02-01 22:26:18 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 22:26:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 15 |
author_reputation | 117,713,720,904 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,239,801 |
net_rshares | 658,246,309 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
islandcrypto | 0 | 658,246,309 | 100% |
Still hoping to jump into this one before the general FUD is over and everything will be pricey :) Thanks LUKE! Great work as always!
author | jankasparec |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t035330682z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 03:53:33 |
last_update | 2018-02-02 03:53:33 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 03:53:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 133 |
author_reputation | 68,292,610,382,616 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,296,750 |
net_rshares | 0 |
thanks for your shearing.
author | jewelrana876 |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t012500007z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-04 01:25:00 |
last_update | 2018-02-04 01:25:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-11 01:25:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.283 HBD |
curator_payout_value | 0.050 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 25 |
author_reputation | 1,013,966,486,641 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,770,775 |
net_rshares | 49,918,717,484 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jewelrana876 | 0 | 6,302,023,053 | 100% | ||
rafa69 | 0 | 43,616,694,431 | 100% |
Thank s
author | kil |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t224614860z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:46:21 |
last_update | 2018-02-01 22:46:21 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 22:46:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 7 |
author_reputation | 273,665,869,015 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,242,990 |
net_rshares | 0 |
wish there was some easier way, i also have a few nodes to setup ;x
author | kingscrown |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t021806720z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 02:18:12 |
last_update | 2018-02-02 02:18:12 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 02:18:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 2,113,705,347,129,712 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,279,695 |
net_rshares | 0 |
Well is smart creative to setup a smartcash nodes as well as working on it i so much congratulate you@lukestokesand would love to learn more of this
author | marylene-roy |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t225517216z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:55:30 |
last_update | 2018-02-01 22:55:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 22:55:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 27,151,015,419 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,244,494 |
net_rshares | 389,080,689 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
cyb3rcrypto | 0 | 389,080,689 | 100% |
You seem pretty passionate by SmartCash setuping nodes and investing in it. For me what are you doing looks so complicated that I am even afraid to try to understand it...
author | mejustandrew |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t223834828z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:38:33 |
last_update | 2018-02-01 22:38:33 |
depth | 1 |
children | 11 |
last_payout | 2018-02-08 22:38:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 171 |
author_reputation | 6,245,491,946,485 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,241,793 |
net_rshares | 0 |
This post is useful for a small group of people. For the rest... feel free to ignore.
author | lukestokes |
---|---|
permlink | re-mejustandrew-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230718271z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:07:18 |
last_update | 2018-02-01 23:07:18 |
depth | 2 |
children | 10 |
last_payout | 2018-02-08 23:07:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 85 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,246,495 |
net_rshares | 0 |
Crypto news are useful for a small group of people too, but I don't know if everybody else should ignore them. Maybe on the same principle, some cutious people will read more about SmartCash and start to setup their own Smart nodes. On the other side, I agree with you, this article is more useful for a specific group of people :D
author | mejustandrew |
---|---|
permlink | re-lukestokes-re-mejustandrew-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t231458146z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:12:15 |
last_update | 2018-02-01 23:12:15 |
depth | 3 |
children | 9 |
last_payout | 2018-02-08 23:12:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 331 |
author_reputation | 6,245,491,946,485 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,247,263 |
net_rshares | 0 |
UPVOTED AND HERE IS A REWARD FOR ALL SMARTIANS https://steemit.com/cryptocurrency/@mfg/awesome-crypto-tool-for-promote-n-upcomming-altcoins-cryptojokes-cryptofun-cryptoart-cryptocartoon
author | mfg |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180203t190350916z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"links":["https://steemit.com/cryptocurrency/@mfg/awesome-crypto-tool-for-promote-n-upcomming-altcoins-cryptojokes-cryptofun-cryptoart-cryptocartoon"],"app":"steemit/0.1"} |
created | 2018-02-03 19:03:51 |
last_update | 2018-02-03 19:03:51 |
depth | 1 |
children | 0 |
last_payout | 2018-02-10 19:03:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 185 |
author_reputation | 143,341,964,619 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,711,235 |
net_rshares | 0 |
All nodes on one server one point of failure by the same argument one point to manage. I would like to know the specifications of the server you use for this . Is it virtual or a physical server. Another question I have wondered about is how you solve the issue of unique IP addresses. I may reconsidere my setup if this is really workable. Thanks for sharing. I am re-steeming this.
author | nitego |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t025422365z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 02:54:21 |
last_update | 2018-02-02 02:55:03 |
depth | 1 |
children | 2 |
last_payout | 2018-02-09 02:54:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 386 |
author_reputation | 1,111,539,510,872 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,286,081 |
net_rshares | 0 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
mastin | 0 | 0 | 100% |
It's a dedicated server. I originally went for a 64G server to manage them all, but there was a limitation in the number of IPs I could get, so now I have a 64G and a 32G. I could have easily done the nodes I wanted with just two 32G servers. It is a potential point of failure, but we're already up over 5k nodes, so I don't think it's a real concern for the network. I'll be adding even more monitoring scripts so it'll text me if needed, as I've done with my witness servers.
author | lukestokes |
---|---|
permlink | re-nitego-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t050407381z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 05:04:06 |
last_update | 2018-02-02 05:04:06 |
depth | 2 |
children | 1 |
last_payout | 2018-02-09 05:04:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 478 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,309,584 |
net_rshares | 0 |
Thanks for the very detailed reply. I will seriously look at this option it is certainly more efficient to manage. It is a better plan for scaling number of nodes as well as handling more volume of transactions in the future.
author | nitego |
---|---|
permlink | re-lukestokes-re-nitego-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t190541463z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 19:05:42 |
last_update | 2018-02-02 19:05:42 |
depth | 3 |
children | 0 |
last_payout | 2018-02-09 19:05:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 225 |
author_reputation | 1,111,539,510,872 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,467,203 |
net_rshares | 0 |
Nice post bro, when i reach the second now i will use your script!!
author | oucan |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t145558309z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 14:57:30 |
last_update | 2018-02-02 14:57:30 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:57:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 67 |
author_reputation | 503,137,117,944 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,419,239 |
net_rshares | 0 |
this is going to be usefull, I have gotten close to the 10k (7.7) and am planning to start a node, and someone I know wants one as well but has no clue about servers (even less then me) so we are looking to a solution like this
author | photolander |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t231350484z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:13:51 |
last_update | 2018-02-01 23:13:51 |
depth | 1 |
children | 3 |
last_payout | 2018-02-08 23:13:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 227 |
author_reputation | 1,559,435,714,314 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,247,507 |
net_rshares | 0 |
This is specifically for those setting up multiple nodes. If you get to the point where you're ready to set one up, be sure to check the website for the latest tutorials on how to do it (and check Discord for help).
author | lukestokes |
---|---|
permlink | re-photolander-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t233508483z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:35:09 |
last_update | 2018-02-01 23:35:09 |
depth | 2 |
children | 0 |
last_payout | 2018-02-08 23:35:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 215 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,250,994 |
net_rshares | 0 |
@smartbot tip @photolander 25
author | lukestokes |
---|---|
permlink | re-photolander-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t235352445z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"users":["smartbot","photolander"],"app":"steemit/0.1"} |
created | 2018-02-01 23:53:51 |
last_update | 2018-02-02 00:41:33 |
depth | 2 |
children | 1 |
last_payout | 2018-02-08 23:53:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,254,197 |
net_rshares | 0 |
**Ξ£$$$** Tipped **@photolander** <code>**Ξ£25 SMART**</code>! Comment <code>**@smartbot help**</code> to claim. Currently the price of SmartCash in the market is <code>**$0.343 USD**</code> per <code>**SMART**</code>. Current value of the tip is <code>**$8.58 USD**</code>. To find out more about SmartCash, please visit **https://smartcash.cc**.
author | smartbot |
---|---|
permlink | scashbot-20180202t004218620z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"smartcash/tipbot"} |
created | 2018-02-02 00:42:18 |
last_update | 2018-02-02 00:42:18 |
depth | 3 |
children | 0 |
last_payout | 2018-02-09 00:42:18 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 345 |
author_reputation | 3,721,888,729,782 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,262,677 |
net_rshares | 0 |
The answer I still cannot find is... what makes smart cash novel compared to other master node systems? Anyone know? :D Iβll upvote that post 100% !
author | robertgenito |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180204t181539706z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-04 18:15:39 |
last_update | 2018-02-04 18:15:39 |
depth | 1 |
children | 1 |
last_payout | 2018-02-11 18:15:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 1.920 HBD |
curator_payout_value | 0.023 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 148 |
author_reputation | 7,257,911,690,980 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,947,279 |
net_rshares | 285,426,885,118 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
robertgenito | 0 | 285,426,885,118 | 100% |
Seems to be very big community based project, targeting the third world countries mainly
author | oscarblue04 |
---|---|
permlink | re-robertgenito-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180403t114605250z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-04-03 11:46:06 |
last_update | 2018-04-03 11:46:06 |
depth | 2 |
children | 0 |
last_payout | 2018-04-10 11:46:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 88 |
author_reputation | 35,391,239,887 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 48,104,039 |
net_rshares | 0 |
Managing all of them on one server sounds a lot better than having to manage each of them on their own individual servers. I am quite intrigued to see what happens with the smart nodes and seeing if they get these issues worked out with the payouts for the nodes. I would definitely would like for the going to be on some more exchanges something maybe like binance or bittrex even itβs just to get some more volume because we are somewhere around like 600x for our volume to the market cap currently.
author | sevinwilson |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t223440067z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:34:42 |
last_update | 2018-02-01 22:34:42 |
depth | 1 |
children | 8 |
last_payout | 2018-02-08 22:34:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.577 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 502 |
author_reputation | 30,294,228,295,664 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,241,183 |
net_rshares | 97,915,544,869 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
lukestokes | 0 | 97,507,936,528 | 4% | ||
cyb3rcrypto | 0 | 407,608,341 | 100% |
Yeah, the price and market cap are both kind pretend until we get some real volume on some major exchanges. It's still early. Time will tell.
author | lukestokes |
---|---|
permlink | re-sevinwilson-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t223922828z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:39:24 |
last_update | 2018-02-01 22:39:24 |
depth | 2 |
children | 7 |
last_payout | 2018-02-08 22:39:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.024 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 141 |
author_reputation | 554,601,966,217,919 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,241,903 |
net_rshares | 4,551,799,038 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
sevinwilson | 0 | 4,551,799,038 | 24% |
You are exactly right! I think they have a strong development team and have a great vision. Iβm still not sold about what happened with rollback and cryptopia and the zerocoin exploit.
author | sevinwilson |
---|---|
permlink | re-lukestokes-re-sevinwilson-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t230154709z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:01:54 |
last_update | 2018-02-01 23:01:54 |
depth | 3 |
children | 6 |
last_payout | 2018-02-08 23:01:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 184 |
author_reputation | 30,294,228,295,664 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,245,618 |
net_rshares | 0 |
thanks for sharing this info <3
author | sibtainali |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t223201497z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 22:30:06 |
last_update | 2018-02-01 22:30:06 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 22:30:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 31 |
author_reputation | 9,624,753,321 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,240,447 |
net_rshares | 0 |
Luke, I found a lot of this info and scripts to be helpful. I am using Ubuntu 18.04 LTS and it uses netplan not is up/down. I add the subnets to the same interface with the route as the server ip. I can ping the subnet IPs and I can netcat -l 9678 and it will open , but smartcashd (bind=10.10.10.2) will not open up 9678. Any help would be great. Other coin MNs are not as picky with the active port.
author | sparkyceh |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20181115t012305965z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-11-15 01:23:00 |
last_update | 2018-11-15 01:23:00 |
depth | 1 |
children | 0 |
last_payout | 2018-11-22 01:23:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 404 |
author_reputation | 2,925,858,923 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 75,306,564 |
net_rshares | 0 |
how amazing what you do is very inspiring UPCOTE my comnt en folow me
author | vanemilano |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t144850219z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 14:52:45 |
last_update | 2018-02-02 14:52:45 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 14:52:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 69 |
author_reputation | 301,065,647,470 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,418,341 |
net_rshares | 0 |
you are a genius, also a person who loves to share knowledge. hopefully your kindness will bring you to the top of success
author | yogaunimal |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t050255284z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 05:03:00 |
last_update | 2018-02-02 05:03:00 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 05:03:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 122 |
author_reputation | 532,190,094,714 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,309,376 |
net_rshares | 0 |
Hey, I don't know what your talking about, but I like the way you say it. How do I set up just a single node?
author | yonny |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t195802147z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 19:58:03 |
last_update | 2018-02-02 19:58:03 |
depth | 1 |
children | 0 |
last_payout | 2018-02-09 19:58:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.044 HBD |
curator_payout_value | 0.011 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 8,829,975,962,763 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,476,517 |
net_rshares | 9,115,596,058 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yonny | 0 | 9,115,596,058 | 100% |
I just setup my first smartnode! :) So excited!! thinking to buy more to have more MNs. :) Just got a quick question, where can I see its ROI and some numbers about MNs ?! Thanks!
author | yuky |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t153542581z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-02 15:35:42 |
last_update | 2018-02-02 15:35:42 |
depth | 1 |
children | 1 |
last_payout | 2018-02-09 15:35:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 179 |
author_reputation | 1,480,977,214,114 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,426,802 |
net_rshares | 0 |
This is the current calculator available. https://smartcash.bitcoiner.me/smartnodes/calculator/
author | flemingfarm |
---|---|
permlink | re-yuky-re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180202t160554770z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"links":["https://smartcash.bitcoiner.me/smartnodes/calculator/"],"app":"steemit/0.1"} |
created | 2018-02-02 16:06:00 |
last_update | 2018-02-02 16:06:00 |
depth | 2 |
children | 0 |
last_payout | 2018-02-09 16:06:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 95 |
author_reputation | 1,362,319,035,393,876 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,432,907 |
net_rshares | 0 |
Awesome stuff. I'm currently working on gaining enough smartcash to set up my own nodes soon. I'm going to keep this saved for the day I'm ready to set up some master nodes. Thanks for the great work.
author | yvvng |
---|---|
permlink | re-lukestokes-scripts-for-managing-multiple-smartcash-smart-nodes-on-one-server-20180201t235814265z |
category | smartcash |
json_metadata | {"tags":["smartcash"],"app":"steemit/0.1"} |
created | 2018-02-01 23:58:09 |
last_update | 2018-02-01 23:58:09 |
depth | 1 |
children | 0 |
last_payout | 2018-02-08 23:58:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 200 |
author_reputation | 25,465,973,872 |
root_title | "Scripts for Managing Multiple SmartCash Smart Nodes on One Server" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 34,254,928 |
net_rshares | 0 |