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_addr contains the URI at which the rollup node RPC is reachable (default http://localhost:8732).
  • rpc_port is the port on which pandora RPC server listens to requests (default 9090).
  • secret_key is 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 variable NOTARIZE_SK).