Skip to content

Commit

Permalink
chore: reset example configs (#269)
Browse files Browse the repository at this point in the history
  • Loading branch information
scarmuega authored Jun 8, 2024
1 parent 6a114a6 commit 8965338
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 42 deletions.
31 changes: 20 additions & 11 deletions examples/sync-mainnet/dolos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,35 @@ network_magic = 764824073
is_testnet = false

[storage]
path = "./data"
wal_size = 1000
path = "data"

[genesis]
byron_path = "byron.json"
shelley_path = "shelley.json"
alonzo_path = "alonzo.json"

[sync]
pull_batch_size = 200
pull_batch_size = 100

[submit]
prune_height = 10000

[genesis]
byron_path = "./byron.json"
shelley_path = "./shelley.json"
alonzo_path = "./alonzo.json"
prune_height = 200

[serve.grpc]
listen_address = "[::]:50051"

[serve.ouroboros]
listen_address = "[::]:30013"
listen_path = "dolos.socket"
magic = 764824073

[relay]
listen_address = "[::]:30031"
magic = 764824073

[mithril]
aggregator = "https://aggregator.release-mainnet.api.mithril.network/aggregator"
genesis_key = "5b3139312c36362c3134302c3138352c3133382c31312c3233372c3230372c3235302c3134342c32372c322c3138382c33302c31322c38312c3135352c3230342c31302c3137392c37352c32332c3133382c3139362c3231372c352c31342c32302c35372c37392c33392c3137365d"

[logging]
max_level = "debug"
max_level = "INFO"
include_pallas = false
include_grpc = false
32 changes: 16 additions & 16 deletions examples/sync-preprod/dolos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,33 @@ is_testnet = true
path = "./data"
wal_size = 1000

[genesis]
byron_path = "byron.json"
shelley_path = "shelley.json"
alonzo_path = "alonzo.json"

[sync]
pull_batch_size = 200

[relay]
listen_address = "[::]:30013"
magic = 1

[submit]
prune_height = 10000

[genesis]
byron_path = "./byron.json"
shelley_path = "./shelley.json"
alonzo_path = "./alonzo.json"

[mithril]
aggregator = "https://aggregator.release-preprod.api.mithril.network/aggregator"
genesis_key = "5b3132372c37332c3132342c3136312c362c3133372c3133312c3231332c3230372c3131372c3139382c38352c3137362c3139392c3136322c3234312c36382c3132332c3131392c3134352c31332c3233322c3234332c34392c3232392c322c3234392c3230352c3230352c33392c3233352c34345d"

[serve.grpc]
listen_address = "[::]:50051"

[serve.ouroboros]
listen_path = "dolos.socket"
magic = 1

[relay]
listen_address = "[::]:30031"
magic = 1

[mithril]
aggregator = "https://aggregator.release-preprod.api.mithril.network/aggregator"
genesis_key = "5b3132372c37332c3132342c3136312c362c3133372c3133312c3231332c3230372c3131372c3139382c38352c3137362c3139392c3136322c3234312c36382c3132332c3131392c3134352c31332c3233322c3234332c34392c3232392c322c3234392c3230352c3230352c33392c3233352c34345d"

[logging]
max_level = "info"
# include_pallas = true
# include_tonic = true
max_level = "INFO"
include_pallas = false
include_grpc = false
32 changes: 17 additions & 15 deletions examples/sync-preview/dolos.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,18 @@ network_magic = 2
is_testnet = true

[storage]
path = "./tmp/rolldb"
wal_size = 1000
path = "data"

[genesis]
byron_path = "byron.json"
shelley_path = "shelley.json"
alonzo_path = "alonzo.json"

[sync]
pull_batch_size = 200
pull_batch_size = 100

[submit]
prune_height = 10000

[genesis]
byron_path = "./byron.json"
shelley_path = "./shelley.json"
alonzo_path = "./alonzo.json"

[mithril]
aggregator = "https://aggregator.pre-release-preview.api.mithril.network/aggregator"
genesis_key = "5b3132372c37332c3132342c3136312c362c3133372c3133312c3231332c3230372c3131372c3139382c38352c3137362c3139392c3136322c3234312c36382c3132332c3131392c3134352c31332c3233322c3234332c34392c3232392c322c3234392c3230352c3230352c33392c3233352c34345d"
prune_height = 200

[serve.grpc]
listen_address = "[::]:50051"
Expand All @@ -30,7 +25,14 @@ listen_path = "dolos.socket"
magic = 2

[relay]
listen_address = "[::]:30013"
listen_address = "[::]:30031"
magic = 2

[mithril]
aggregator = "https://aggregator.pre-release-preview.api.mithril.network/aggregator"
genesis_key = "5b3132372c37332c3132342c3136312c362c3133372c3133312c3231332c3230372c3131372c3139382c38352c3137362c3139392c3136322c3234312c36382c3132332c3131392c3134352c31332c3233322c3234332c34392c3232392c322c3234392c3230352c3230352c33392c3233352c34345d"

[logging]
max_level = "info"
max_level = "INFO"
include_pallas = false
include_grpc = false

0 comments on commit 8965338

Please sign in to comment.