EOS-In-A-Box - Get started on EOS today! by someguy123

View this thread on steempeak.com
· @someguy123 ·
$220.58
EOS-In-A-Box - Get started on EOS today!
# EOS-In-A-Box - Get started on EOS today!

Today EOS Dawn V2 launched on Testnet. This means people can do some light playing around with EOS, including smart contracts, transfers, and looking up their accounts.

Unfortunately EOS did not publish their Docker images in binary format yet, nevertheless I decided to publish them myself. I also ported Steem-in-a-box over, and adjusted it to work better for EOS.

Unlike Steem-in-a-box, these docker images are built from the official Dockerfile in the EOSIO/eos repo. EOS is more complex to build so I saved time by using their Docker setup which works just fine :)

<center>![](https://steemitimages.com/DQmUHZT33pnFMEArwzMJC2CSyTecLiKPsbQUzDSax9L2QRH/image.png)</center>



# Step 1. Grab a server!

Choose your favourite server provider. I recommend [Privex](https://www.privex.io) because they accept STEEM :) (disclaimer: I am the CEO of Privex Inc. - but our services are well loved by the community).

The network is small right now, so even a 2GB VPS is fine. If you plan on starting an EOS witness (producer) when the next testnet or mainnet launches, it's best to grab at least 8 or even 16GB of RAM.

# Step 2. Install EOS-in-a-box

EOS-in-a-box handles installing docker, grabbing my image, and starting up the server with the correct ports forwarded and the correct things mounted.

Let's start:

```
apt update
apt install git curl wget
git clone https://github.com/someguy123/eos-docker.git
cd eos-docker
./run.sh install_docker
```

This will install Docker. If you are running as "ubuntu" or similar, it's recommended to log out and back in again (close SSH and open it again) to adjust your permissions.

Now let's grab my image and boot up EOS!


```
./run.sh install
```


![](https://steemitimages.com/DQmae1dRWBXeonACy1Na2WpCiYnsL38vx28GMCLipTtTGUY/image.png)


As @dantheman @dan explains, EOS still uses the old shared_memory code from Steem. This means for a real-world witness/producer, you should probably use /dev/shm (a RAM drive). EOS-in-a-box is configured to mount /dev/shm to /shm if you would like to alter your `config.ini`. When EOS is properly released, EOS-in-a-box will include a configuration that uses /dev/shm by default, with a pre-configured list of seeds for fast deployment.

For testing it doesn't really matter, so let's just start it.

```
./run.sh start
```

EOS will now be running, you can confirm it with `./run.sh status` or `docker ps`

```
ubuntu@chris-eos:~/eos-docker$ ./run.sh status
Container exists?: YES
Container running?: YES
ubuntu@chris-eos:~/eos-docker$ docker ps
CONTAINER ID        IMAGE               COMMAND             CREATED             STATUS              PORTS               NAMES
87f80dd1b318        eos                 "start_eosd.sh"     20 seconds ago      Up 19 seconds                           seed
ubuntu@chris-eos:~/eos-docker$
```

Finally let's enable the wallet API and restart it.

```
nano data/config.ini
```

Add to the bottom of the file

```
plugin = eosio::wallet_api_plugin
```

Save and close the file (for nano that's CTRL-X, and type yes to save)

Now let's restart EOS

```
./run.sh restart
```

# Using the wallet

The wallet is a little bit different to STEEM. Here are some examples of how to use it:

**Create a wallet**

```
ubuntu@chris-eos:~/eos-docker$ ./run.sh wallet create -n test
Creating wallet: test
Save password to use in the future to unlock this wallet.
Without password imported keys will not be retrievable.
"PW5KhAdia26ZWmvpPFPX6G3ppCpzPAaumHbmLgaKejtsQ13mNiS8g"
```

**Lock the wallet**

```
ubuntu@chris-eos:~/eos-docker$ ./run.sh wallet lock -n test
Locked: test
```

**Unlock the wallet**

```
ubuntu@chris-eos:~/eos-docker$ ./run.sh wallet unlock -n test
password: Unlocked: test
```

**Import your private key**

(yes this is a random private key. no it does not contain any EOS.)

```
ubuntu@chris-eos:~/eos-docker$ ./run.sh wallet import -n test 5JtrsfV1SaQmuSWV4qpwqHqK2Pk4idvwskumZKWF4DXYJRn9iWE
imported private key for: EOS5GjCUAzNha1dmLVgtY2JxqjHZ9Rb33FMWdEsmUEM6sSd7t7nAG
```

# Using the client

EOS has a "client" as well as a wallet. To make it easy to use, you can use `./run.sh client`

**Example**

```
ubuntu@chris-eos:~/eos-docker$ ./run.sh client version client
Build version: 9703495c
```

**Query the public testnet**

To query the public testnet, you must set your host to testnet1.eos.io - there is currently no safe p2p functionality so you must direct your client to their public server, you cannot connect your local testnet to the public testnet.

![](https://steemitimages.com/DQmeLWebU6dvTJyaWWS6GyLncLNWEHaihW5qFhtj15DTdVY/image.png)

**Example - Get Block**

```
ubuntu@chris-eos:~/eos-docker$ ./run.sh client -H testnet1.eos.io -p 80 get block 10000
{
  "previous": "0000270f69c1a22dc6463335325b01ac03b25af8891dfc88ac0418f88b62f062",
  "timestamp": "2017-12-04T22:41:46",
  "transaction_merkle_root": "0000000000000000000000000000000000000000000000000000000000000000",
  "producer": "initq",
  "producer_changes": [],
  "producer_signature": "1f77718a0efb56ef43a0adcd10108ec058aa9760b2a3bc59dcae967637a2ac72dc68077d232026de5d929a1d55a4bbd0bc4d040d44dc2380ac4e1107f1a61e170b",
  "cycles": [],
  "id": "00002710ebdfd9569d544ed746bb49d7a93e813190f3b4d138a0874d4da05cdd",
  "block_num": 10000,
  "ref_block_prefix": 3612234909
}
```


# Finding out your username

To find out your username on the public testnet, go to https://eosio.github.io/genesis/tools/account-name/index.html and enter your EOS public key, or your ETH address used to purchase the tokens.

You can then look up your account using the client:

**Example**

```
ubuntu@chris-eos:~/eos-docker$ ./run.sh client -H testnet1.eos.io -p 80 get account yourname
{
  "account_name": "yourname",
  "eos_balance": "999570.0000 EOS",
  "staked_balance": "0.0000 EOS",
  "unstaking_balance": "0.0000 EOS",
  "last_unstaking_time": "1969-12-31T23:59:59",
  "permissions": [{
...
```

# Can I set up a witness (producer)?

No. See the previous screenshot in "using the client". You cannot currently run a producer, or even connect your EOSD to the main network.

But it's at least an early proof of concept to play with :)

I believe you can at least write smart contracts, however I have not played with them yet. I may experiment with them over the next few days now that I have it working well.

# Discussion

All discussion is held on the EOS telegram. There is a main chat and a developer chat. 

You can join the main chat at https://EOS.io/chat - you'll need to ask if you would like to be invited to the developer chat (most likely where witness/producer talk will happen)

---


<center>![](https://i.giphy.com/media/l378lvuErndt84HII/giphy.gif)</center>

GIF Avatar by @stellabelle

---

Do you like what I'm doing for STEEM/Steemit?
----
[Vote for me to be a witness](https://steemit.com/~witnesses) - every vote counts. 
----
Don't forget to follow me for more like this.
----

---

Have you ever thought about being a witness yourself? Join the [witness channel](https://steemit.chat/channel/witness). We're happy to guide you! Join in shaping the STEEM economy.

Are you looking for a new server provider? My company @privex offers highly-reliable and affordable dedicated and virtual servers for STEEM, LTC, and BTC! Check out our website at https://www.privex.io

---
πŸ‘  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 213 others
πŸ‘Ž  , , ,
properties (23)
post_id19,490,167
authorsomeguy123
permlinkeos-in-a-box-get-started-on-eos-today
categoryeos
json_metadata"{"format": "markdown", "links": ["https://www.privex.io", "https://eosio.github.io/genesis/tools/account-name/index.html", "https://EOS.io/chat", "https://steemit.com/~witnesses", "https://steemit.chat/channel/witness"], "app": "steemit/0.1", "tags": ["eos", "utopian-io", "docker", "tools", "dev"], "users": ["dantheman", "dan", "stellabelle", "privex"], "image": ["https://steemitimages.com/DQmUHZT33pnFMEArwzMJC2CSyTecLiKPsbQUzDSax9L2QRH/image.png"]}"
created2017-12-05 00:46:18
last_update2017-12-05 00:46:18
depth0
children43
net_rshares60,250,499,047,307
last_payout2017-12-12 00:46:18
cashout_time1969-12-31 23:59:59
total_payout_value182.524 SBD
curator_payout_value38.056 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length7,342
author_reputation87,543,160,636,924
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (281)
@builderofcastles ·
$2.44
But they told me to think outside the box.  :-p

It is good to hear that eos has progressed this far.
Trial under fire is the best way to beat the bugs out of the system.
πŸ‘  , , ,
properties (23)
post_id19,490,411
authorbuilderofcastles
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t005023536z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 00:51:18
last_update2017-12-05 00:51:18
depth1
children0
net_rshares666,624,756,613
last_payout2017-12-12 00:51:18
cashout_time1969-12-31 23:59:59
total_payout_value1.906 SBD
curator_payout_value0.532 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length170
author_reputation24,421,806,043,412
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@harleymechanix ·
$2.78
I have NO IDEA what any of the above means.  I think its good?  All i know is the EOS I bought at $.50 is now over $4 and that its just getting started!  Woop Woop!  

![Phil.jpg](https://steemitimages.com/DQmRAhvt55XMfjVVb3Zpei4Gri5fxcfPCJPWjjhwHN6t4gk/Phil.jpg)
πŸ‘  , , , , ,
properties (23)
post_id19,490,583
authorharleymechanix
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t005504418z
categoryeos
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmRAhvt55XMfjVVb3Zpei4Gri5fxcfPCJPWjjhwHN6t4gk/Phil.jpg"], "tags": ["eos"]}"
created2017-12-05 00:55:06
last_update2017-12-05 00:55:06
depth1
children6
net_rshares759,030,904,329
last_payout2017-12-12 00:55:06
cashout_time1969-12-31 23:59:59
total_payout_value2.260 SBD
curator_payout_value0.517 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length263
author_reputation10,311,772,745,930
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (6)
@markush ·
haha boss
properties (22)
post_id19,491,487
authormarkush
permlinkre-harleymechanix-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t011356023z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 01:13:57
last_update2017-12-05 01:13:57
depth2
children0
net_rshares0
last_payout2017-12-12 01:13:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation13,182,567,385,564
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@drwom ·
Hahaha
properties (22)
post_id19,493,985
authordrwom
permlinkre-harleymechanix-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t020449743z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 02:04:48
last_update2017-12-05 02:04:48
depth2
children0
net_rshares0
last_payout2017-12-12 02:04:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length6
author_reputation86,873,814,046,402
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@nutela ·
Good buy!
properties (22)
post_id19,546,742
authornutela
permlinkre-harleymechanix-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t162622008z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 16:26:21
last_update2017-12-05 16:26:21
depth2
children3
net_rshares0
last_payout2017-12-12 16:26:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length9
author_reputation12,751,332,063,284
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@harleymechanix ·
$0.07
Yeah I watched it from the launch.  It started strong and then dipped and at $.50 I scooped some up.  It looks better every day.  Think its gonna be a longterm winner.
πŸ‘  
properties (23)
post_id19,547,468
authorharleymechanix
permlinkre-nutela-re-harleymechanix-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t163551799z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 16:35:57
last_update2017-12-05 16:35:57
depth3
children2
net_rshares19,601,434,065
last_payout2017-12-12 16:35:57
cashout_time1969-12-31 23:59:59
total_payout_value0.058 SBD
curator_payout_value0.010 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length167
author_reputation10,311,772,745,930
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yehey · (edited)
$2.48
@someguy123 you made this installer real easy. I've been going back and forth checking the installation for EOS preparing to be an early block producers.

Thank you sir.
@yehey
πŸ‘  , , ,
properties (23)
post_id19,491,386
authoryehey
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t011154564z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["someguy123", "yehey"], "tags": ["eos"]}"
created2017-12-05 01:12:03
last_update2017-12-05 01:13:30
depth1
children2
net_rshares675,644,969,290
last_payout2017-12-12 01:12:03
cashout_time1969-12-31 23:59:59
total_payout_value2.385 SBD
curator_payout_value0.095 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length176
author_reputation19,901,641,047,146
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@someguy123 ·
$0.14
Too bad we can't be producers :(

I'm still not sure why they never bothered to publish their docker image. It took me 5-10 minutes max.
πŸ‘  
properties (23)
post_id19,491,940
authorsomeguy123
permlinkre-yehey-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t012356064z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 01:23:57
last_update2017-12-05 01:23:57
depth2
children1
net_rshares39,598,329,010
last_payout2017-12-12 01:23:57
cashout_time1969-12-31 23:59:59
total_payout_value0.108 SBD
curator_payout_value0.035 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length136
author_reputation87,543,160,636,924
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yehey ·
We'll find out soon, maybe early this week we can test to eosd. Just picked this conversion at telegram chat minutes ago.

soon.
properties (22)
post_id19,493,086
authoryehey
permlinkre-someguy123-re-yehey-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t014609120z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 01:46:18
last_update2017-12-05 01:46:18
depth3
children0
net_rshares0
last_payout2017-12-12 01:46:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length128
author_reputation19,901,641,047,146
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@minnowsupport ·
<p>Congratulations!  This post has been upvoted from the communal account, @minnowsupport, by Someguy from the Minnow Support Project.  It's a witness project run by aggroed, ausbitbank, teamsteem, theprophet0, someguy123, neoxian, followbtcnews/crimsonclad, and netuoso.  The goal is to help Steemit grow by supporting Minnows and creating a social network.  Please find us in the <a href="https://discord.gg/HYj4yvw">Peace, Abundance, and Liberty Network (PALnet) Discord Channel</a>.  It's a completely public and open space to all members of the Steemit community who voluntarily choose to be there.</p>

<p>If you would like to delegate to the Minnow Support Project you can do so by clicking on the following links: <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=102530.639667%20VESTS">50SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=205303.639667%20VESTS">100SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=514303.639667%20VESTS">250SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=1025303.639667%20VESTS">500SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=2053030.639667%20VESTS">1000SP</a>, <a href="https://v2.steemconnect.com/sign/delegateVestingShares?delegator=&amp;delegatee=minnowsupport&amp;vesting_shares=10253030.639667%20VESTS">5000SP</a>.  <strong>Be sure to leave at least 50SP undelegated on your account.</strong></p>
πŸ‘  
properties (23)
post_id19,491,716
authorminnowsupport
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t011831472z
categoryeos
json_metadata"{"app": "cosgrove/0.0.2", "tags": ["eos"]}"
created2017-12-05 01:18:30
last_update2017-12-05 01:18:30
depth1
children0
net_rshares0
last_payout2017-12-12 01:18:30
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length1,745
author_reputation104,981,098,086,561
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bitcoinflood ·
whats the supply of EOS coming out ?
properties (22)
post_id19,492,038
authorbitcoinflood
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t012543266z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 01:25:42
last_update2017-12-05 01:25:42
depth1
children3
net_rshares0
last_payout2017-12-12 01:25:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length36
author_reputation594,900,651,370,683
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@someguy123 · (edited)
<del>1 Trillion</del> EDIT: 1 Billion

![](https://steemitimages.com/DQmVY55HkBDbC6FcEiYEEvvG1AJdMboDKsTFJ2qYsXmK9qk/image.png)
properties (22)
post_id19,492,218
authorsomeguy123
permlinkre-bitcoinflood-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t012943642z
categoryeos
json_metadata"{"app": "steemit/0.1", "image": ["https://steemitimages.com/DQmVY55HkBDbC6FcEiYEEvvG1AJdMboDKsTFJ2qYsXmK9qk/image.png"], "tags": ["eos"]}"
created2017-12-05 01:29:42
last_update2017-12-05 01:48:48
depth2
children2
net_rshares0
last_payout2017-12-12 01:29:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length127
author_reputation87,543,160,636,924
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@malexanders ·
$2.21
1 billion not 1 trillion.
πŸ‘  
properties (23)
post_id19,492,929
authormalexanders
permlinkre-someguy123-re-bitcoinflood-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t014252412z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 01:42:51
last_update2017-12-05 01:42:51
depth3
children1
net_rshares602,642,002,988
last_payout2017-12-12 01:42:51
cashout_time1969-12-31 23:59:59
total_payout_value2.096 SBD
curator_payout_value0.114 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length25
author_reputation28,473,735,368
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@eric-boucher · (edited)
$3.08
Wow, thanks a lot for the instructions and update on EOS! This is awesome and so powerful for us all! Upvoted and resteemed too!  

Namaste   :)
πŸ‘  ,
properties (23)
post_id19,492,148
authoreric-boucher
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t012819379z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 01:28:18
last_update2017-12-05 01:30:12
depth1
children0
net_rshares839,051,474,896
last_payout2017-12-12 01:28:18
cashout_time1969-12-31 23:59:59
total_payout_value3.060 SBD
curator_payout_value0.022 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length144
author_reputation68,478,707,640,592
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (2)
@eliashossain ·
Thank you very much for discussing about EOS, I liked the post in the beautiful post.
properties (22)
post_id19,493,208
authoreliashossain
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t014843304z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 01:48:45
last_update2017-12-05 01:48:45
depth1
children0
net_rshares0
last_payout2017-12-12 01:48:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length85
author_reputation17,692,034,507,824
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@th1nkfast · (edited)
$0.07
Wow, great news for eos holders! And also good work with the installer.
πŸ‘  
properties (23)
post_id19,495,810
authorth1nkfast
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t024011132z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 02:40:12
last_update2017-12-05 02:41:51
depth1
children0
net_rshares19,028,192,701
last_payout2017-12-12 02:40:12
cashout_time1969-12-31 23:59:59
total_payout_value0.068 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length71
author_reputation2,876,662,347,265
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@gikitiki ·
This is looks too easy.  

Must try.
πŸ‘  
properties (23)
post_id19,496,560
authorgikitiki
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t025520442z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 02:55:45
last_update2017-12-05 02:55:45
depth1
children0
net_rshares0
last_payout2017-12-12 02:55:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length36
author_reputation8,799,225,435,691
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@tvulgaris ·
$3.09
I always like easy code to fool with, I just have to make some time to fool with it- meh, who needs sleep?
πŸ‘  
properties (23)
post_id19,498,613
authortvulgaris
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t003939180z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 03:35:51
last_update2017-12-05 03:35:51
depth1
children1
net_rshares842,480,225,496
last_payout2017-12-12 03:35:51
cashout_time1969-12-31 23:59:59
total_payout_value2.316 SBD
curator_payout_value0.771 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length106
author_reputation294,366,842,111
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@someguy123 ·
Hah, I stayed up until 1:30am just to get this docker image working, and the post out :P
properties (22)
post_id19,533,357
authorsomeguy123
permlinkre-tvulgaris-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t133832500z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 13:38:33
last_update2017-12-05 13:38:33
depth2
children0
net_rshares0
last_payout2017-12-12 13:38:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length88
author_reputation87,543,160,636,924
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamsteem ·
$4.25
This is very exciting. I might try to install it very soon. I don't think I'll have enough EOS to be a block producer when the main net launch I might try anyway. 

Thank you for this awesome tool!
πŸ‘  , , ,
properties (23)
post_id19,503,539
authorteamsteem
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t051358939z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 05:13:54
last_update2017-12-05 05:13:54
depth1
children3
net_rshares1,160,450,762,620
last_payout2017-12-12 05:13:54
cashout_time1969-12-31 23:59:59
total_payout_value3.194 SBD
curator_payout_value1.059 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length197
author_reputation284,009,804,791,421
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (4)
@yehey ·
What is enough EOS requirement to be a block producer?
πŸ‘  
properties (23)
post_id19,685,498
authoryehey
permlinkre-teamsteem-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171207t060548769z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-07 06:05:57
last_update2017-12-07 06:05:57
depth2
children2
net_rshares619,520,000
last_payout2017-12-14 06:05:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length54
author_reputation19,901,641,047,146
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@jure ·
I would like to know that too :)
properties (22)
post_id19,710,471
authorjure
permlinkre-yehey-re-teamsteem-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171207t125932270z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-07 12:59:36
last_update2017-12-07 12:59:36
depth3
children0
net_rshares0
last_payout2017-12-14 12:59:36
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length32
author_reputation1,755,676,291
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@teamsteem ·
There's none as far as I know but I expect the competition to be fierce to the point of being almost impossible unless someone as super huge amount of EOS.
properties (22)
post_id19,718,444
authorteamsteem
permlinkre-yehey-re-teamsteem-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171207t144420849z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-07 14:44:18
last_update2017-12-07 14:44:18
depth3
children0
net_rshares0
last_payout2017-12-14 14:44:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length155
author_reputation284,009,804,791,421
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@hammaraxx ·
Live testing on the fly.
Interesting...
*(I'll be back, I have some reading to do.)*
πŸ‘  
properties (23)
post_id19,508,252
authorhammaraxx
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t064551033z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 06:45:51
last_update2017-12-05 06:45:51
depth1
children0
net_rshares171,920,477
last_payout2017-12-12 06:45:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length84
author_reputation3,285,993,247,600
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bitgeek ·
comment
Congratulations @someguy123, this post is the sixth most rewarded post (based on pending payouts) in the last 12 hours written by a Superhero or Legend account holder (accounts hold greater than 100 Mega Vests). The total number of posts by Superhero and Legend account holders during this period was 27 and the total pending payments to posts in these categories was $1769.31. To see the full list of highest paid posts across all accounts categories, [click here](www.steemit.com/steemit/@bitgeek/payout-stats-report-for-5th-december-2017--part-ii). 

If you do not wish to receive these messages in future, please reply stop to this comment.
properties (22)
post_id19,511,717
authorbitgeek
permlinkre-eos-in-a-box-get-started-on-eos-today-20171205t075031
categoryeos
json_metadata{}
created2017-12-05 07:50:33
last_update2017-12-05 07:50:33
depth1
children0
net_rshares0
last_payout2017-12-12 07:50:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length645
author_reputation13,048,348,742,603
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@transisto ·
are you sure about https://eos.io/chat dead to me
properties (22)
post_id19,521,976
authortransisto
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t104805477z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://eos.io/chat"], "tags": ["eos"]}"
created2017-12-05 10:48:03
last_update2017-12-05 10:48:03
depth1
children0
net_rshares0
last_payout2017-12-12 10:48:03
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length49
author_reputation331,131,121,482,590
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@unlockrs ·
$2.07
Great info! Thank you!
πŸ‘  
properties (23)
post_id19,529,340
authorunlockrs
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t124544235z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 12:45:42
last_update2017-12-05 12:45:42
depth1
children0
net_rshares565,552,791,428
last_payout2017-12-12 12:45:42
cashout_time1969-12-31 23:59:59
total_payout_value1.556 SBD
curator_payout_value0.518 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length22
author_reputation1,959,847,242,549
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@nutela ·
$0.07
Funny, I was just wondering about having the right HW for EOS and setting up a box!
πŸ‘  
properties (23)
post_id19,546,696
authornutela
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t162546222z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 16:25:45
last_update2017-12-05 16:25:45
depth1
children0
net_rshares19,844,930,141
last_payout2017-12-12 16:25:45
cashout_time1969-12-31 23:59:59
total_payout_value0.070 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length83
author_reputation12,751,332,063,284
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@bennierex ·
Thanks for your work man. I’m definately going to check this out!
properties (22)
post_id19,570,697
authorbennierex
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t215001184z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 21:50:00
last_update2017-12-05 21:50:00
depth1
children0
net_rshares0
last_payout2017-12-12 21:50:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length65
author_reputation5,551,935,914,386
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@najarramsada ·
Nice work on the guide. Excited to try this out.
πŸ‘  
properties (23)
post_id19,575,480
authornajarramsada
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171205t231123912z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-05 23:11:24
last_update2017-12-05 23:11:24
depth1
children0
net_rshares0
last_payout2017-12-12 23:11:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length48
author_reputation29,062,524,298
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@mawit07 ·
I am behind the eight ball here, but is EOS a new social network? Been watching the price of EOS go up to but never got involved.
properties (22)
post_id19,617,407
authormawit07
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171206t115733378z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-06 11:57:45
last_update2017-12-06 11:57:45
depth1
children0
net_rshares0
last_payout2017-12-13 11:57:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length129
author_reputation37,921,795,238,342
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@mariangelly ·
Wooo se ve muy fΓ‘cil
properties (22)
post_id19,658,375
authormariangelly
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171206t214448468z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-06 21:44:54
last_update2017-12-06 21:44:54
depth1
children0
net_rshares0
last_payout2017-12-13 21:44:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length20
author_reputation0
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@ankarlie ·
$0.14
@someguy123 I am really interested in learning how to do this stuff. I have just one question do i need to have a server? I was planning to run it off virtualbox just to test it would be that okay? and what are the minimum requirements so that I can set the proper settings for my Virtual Machine. Sorry if those are silly questions I am just learning along the way :)
πŸ‘  
properties (23)
post_id19,674,593
authorankarlie
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171207t025852547z
categoryeos
json_metadata"{"app": "steemit/0.1", "users": ["someguy123"], "tags": ["eos"]}"
created2017-12-07 02:58:54
last_update2017-12-07 02:58:54
depth1
children2
net_rshares38,723,227,816
last_payout2017-12-14 02:58:54
cashout_time1969-12-31 23:59:59
total_payout_value0.104 SBD
curator_payout_value0.034 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length368
author_reputation21,821,715,475,664
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@yehey ·
$0.08
You can start using a virtual box, it only need 2GB RAM and maybe 10GB hard disk space there nothing in it.
Try it out and you will find out.
πŸ‘  
properties (23)
post_id19,685,653
authoryehey
permlinkre-ankarlie-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171207t060818870z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-07 06:08:27
last_update2017-12-07 06:08:27
depth2
children1
net_rshares22,526,478,252
last_payout2017-12-14 06:08:27
cashout_time1969-12-31 23:59:59
total_payout_value0.062 SBD
curator_payout_value0.018 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length141
author_reputation19,901,641,047,146
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@ankarlie ·
Yes I am trying to run it now. Thanks for the help :)
properties (22)
post_id19,687,642
authorankarlie
permlinkre-yehey-re-ankarlie-re-someguy123-eos-in-a-box-get-started-on-eos-today-20171207t064402988z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-07 06:44:06
last_update2017-12-07 06:44:06
depth3
children0
net_rshares0
last_payout2017-12-14 06:44:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length53
author_reputation21,821,715,475,664
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@stellabelle ·
this is cool, thanks for the amazing information that will help countless people
properties (22)
post_id19,752,923
authorstellabelle
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171207t223807556z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-07 22:38:09
last_update2017-12-07 22:38:09
depth1
children0
net_rshares0
last_payout2017-12-14 22:38:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length80
author_reputation436,515,832,240,166
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kyzitemelos93 ·
Great tutorial I would pay to see the rest of EOS in an easily packaged manner I'm having all kinds of trouble installing the rest of the components.
 You're the man!
πŸ‘  
properties (23)
post_id22,299,724
authorkyzitemelos93
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20171228t043947115z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2017-12-28 04:39:45
last_update2017-12-28 04:39:45
depth1
children0
net_rshares615,320,000
last_payout2018-01-04 04:39:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length166
author_reputation0
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
author_curate_reward""
vote details (1)
@blockchained ·
You can find Russian version of this post [HERE](https://steemit.com/eos/@blockchained/eos-in-a-box-nachnite-ispolzovat-eos-uzhe-segodnya-someguy123) 

---

Русская вСрсия [Ρ‚ΡƒΡ‚](https://steemit.com/eos/@blockchained/eos-in-a-box-nachnite-ispolzovat-eos-uzhe-segodnya-someguy123)
properties (22)
post_id23,374,363
authorblockchained
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20180103t194939916z
categoryeos
json_metadata"{"app": "steemit/0.1", "links": ["https://steemit.com/eos/@blockchained/eos-in-a-box-nachnite-ispolzovat-eos-uzhe-segodnya-someguy123"], "tags": ["eos"]}"
created2018-01-03 19:49:42
last_update2018-01-03 19:49:42
depth1
children0
net_rshares0
last_payout2018-01-10 19:49:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length278
author_reputation71,522,789,527,370
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@kyzitemelos93 ·
Just tried right now to set up on my other computer and the socket is a goner I got denied permissions.
properties (22)
post_id24,317,928
authorkyzitemelos93
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20180108t082249166z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2018-01-08 08:22:48
last_update2018-01-08 08:22:48
depth1
children0
net_rshares0
last_payout2018-01-15 08:22:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length103
author_reputation0
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000
@jeffschulman ·
Great guide, I'll have to try it when I have time.
properties (22)
post_id24,475,495
authorjeffschulman
permlinkre-someguy123-eos-in-a-box-get-started-on-eos-today-20180109t012904484z
categoryeos
json_metadata"{"app": "steemit/0.1", "tags": ["eos"]}"
created2018-01-09 01:29:06
last_update2018-01-09 01:29:06
depth1
children0
net_rshares0
last_payout2018-01-16 01:29:06
cashout_time1969-12-31 23:59:59
total_payout_value0.000 SBD
curator_payout_value0.000 SBD
pending_payout_value0.000 SBD
promoted0.000 SBD
body_length50
author_reputation2,958,769,349
root_title"EOS-In-A-Box - Get started on EOS today!"
beneficiaries[]
max_accepted_payout1,000,000.000 SBD
percent_steem_dollars10,000