Configuration
Pandora server must be given a configuration (either in a file or directly on the CLI). This configuration contains the necessary information for it to communicate with the rollup node and sign messages.
The configuration is written in JSON and has the following structure:
{
"rollup_node_addr" : "http://localhost:8732",
"rpc_port" : 9090,
"secret_key" : "edsk3xAiaeVcv2buA3CjwNaSxpgMCRNGc65ZkUoxyH7AWb5EyuH23A"
}
rollup_node_addrcontains the URI at which the rollup node RPC is reachable (default http://localhost:8732).rpc_portis the port on which pandora RPC server listens to requests (default9090).secret_keyis either an unencrypted ed25519 secret key in base58 (one can be generated with, e.g.octez-client gen key admin && octez-client show address admin -S) or the name of an environment variable which contains a secret key (defaults to environment variableNOTARIZE_SK).