Steem Developer logo

Steem Developer Portal

Understanding Configuration Values

Low level blockchain constants

Intro

These values underpin the behavior of the entire blockchain. In a sense, each witness votes for these configuration values every time they sign a block. Unlike many of the Dynamic Global Properties, these values never change at runtime (e.g., as a witness, in order to change them, you typically must shut down your node, make the change, recompile, and run).

See: config.hpp

Usually, these configuration values are universally adhered to, but there are situations where these values can and should be altered, like in the case of deploying a new blockchain (typically a testnet). Some of the values that do not affect consensus, like STEEM_SOFT_MAX_COMMENT_DEPTH, are allowed to change to some extent.

Sections

IS_TEST_NET

Indicates if this node is running on testnet.

See: Steem Testnet




STEEM_ADDRESS_PREFIX

Address prefix used on mainnet is STM and on testnet is TST.

See: Steem Testnet




STEEM_BLOCKS_PER_HOUR

60*60/STEEM_BLOCK_INTERVAL




STEEM_BLOCK_INTERVAL

Block interval in seconds is 3. This is the target for block production. This constant is also used as a component for determining valid peer inventory, bandwidth calculations, and block production gaps.




STEEM_CASHOUT_WINDOW_SECONDS

This value was simply set to 7 days, since HF17.

Prior to this, other very complicated machinations were tried like multiple payouts and an initial 24 hours (prior to HF12) and even initial 12 hours (in HF12) all with time extensions depending on how much of an upvote the content got.

Note, on testnet, this is typically much shorter: 1 hour.

See: Steem Testnet




STEEM_CHAIN_ID

The chain ID to connect to, which is used to seed signing and prevent transaction crosstalk between two chains, typically mainnet and testnet.

See: Steem Testnet




STEEM_CHAIN_ID_NAME

Tyically used to automatically get a unique chain id for a testnet.

See: Steem Testnet




STEEM_CONVERSION_DELAY

Prior to HF16, 7 day conversion. After HF16 3.5 day conversion

See: #551




STEEM_CREATE_ACCOUNT_DELEGATION_RATIO

This ratio is set to 5 and is used to determine the cost of an account created with delegation.

As an example, imagine the account creation fee is currently 3.000 STEEM. Instead of creating the account using pure STEEM, there is an option to use delegation so that the blockchain would reduce the creation fee to 0.100 STEEM. Going this route would require a delegation of 15.000 STEEM, that can be revoked at any time, but will stay in limbo for 30 days after the creation date (STEEM_CREATE_ACCOUNT_DELEGATION_TIME).

This minimum STEEM ensures that those accounts can transact if the delegation is removed.

See: #818




STEEM_CREATE_ACCOUNT_DELEGATION_TIME

There is a minimum delegation period (30 days) and a minimum fee in STEEM even when delegating for account creation (derived with STEEM_CREATE_ACCOUNT_DELEGATION_RATIO). The minimum period enforces a rate limit on account creation.

Note that delegation can be revoked before 30 days have elapsed from the creation date, but stays in limbo.

See: #818




STEEM_DB_FORMAT_VERSION

Version format string for platform independent state files. The Steem binary will refuse to load a state file where this does not match the built-in version.

See: #3084, STEEM_NETWORK_TYPE, state-format, from-state, to-state




STEEM_DEFAULT_ACCOUNT_SUBSIDY_BUDGET

Default rate is 0.5 accounts per block




STEEM_DEFAULT_ACCOUNT_SUBSIDY_DECAY

347321 corresponds to a 5-day halflife




STEEM_DEFAULT_SBD_INTEREST_RATE

< 10% APR




STEEM_FEED_HISTORY_WINDOW

Price feed history window, which is 3.5 days since HF16.




STEEM_GENESIS_TIME

Scheduled time that the blockchain waited until the first block was produced. It is represented as the unix epoch of 1458835200, which is Thu Mar 24 16:00:00 UTC 2016. About five seconds later, the first block was produced.

See: https://steemd.com/b/1




STEEM_HARDFORK_REQUIRED_WITNESSES

The minimum number of Delegated Proof of Stake witnesses required for hardfork. This guarantees 75% participation on all subsequent rounds.

By default it is set to 17, but when running a testnet, we can change it to 1 so that only one node instance would be sufficient and the network will be still functional and fast.

See: Steem Testnet




STEEM_INFLATION_NARROWING_PERIOD

