@fairmint/canton-node-sdk
Version:
Canton Node SDK
50 lines (43 loc) • 1.19 kB
Plain Text
include required(file("/app/storage.conf"))
canton {
# required for key export
features {
enable-preview-commands = yes
}
parameters {
manual-start = no
non-standard-config = yes
timeouts.processing.slow-future-warn = 20.seconds
}
mediators {
mediator {
init = {
generate-topology-transactions-and-keys = false
identity.type = manual
}
topology.validate-initial-topology-snapshot = false
sequencer-client {
acknowledgement-interval = 10m
use-new-connection-pool = false
enable-amplification-improvements = true
}
storage = ${_storage}
storage.config.properties {
serverName = ${CANTON_DOMAIN_POSTGRES_SERVER}
portNumber = ${CANTON_DOMAIN_POSTGRES_PORT}
databaseName = ${?CANTON_MEDIATOR_POSTGRES_DB}
currentSchema = "mediator"
user = ${?CANTON_DOMAIN_POSTGRES_USER}
password = ${?CANTON_DOMAIN_POSTGRES_PASSWORD}
}
monitoring.grpc-health-server {
address = "0.0.0.0"
port = 5061
}
admin-api {
address = "0.0.0.0"
port = 5007
}
}
}
}