Skip to content
Don Kackman edited this page Aug 6, 2022 · 2 revisions

Welcome to the chia-repl wiki!

Some examples and additional detail.

Options

The repl has a global options object. Update and use .save-options to configure for your liking.

{
    cursor: '🌿 ',
    autoConnect: false,
    verbosity: 'normal',
    ipfsToken: '',        // needed for minting MFTs
};

Connections

These objects are used to describe the connection to a chia daemon. By defualt it will point to the localhost daemon and its certs. Multiple connections can be managed with .load-connection <name> and .save-connection <name>.

{
  host: 'localhost',
  port: 55400,
  key_path: '~/.chia/mainnet/config/ssl/daemon/private_daemon.key',
  cert_path: '~/.chia/mainnet/config/ssl/daemon/private_daemon.crt',
  timeout_seconds: 30,
  prefix: 'xch'
};
Clone this wiki locally