Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

JSON file for proposing phase5 network settings #4491

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/software/commands.md
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ Most commands return their results in JSON format.
and dump it as base64 xdr. This can be used along with the `stellar-xdr` command line tool
to dump the current settings in the same format as the JSON file we use for upgrades. This
is helpful if you want to make settings changes off of the current settings.
Ex. `curl -s "127.0.0.1:11626/sorobaninfo?format=upgrade_xdr" | stellar-xdr decode --type ConfigUpgradeSet`
Ex. `curl -s "127.0.0.1:11626/sorobaninfo?format=upgrade_xdr" | stellar-xdr decode --type ConfigUpgradeSet --output json-formatted`

* **dumpproposedsettings**
`dumpproposedsettings?blob=Base64`<br>
Expand Down
47 changes: 47 additions & 0 deletions soroban-settings/pubnet_phase5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"updated_entry": [
{
"contract_max_size_bytes": 131072
},
{
"contract_ledger_cost_v0": {
"ledger_max_read_ledger_entries": 200,
"ledger_max_read_bytes": 500000,
"ledger_max_write_ledger_entries": 125,
"ledger_max_write_bytes": 143360,
"tx_max_read_ledger_entries": 40,
"tx_max_read_bytes": 200000,
"tx_max_write_ledger_entries": 25,
"tx_max_write_bytes": 132096,
"fee_read_ledger_entry": 6250,
"fee_write_ledger_entry": 10000,
"fee_read1_kb": 1786,
"bucket_list_target_size_bytes": 14500000000,
"write_fee1_kb_bucket_list_low": 8510,
"write_fee1_kb_bucket_list_high": 12116,
"bucket_list_write_fee_growth_factor": 5000
}
},
{
"contract_bandwidth_v0": {
"ledger_max_txs_size_bytes": 133120,
"tx_max_size_bytes": 132096,
"fee_tx_size1_kb": 1624
}
},
{
"state_archival": {
"max_entry_ttl": 3110400,
"min_temporary_ttl": 17280,
"min_persistent_ttl": 2073600,
"persistent_rent_rate_denominator": 2103,
"temp_rent_rate_denominator": 4206,
"max_entries_to_archive": 1000,
"bucket_list_size_window_sample_size": 30,
"bucket_list_window_sample_period": 64,
"eviction_scan_size": 500000,
"starting_eviction_scan_level": 7
}
}
]
}
47 changes: 47 additions & 0 deletions soroban-settings/testnet_settings_phase_5.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
{
"updated_entry": [
{
"contract_max_size_bytes": 131072
},
{
"contract_ledger_cost_v0": {
"ledger_max_read_ledger_entries": 200,
"ledger_max_read_bytes": 500000,
"ledger_max_write_ledger_entries": 125,
"ledger_max_write_bytes": 143360,
"tx_max_read_ledger_entries": 40,
"tx_max_read_bytes": 200000,
"tx_max_write_ledger_entries": 25,
"tx_max_write_bytes": 132096,
"fee_read_ledger_entry": 6250,
"fee_write_ledger_entry": 10000,
"fee_read1_kb": 1786,
"bucket_list_target_size_bytes": 300000000,
"write_fee1_kb_bucket_list_low": 9836,
"write_fee1_kb_bucket_list_high": 12116,
"bucket_list_write_fee_growth_factor": 5000
}
},
{
"contract_bandwidth_v0": {
"ledger_max_txs_size_bytes": 133120,
"tx_max_size_bytes": 132096,
"fee_tx_size1_kb": 1624
}
},
{
"state_archival": {
"max_entry_ttl": 3110400,
"min_temporary_ttl": 17280,
"min_persistent_ttl": 2073600,
"persistent_rent_rate_denominator": 2103,
"temp_rent_rate_denominator": 4206,
"max_entries_to_archive": 1000,
"bucket_list_size_window_sample_size": 30,
"bucket_list_window_sample_period": 64,
"eviction_scan_size": 500000,
"starting_eviction_scan_level": 7
}
}
]
}
Loading