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

add beta testnet genesis #8

Merged
merged 7 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from 2 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
66 changes: 66 additions & 0 deletions shannon/testnet/app.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
app-db-backend = ""
halt-height = 0
halt-time = 0
iavl-cache-size = 781250
iavl-disable-fastnode = false
index-events = []
inter-block-cache = true
min-retain-blocks = 0
minimum-gas-prices = "0.000000001upokt"
pruning = "nothing"
pruning-interval = "0"
pruning-keep-recent = "0"
query-gas-limit = "0"

[api]
address = "tcp://0.0.0.0:1317"
enable = true
enabled-unsafe-cors = true
max-open-connections = 1000
rpc-max-body-bytes = 1000000
rpc-read-timeout = 10
rpc-write-timeout = 0
swagger = false

[grpc]
address = "localhost:9090"
enable = true
max-recv-msg-size = "10485760"
max-send-msg-size = "2147483647"

[grpc-web]
enable = true

[mempool]
max-txs = 10000

[poktroll]

[poktroll.telemetry]
cardinality-level = "medium"

[rpc]
cors_allowed_origins = ["*"]

[state-sync]
snapshot-interval = 0
snapshot-keep-recent = 2

[streaming]

[streaming.abci]
keys = []
plugin = ""
stop-node-on-err = true

[telemetry]
datadog-hostname = ""
enable-hostname = false
enable-hostname-label = false
enable-service-label = false
enabled = true
global-labels = []
metrics-sink = "mem"
prometheus-retention-time = "1800"
service-name = ""
statsd-addr = ""
5 changes: 5 additions & 0 deletions shannon/testnet/client.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
broadcast-mode = "sync"
chain-id = "poktroll"
okdas marked this conversation as resolved.
Show resolved Hide resolved
keyring-backend = "test"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thoughts on renaming this to beta?

Sounds cool but I'm afraid it'll force us to change all our docs. If my assumption is correct, let's leave it as is.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changing keyring backend indeed will require us changing the docs (even replacing it with file like morse). I'm not sure if we should do it.

  1. Regular users won't care as they use different wallets;
  2. Production deployments will opt in to use a different backend: https://docs.cosmos.network/main/user/run-node/keyring#the-pass-backend

node = "tcp://localhost:26657"
output = "text"
Loading