Inflation narrows 0.01% every 250k blocks, since HF16. At block 7,000,000, there was a 9.5% instantaneous inflation rate, decreasing to 0.95% at this rate of 0.01% every 250k blocks. This narrowing will take approximately 20.5 years and will complete on block 220,750,000.

Year Supply Inflation New Supply   Year Supply Inflation New Supply
2016 250,000,000 9.50% 23,750,000   2031 646,511,386 3.19% 20,613,886
2017 273,750,000 9.08% 24,854,398   2032 667,125,272 2.77% 18,464,106
2018 298,604,398 8.66% 25,854,554   2033 685,589,378 2.35% 16,090,399
2019 324,458,952 8.24% 26,727,942   2034 701,679,777 1.93% 13,515,587
2020 351,186,894 7.82% 27,452,027   2035 715,195,364 1.51% 10,766,608
2021 378,638,921 7.40% 28,004,740   2036 725,961,973 1.08% 7,874,074
2022 406,643,661 6.98% 28,364,989   2037 733,836,047 0.95% 6,971,442
2023 435,008,650 6.55% 28,513,181   2038 740,807,489 0.95% 7,037,671
2024 463,521,832 6.13% 28,431,762   2039 747,845,160 0.95% 7,104,529
2025 491,953,593 5.71% 28,105,742   2040 754,949,689 0.95% 7,172,022
2026 520,059,335 5.29% 27,523,204   2041 762,121,711 0.95% 7,240,156
2027 547,582,539 4.87% 26,675,768   2042 769,361,868 0.95% 7,308,938
2028 574,258,308 4.45% 25,558,997   2043 776,670,805 0.95% 7,378,373
2029 599,817,304 4.03% 24,172,733   2044 784,049,178 0.95% 7,448,467
2030 623,990,038 3.61% 22,521,348   2045 791,497,645 0.95% 7,519,228

See: Steem.DAO, database_api.get_reward_funds, sps_fund




STEEM_INITIAL_VOTE_POWER_RATE

The rate used prior to HF19. The number of votes an account may cast per day before voting power is impacted (originally 40 votes per day).




STEEM_IRREVERSIBLE_THRESHOLD

75%

See: #320




STEEM_MAX_ACCOUNT_NAME_LENGTH

Names must comply with the following grammar (RFC 1035), i.e.: a valid name consists of a dot-separated sequence of one or more labels consisting of the following rules:

In addition we require the following:

See: account_create, account_create_with_delegation, create_claimed_account




STEEM_MAX_ACCOUNT_WITNESS_VOTES

Each account may cast up to 30 witness votes.

See: account_witness_vote, account_witness_proxy




STEEM_MAX_AUTHORITY_MEMBERSHIP

40 auths




STEEM_MAX_COMMENT_DEPTH

Prior to HF17, the limit was 6. After HF17, the internal limit became 65,535, but with a soft limit of 255.

See: #767, STEEM_SOFT_MAX_COMMENT_DEPTH




STEEM_MAX_FEED_AGE_SECONDS

7 days

See: #822




STEEM_MAX_LIMIT_ORDER_EXPIRATION

Limit Order Expiration must not be more than 28 days in the future

See: #1449




STEEM_MAX_MEMO_SIZE

2048 bytes




A permlink is a unique string identifier for a post/comment, linked to the author of the post/comment. It must not exceed 256 characters.




STEEM_MAX_PROXY_RECURSION_DEPTH

depth: 4




STEEM_MAX_WITNESSES

This value is set to 21, which means there are 21 witnesses cycling to produce blocks.

Every round of block production begins with the shuffling of 21 witnesses: the top 20 witnesses (by vote), plus one randomly-selected standby witness. Each is given a turn to produce a single block at a fixed rate of one block every 3 seconds. If a witness does not produce a block in their time slot, then that time slot is skipped, and the next witness produces the next block.




STEEM_MAX_WITNESS_URL_LENGTH

Witnesses may provide a URL in their witness proposal. It must not exceed 2,048 characters.




STEEM_MIN_PAYOUT_SBD

Rewards of less than 0.020 SBD are considered “dust” and will not receive payout.




STEEM_MIN_REPLY_INTERVAL

Prior to HF20, comments (replies) could only be broadcasted once every 20 seconds, per account.




STEEM_MIN_REPLY_INTERVAL_HF20

In HF20, comments (replies) can be broadcasted once every 3 seconds, per account (one comment per account per block).

