38 lines
694 B
Plaintext
38 lines
694 B
Plaintext
include classpath("application.conf")
|
|
|
|
node-address {
|
|
protocol = http
|
|
host = "*"
|
|
port = 9324
|
|
context-path = ""
|
|
}
|
|
|
|
rest-sqs {
|
|
enabled = true
|
|
bind-port = 9324
|
|
bind-hostname = "0.0.0.0"
|
|
// Possible values: relaxed, strict
|
|
sqs-limits = strict
|
|
}
|
|
|
|
queues {
|
|
mainnet {
|
|
defaultVisibilityTimeout = 900 seconds
|
|
delay = 5 seconds
|
|
receiveMessageWait = 0 seconds
|
|
fifo = true
|
|
}
|
|
ropsten {
|
|
defaultVisibilityTimeout = 900 seconds
|
|
delay = 5 seconds
|
|
receiveMessageWait = 0 seconds
|
|
fifo = true
|
|
}
|
|
polygon {
|
|
defaultVisibilityTimeout = 900 seconds
|
|
delay = 5 seconds
|
|
receiveMessageWait = 0 seconds
|
|
fifo = true
|
|
}
|
|
}
|