forked from steemit/steem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into steem-prerelease-v0.19.0
- Loading branch information
Showing
16 changed files
with
223 additions
and
69 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
Quickstart | ||
---------- | ||
|
||
### Get current steemd | ||
Use docker: | ||
``` | ||
docker run \ | ||
-d -p 2001:2001 -p 8090:8090 --name steemd-default \ | ||
steemit/steem | ||
``` | ||
#### Low memory node? | ||
Above runs low memory node, which is suitable for: | ||
- seed nodes | ||
- witness nodes | ||
- exchanges, etc. | ||
For full api node use: | ||
|
||
``` | ||
docker run \ | ||
--env USE_WAY_TOO_MUCH_RAM=1 --env USE_FULL_WEB_NODE=1 \ | ||
-d -p 2001:2001 -p 8090:8090 --name steemd-full \ | ||
steemit/steem | ||
``` | ||
### Configure for your use case | ||
#### Full API node | ||
You need to use `USE_WAY_TOO_MUCH_RAM=1` and `USE_FULL_WEB_NODE=1` as stated above. | ||
You can Use `contrib/fullnode.config.ini` as a base for your `config.ini` file. | ||
|
||
#### Exchanges | ||
Use low memory node. | ||
|
||
Also make sure that your `config.ini` contains: | ||
``` | ||
enable-plugin = account_history | ||
public-api = database_api login_api | ||
track-account-range = ["yourexchangeid", "yourexchangeid"] | ||
``` | ||
Do not add other APIs or plugins unless you know what you are doing. | ||
|
||
### Resources usage | ||
|
||
Please make sure that you have enough resources available. | ||
Check `shared-file-size =` in your `config.ini` to reflect your needs. | ||
Set it to at least 20% more than current size. | ||
|
||
Provided values are expected to grow significantly over time. | ||
|
||
Blockchain data takes over **12GB** of storage space. | ||
|
||
#### Full node | ||
Shared memory file for full node uses over **45GB** | ||
|
||
#### Seed node | ||
Shared memory file for seed node uses over **3GB** | ||
|
||
#### Other use cases | ||
Shared memory file size varies, depends on your specific configuration but it is expected to be somewhere between "seed node" and "full node" usage. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,29 @@ | ||
seed.riversteem.com:2001 # riverhead | ||
steem-seed1.abit-more.com:2001 # abit | ||
52.74.152.79:2001 # smooth.witness | ||
seed.steemd.com:34191 # roadscape | ||
steemwitness.matthewniemerg.com:2001 # complexring | ||
steemd.pharesim.me:2001 # pharesim | ||
seed.jesta.us:2001 # jesta | ||
seed.liondani.com:2016 # liondani | ||
anyx.co:2001 # anyx | ||
seed.xeldal.com:12150 # xeldal | ||
seed.steemnodes.com:2001 # wackou | ||
steem.clawmap.com:2001 # steempty | ||
gtg.steem.house:2001 # gtg | ||
192.99.3.29:2001 # joseph | ||
5.9.18.213:2001 # pfunk | ||
lafonasteem.com:2001 # lafona | ||
seed.rossco99.com:2001 # rossco99 | ||
212.47.249.84:40696 # ihashfury | ||
steem-seed.altcap.io:40696 # ihashfury | ||
seed.steemfeeder.com:2001 # au1nethyb1 | ||
52.175.211.168:2001 # aizensou | ||
seed.roelandp.nl:2001 # roelandp | ||
81.89.101.133:2001 # cyrano.witness | ||
steem.global:2001 # klye | ||
seed.esteem.ws:2001 # good-karma | ||
176.31.126.187:2001 # timcliff | ||
seed.royaltiffany.me:2001 # royaltiffany | ||
seed.thecryptodrive.com:2001 # thecryptodrive | ||
steem-id.altexplorer.xyz:2001 # steem-id | ||
seed.bitcoiner.me:2001 # bitcoiner | ||
104.199.118.92:2001 # clayop | ||
192.99.4.226:2001 # dele-puppy | ||
89.36.26.82:2001 # dragosroua | ||
104.198.222.18:2001 # bitcoinparadise | ||
138.197.17.188:2001 # chitty | ||
88.99.33.113:2001 # cervantes | ||
seed.bhuz.info:2001 # bhuz | ||
78.46.95.157:2001 # pcste |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 0 additions & 26 deletions
26
libraries/chain/include/steemit/chain/immutable_chain_parameters.hpp
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.