See: #2019




STEEM_MIN_ROOT_COMMENT_INTERVAL

Posts (root comments) can only be broadcasted once every 5 minutes, per account.




STEEM_NETWORK_TYPE

Used by platform independent state files to indicate:

See: #3084, STEEM_DB_FORMAT_VERSION, state-format, from-state, to-state




STEEM_NULL_ACCOUNT

This defines the null account used by the blockchain as the canonical account designated to burn assets.

The blockchain checks all asset types transferred to this account, thus, even reward balances and VESTS are burned.

See: operation_time_tests.cpp




STEEM_PROPOSAL_MAINTENANCE_CLEANUP

1 day

See: PR#3272, PR#3278, Steem.DAO, database_api.get_reward_funds, sps_fund




STEEM_PROPOSAL_MAX_IDS_NUMBER

Max number of IDs passed at once to the update_proposal_votes or remove_proposal. Maximum: 5

See: PR#3272, PR#3278, update_proposal_votes, Steem.DAO, database_api.get_reward_funds, sps_fund




STEEM_PROPOSAL_SUBJECT_MAX_LENGTH

Maximum: 80

See: PR#3272, PR#3278, Steem.DAO, database_api.get_reward_funds, sps_fund




STEEM_PROXY_TO_SELF_ACCOUNT

An empty string represents the canonical account for specifying you will vote for directly (as opposed to a proxy).




STEEM_REDUCED_VOTE_POWER_RATE

The rate used since HF19. The number of votes an account may cast per day before voting power is impacted (10 votes per day).




STEEM_REVERSE_AUCTION_WINDOW_SECONDS

Removed in HF21, see: #1874

Prior to HF6, there was no reverse auction logic. From HF6 to HF19, the reverse auction window is 30 minutes.

In HF20, the reverse action is being reduced to 15 minutes.

In HF21, the reverse action is being reduced to 5 minutes.

See: reverse_auction_seconds, #1874, #1878




STEEM_SAVINGS_WITHDRAW_TIME

This value sets the timelock of 3 days for funds being withdrawn from savings. Funds can be transferred into savings instantly, but require 72 hours (3 days) to withdraw from savings. This will guarantee there is at least 1 business day during which you can contact your recovery agent.




STEEM_SOFT_MAX_BLOCK_SIZE

Max block size cannot be more than 2MiB (2*1024*1024).

See: #1655




STEEM_SOFT_MAX_COMMENT_DEPTH

A comment is nested at a maximum depth of 255. As a soft limit, it is enforced by the witness_plugin.

Prior to HF17, the maximum comment depth was 6.

See: #767, STEEM_MAX_COMMENT_DEPTH, witness_plugin.cpp




STEEM_TREASURY_ACCOUNT

Account dedicated to holding treasury debt asset balance to distribute.

See: PR#3272, PR#3278, update_proposal_votes, Steem.DAO, database_api.get_reward_funds, sps_fund




STEEM_TREASURY_FEE

10.000 SBD

See: PR#3272, PR#3278, update_proposal_votes, Steem.DAO, database_api.get_reward_funds, sps_fund




STEEM_UPVOTE_LOCKOUT_HF17

Accounts may not increase payout within last 12 hours before payout, since HF17.




STEEM_VESTING_WITHDRAW_INTERVALS

Sets the power-down rate, which is fulfilled once a week over 13 weeks.

Prior to HF16, this value was 104 weeks.

See: #551




STEEM_VESTING_WITHDRAW_INTERVAL_SECONDS

1 week per interval




STEEM_VOTE_DUST_THRESHOLD

Used to determine when abs_rshares is too small while evaluating vote operation.

See: #774, vote, vote2




STEEM_VOTING_MANA_REGENERATION_SECONDS

Renamed from STEEM_VOTE_REGENERATION_SECONDS




STEEM_WITNESS_SUBSIDY_DECAY_PERCENT

Since witness decay only procs once per round, multiplying the decay constant by the number of witnesses means the per-witness pools have the same effective decay rate in real-time terms.




TESTNET_BLOCK_LIMIT

Maxumum blocks (testnet only: 3,000,000 blocks, ~3.5 months).

See: Steem Testnet




Not Covered

Fields not covered in this recipe are:

Example Method Call

curl -s --data '{"jsonrpc":"2.0", "method":"condenser_api.get_config", "params":[], "id":1}' https://api.steemit.com

Example Output

{
   "jsonrpc":"2.0",
   "result":{
      "IS_TEST_NET":true,
      "TESTNET_BLOCK_LIMIT":3000000,
      "SMT_MAX_VOTABLE_ASSETS":2,
      "SMT_VESTING_WITHDRAW_INTERVAL_SECONDS":604800,
      "SMT_UPVOTE_LOCKOUT":43200,
      "SMT_EMISSION_MIN_INTERVAL_SECONDS":21600,
      "SMT_EMIT_INDEFINITELY":4294967295,
      "SMT_MAX_NOMINAL_VOTES_PER_DAY":1000,
      "SMT_MAX_VOTES_PER_REGENERATION":7000,
      "SMT_DEFAULT_VOTES_PER_REGEN_PERIOD":50,
      "SMT_DEFAULT_PERCENT_CURATION_REWARDS":2500,
      "SMT_INITIAL_VESTING_PER_UNIT":1000000,
      "SMT_BALLAST_SUPPLY_PERCENT":10,
      "SBD_SYMBOL":{"nai":"@@000000013", "precision":3},
      "STEEM_INITIAL_VOTE_POWER_RATE":40,
      "STEEM_REDUCED_VOTE_POWER_RATE":10,
      "STEEM_100_PERCENT":10000,
      "STEEM_1_PERCENT":100,
      "STEEM_ACCOUNT_RECOVERY_REQUEST_EXPIRATION_PERIOD":12000000,
      "STEEM_ACTIVE_CHALLENGE_COOLDOWN":"86400000000",
      "STEEM_ACTIVE_CHALLENGE_FEE":{"amount":"2000", "precision":3, "nai":"@@000000021"},
      "STEEM_ADDRESS_PREFIX":"TST",
      "STEEM_APR_PERCENT_MULTIPLY_PER_BLOCK":"102035135585887",
      "STEEM_APR_PERCENT_MULTIPLY_PER_HOUR":"119577151364285",
      "STEEM_APR_PERCENT_MULTIPLY_PER_ROUND":"133921203762304",
      "STEEM_APR_PERCENT_SHIFT_PER_BLOCK":87,
      "STEEM_APR_PERCENT_SHIFT_PER_HOUR":77,
      "STEEM_APR_PERCENT_SHIFT_PER_ROUND":83,
      "STEEM_BANDWIDTH_AVERAGE_WINDOW_SECONDS":604800,
      "STEEM_BANDWIDTH_PRECISION":1000000,
      "STEEM_BENEFICIARY_LIMIT":128,
      "STEEM_BLOCKCHAIN_PRECISION":1000,
      "STEEM_BLOCKCHAIN_PRECISION_DIGITS":3,
      "STEEM_BLOCKCHAIN_HARDFORK_VERSION":"0.23.0",
      "STEEM_BLOCKCHAIN_VERSION":"0.23.0",
      "STEEM_BLOCK_INTERVAL":3,
      "STEEM_BLOCKS_PER_DAY":28800,
      "STEEM_BLOCKS_PER_HOUR":1200,
      "STEEM_BLOCKS_PER_YEAR":10512000,
      "STEEM_CASHOUT_WINDOW_SECONDS":3600,
      "STEEM_CASHOUT_WINDOW_SECONDS_PRE_HF12":3600,
      "STEEM_CASHOUT_WINDOW_SECONDS_PRE_HF17":3600,
      "STEEM_CHAIN_ID":"18dcf0a285365fc58b71f18b3d3fec954aa0c141c44e4e5cb4cf777b9eab274e",
      "STEEM_COMMENT_REWARD_FUND_NAME":"comment",
      "STEEM_COMMENT_TITLE_LIMIT":256,
      "STEEM_CONTENT_APR_PERCENT":3875,
      "STEEM_CONTENT_CONSTANT_HF0":"2000000000000",
      "STEEM_CONTENT_CONSTANT_HF21":"2000000000000",
      "STEEM_CONTENT_REWARD_PERCENT_HF16":7500,
      "STEEM_CONTENT_REWARD_PERCENT_HF21":6500,
      "STEEM_CONVERSION_DELAY":"302400000000",
      "STEEM_CONVERSION_DELAY_PRE_HF_16":"604800000000",
      "STEEM_CREATE_ACCOUNT_DELEGATION_RATIO":5,
      "STEEM_CREATE_ACCOUNT_DELEGATION_TIME":"2592000000000",
      "STEEM_CREATE_ACCOUNT_WITH_STEEM_MODIFIER":30,
      "STEEM_CURATE_APR_PERCENT":3875,
      "STEEM_CUSTOM_OP_DATA_MAX_LENGTH":8192,
      "STEEM_CUSTOM_OP_ID_MAX_LENGTH":32,
      "STEEM_DEFAULT_SBD_INTEREST_RATE":1000,
      "STEEM_DOWNVOTE_POOL_PERCENT_HF21":2500,
      "STEEM_EQUIHASH_K":6,
      "STEEM_EQUIHASH_N":140,
      "STEEM_FEED_HISTORY_WINDOW":84,
      "STEEM_FEED_HISTORY_WINDOW_PRE_HF_16":168,
      "STEEM_FEED_INTERVAL_BLOCKS":1200,
      "STEEM_GENESIS_TIME":"2016-01-01T00:00:00",
      "STEEM_HARDFORK_REQUIRED_WITNESSES":17,
      "STEEM_HF21_CONVERGENT_LINEAR_RECENT_CLAIMS":"503600561838938636",
      "STEEM_INFLATION_NARROWING_PERIOD":250000,
      "STEEM_INFLATION_RATE_START_PERCENT":978,
      "STEEM_INFLATION_RATE_STOP_PERCENT":95,
      "STEEM_INIT_MINER_NAME":"initminer",
      "STEEM_INIT_PUBLIC_KEY_STR":"TST6LLegbAgLAy28EHrffBVuANFWcFgmqRMW13wBmTExqFE9SCkg4",
      "STEEM_INIT_SUPPLY":"250000000000",
      "STEEM_SBD_INIT_SUPPLY":"7000000000",
      "STEEM_INIT_TIME":"1970-01-01T00:00:00",
      "STEEM_IRREVERSIBLE_THRESHOLD":7500,
      "STEEM_LIQUIDITY_APR_PERCENT":750,
      "STEEM_LIQUIDITY_REWARD_BLOCKS":1200,
      "STEEM_LIQUIDITY_REWARD_PERIOD_SEC":3600,
      "STEEM_LIQUIDITY_TIMEOUT_SEC":"604800000000",
      "STEEM_MAX_ACCOUNT_CREATION_FEE":1000000000,
      "STEEM_MAX_ACCOUNT_NAME_LENGTH":16,
      "STEEM_MAX_ACCOUNT_WITNESS_VOTES":30,
      "STEEM_MAX_ASSET_WHITELIST_AUTHORITIES":10,
      "STEEM_MAX_AUTHORITY_MEMBERSHIP":40,
      "STEEM_MAX_BLOCK_SIZE":393216000,
      "STEEM_SOFT_MAX_BLOCK_SIZE":2097152,
      "STEEM_MAX_CASHOUT_WINDOW_SECONDS":86400,
      "STEEM_MAX_COMMENT_DEPTH":65535,
      "STEEM_MAX_COMMENT_DEPTH_PRE_HF17":6,
      "STEEM_MAX_FEED_AGE_SECONDS":604800,
      "STEEM_MAX_INSTANCE_ID":"281474976710655",
      "STEEM_MAX_MEMO_SIZE":2048,
      "STEEM_MAX_WITNESSES":21,
      "STEEM_MAX_MINER_WITNESSES_HF0":1,
      "STEEM_MAX_MINER_WITNESSES_HF17":0,
      "STEEM_MAX_PERMLINK_LENGTH":256,
      "STEEM_MAX_PROXY_RECURSION_DEPTH":4,
      "STEEM_MAX_RATION_DECAY_RATE":1000000,
      "STEEM_MAX_RESERVE_RATIO":20000,
      "STEEM_MAX_RUNNER_WITNESSES_HF0":1,
      "STEEM_MAX_RUNNER_WITNESSES_HF17":1,
      "STEEM_MAX_SATOSHIS":"4611686018427387903",
      "STEEM_MAX_SHARE_SUPPLY":"1000000000000000",
      "STEEM_MAX_SIG_CHECK_DEPTH":2,
      "STEEM_MAX_SIG_CHECK_ACCOUNTS":125,
      "STEEM_MAX_TIME_UNTIL_EXPIRATION":3600,
      "STEEM_MAX_TRANSACTION_SIZE":65536,
      "STEEM_MAX_UNDO_HISTORY":10000,
      "STEEM_MAX_URL_LENGTH":127,
      "STEEM_MAX_VOTE_CHANGES":5,
      "STEEM_MAX_VOTED_WITNESSES_HF0":19,
      "STEEM_MAX_VOTED_WITNESSES_HF17":20,
      "STEEM_MAX_WITHDRAW_ROUTES":10,
      "STEEM_MAX_WITNESS_URL_LENGTH":2048,
      "STEEM_MIN_ACCOUNT_CREATION_FEE":0,
      "STEEM_MIN_ACCOUNT_NAME_LENGTH":3,
      "STEEM_MIN_BLOCK_SIZE_LIMIT":65536,
      "STEEM_MIN_BLOCK_SIZE":115,
      "STEEM_MIN_CONTENT_REWARD":{"amount":"1000", "precision":3, "nai":"@@000000021"},
      "STEEM_MIN_CURATE_REWARD":{"amount":"1000", "precision":3, "nai":"@@000000021"},
      "STEEM_MIN_PERMLINK_LENGTH":0,
      "STEEM_MIN_REPLY_INTERVAL":20000000,
      "STEEM_MIN_REPLY_INTERVAL_HF20":3000000,
      "STEEM_MIN_ROOT_COMMENT_INTERVAL":300000000,
      "STEEM_MIN_COMMENT_EDIT_INTERVAL":3000000,
      "STEEM_MIN_VOTE_INTERVAL_SEC":3,
      "STEEM_MINER_ACCOUNT":"miners",
      "STEEM_MINER_PAY_PERCENT":100,
      "STEEM_MIN_FEEDS":7,
      "STEEM_MINING_REWARD":{"amount":"1000", "precision":3, "nai":"@@000000021"},
      "STEEM_MINING_TIME":"2016-01-01T00:00:00",
      "STEEM_MIN_LIQUIDITY_REWARD":{"amount":"1200000", "precision":3, "nai":"@@000000021"},
      "STEEM_MIN_LIQUIDITY_REWARD_PERIOD_SEC":60000000,
      "STEEM_MIN_PAYOUT_SBD":{"amount":"20", "precision":3, "nai":"@@000000013"},
      "STEEM_MIN_POW_REWARD":{"amount":"1000", "precision":3, "nai":"@@000000021"},
      "STEEM_MIN_PRODUCER_REWARD":{"amount":"1000", "precision":3, "nai":"@@000000021"},
      "STEEM_MIN_TRANSACTION_EXPIRATION_LIMIT":15,
      "STEEM_MIN_TRANSACTION_SIZE_LIMIT":1024,
      "STEEM_MIN_UNDO_HISTORY":10,
      "STEEM_NULL_ACCOUNT":"null",
      "STEEM_NUM_INIT_MINERS":1,
      "STEEM_OWNER_AUTH_HISTORY_TRACKING_START_BLOCK_NUM":1,
      "STEEM_OWNER_AUTH_RECOVERY_PERIOD":60000000,
      "STEEM_OWNER_CHALLENGE_COOLDOWN":"86400000000",
      "STEEM_OWNER_CHALLENGE_FEE":{"amount":"30000", "precision":3, "nai":"@@000000021"},
      "STEEM_OWNER_UPDATE_LIMIT":0,
      "STEEM_POST_AVERAGE_WINDOW":86400,
      "STEEM_POST_REWARD_FUND_NAME":"post",
      "STEEM_POST_WEIGHT_CONSTANT":1600000000,
      "STEEM_POW_APR_PERCENT":750,
      "STEEM_PRODUCER_APR_PERCENT":750,
      "STEEM_PROXY_TO_SELF_ACCOUNT":"",
      "STEEM_SBD_INTEREST_COMPOUND_INTERVAL_SEC":2592000,
      "STEEM_SECONDS_PER_YEAR":31536000,
      "STEEM_PROPOSAL_FUND_PERCENT_HF0":0,
      "STEEM_PROPOSAL_FUND_PERCENT_HF21":1000,
      "STEEM_RECENT_RSHARES_DECAY_TIME_HF19":"1296000000000",
      "STEEM_RECENT_RSHARES_DECAY_TIME_HF17":"2592000000000",
      "STEEM_REVERSE_AUCTION_WINDOW_SECONDS_HF6":1800,
      "STEEM_REVERSE_AUCTION_WINDOW_SECONDS_HF20":900,
      "STEEM_REVERSE_AUCTION_WINDOW_SECONDS_HF21":300,
      "STEEM_ROOT_POST_PARENT":"",
      "STEEM_SAVINGS_WITHDRAW_REQUEST_LIMIT":100,
      "STEEM_SAVINGS_WITHDRAW_TIME":"259200000000",
      "STEEM_SBD_START_PERCENT_HF14":200,
      "STEEM_SBD_START_PERCENT_HF20":900,
      "STEEM_SBD_STOP_PERCENT_HF14":500,
      "STEEM_SBD_STOP_PERCENT_HF20":1000,
      "STEEM_SECOND_CASHOUT_WINDOW":259200,
      "STEEM_SOFT_MAX_COMMENT_DEPTH":255,
      "STEEM_START_MINER_VOTING_BLOCK":864000,
      "STEEM_START_VESTING_BLOCK":201600,
      "STEEM_TEMP_ACCOUNT":"temp",
      "STEEM_UPVOTE_LOCKOUT_HF7":60000000,
      "STEEM_UPVOTE_LOCKOUT_HF17":300000000,
      "STEEM_UPVOTE_LOCKOUT_SECONDS":300,
      "STEEM_VESTING_FUND_PERCENT_HF16":1500,
      "STEEM_VESTING_WITHDRAW_INTERVALS":13,
      "STEEM_VESTING_WITHDRAW_INTERVALS_PRE_HF_16":104,
      "STEEM_VESTING_WITHDRAW_INTERVAL_SECONDS":604800,
      "STEEM_VOTE_DUST_THRESHOLD":50000000,
      "STEEM_VOTING_MANA_REGENERATION_SECONDS":432000,
      "STEEM_SYMBOL":{"nai":"@@000000021", "precision":3},
      "VESTS_SYMBOL":{"nai":"@@000000037", "precision":6},
      "STEEM_VIRTUAL_SCHEDULE_LAP_LENGTH":"18446744073709551615",
      "STEEM_VIRTUAL_SCHEDULE_LAP_LENGTH2":"340282366920938463463374607431768211455",
      "STEEM_VOTES_PER_PERIOD_SMT_HF":50,
      "STEEM_MAX_LIMIT_ORDER_EXPIRATION":2419200,
      "STEEM_DELEGATION_RETURN_PERIOD_HF0":3600,
      "STEEM_DELEGATION_RETURN_PERIOD_HF20":432000,
      "STEEM_RD_MIN_DECAY_BITS":6,
      "STEEM_RD_MAX_DECAY_BITS":32,
      "STEEM_RD_DECAY_DENOM_SHIFT":36,
      "STEEM_RD_MAX_POOL_BITS":64,
      "STEEM_RD_MAX_BUDGET_1":"17179869183",
      "STEEM_RD_MAX_BUDGET_2":268435455,
      "STEEM_RD_MAX_BUDGET_3":2147483647,
      "STEEM_RD_MAX_BUDGET":268435455,
      "STEEM_RD_MIN_DECAY":64,
      "STEEM_RD_MIN_BUDGET":1,
      "STEEM_RD_MAX_DECAY":4294967295,
      "STEEM_ACCOUNT_SUBSIDY_PRECISION":10000,
      "STEEM_WITNESS_SUBSIDY_BUDGET_PERCENT":12500,
      "STEEM_WITNESS_SUBSIDY_DECAY_PERCENT":210000,
      "STEEM_DEFAULT_ACCOUNT_SUBSIDY_DECAY":347321,
      "STEEM_DEFAULT_ACCOUNT_SUBSIDY_BUDGET":797,
      "STEEM_DECAY_BACKSTOP_PERCENT":9000,
      "STEEM_BLOCK_GENERATION_POSTPONED_TX_LIMIT":5,
      "STEEM_PENDING_TRANSACTION_EXECUTION_LIMIT":200000,
      "STEEM_TREASURY_ACCOUNT":"steem.dao",
      "STEEM_TREASURY_FEE":10000,
      "STEEM_PROPOSAL_MAINTENANCE_PERIOD":3600,
      "STEEM_PROPOSAL_MAINTENANCE_CLEANUP":86400,
      "STEEM_PROPOSAL_SUBJECT_MAX_LENGTH":80,
      "STEEM_PROPOSAL_MAX_IDS_NUMBER":5,
      "STEEM_NETWORK_TYPE":"testnet",
      "STEEM_DB_FORMAT_VERSION":"1"
   },
   "id":1
}