Canton Console¶
Canton offers a console (REPL) where entities can be dynamically started and stopped, and a variety of administrative or debugging commands can be run.
All console commands must be valid Scala (the console is built on Ammonite - a Scala based
scripting and REPL framework). Note that we also
define a set of implicit type conversions to improve the console usability:
notably, whenever a console command requires a DomainAlias, Fingerprint or Identifier, you can instead also call it with a String
which will be automatically converted to the correct type
(i.e., you can, e.g., write participant1.domains.get_agreement("domain1")
instead of participant1.domains.get_agreement(DomainAlias.tryCreate("domain1"))
).
The examples/
sub-directories contain some sample scripts, with the extension .canton
.
Contents
Commands are organised by thematic groups. Some commands also need to be explicitly turned on via configuration directives to be accessible.
Some operations are available on both types of nodes, whereas some operations are specific to either participant or domain nodes. For consistency, we organise the manual by node type, which means that some commands will appear twice. However, the detailed explanations are only given within the participant documentation.
Remote Administration¶
The console works in-process against local nodes. However, you can also run the console separate from the node process, and you can use a single console to administrate many remote nodes.
As an example, you might start Canton in daemon mode using
./bin/canton daemon -c <some config>
Assuming now that you’ve started a participant, you can access this participant using a remote-participant
configuration such as:
canton {
remote-participants {
remoteParticipant1 {
admin-api {
port = 10012
address = 127.0.0.1 // is the default value if omitted
}
ledger-api {
port = 10011
address = 127.0.0.1 // is the default value if omitted
}
}
}
}
Naturally, you can then also use the remote configuration to run a script:
./bin/canton daemon -c remote-participant1.conf --bootstrap <some-script>
Please note that a remote node will support almost all commands except a few that a local node supports.
If you want to generate a skeleton remote configuration of a normal config file, you can use
./bin/canton generate remote-config -c participant1.conf
However, you might have then to edit the config and adjust the hostname.
For production use cases, in particular if the Admin Api is not just bound to localhost, we recommend to enable TLS with mutual authentication.
Node References¶
To issue the command on a particular node, you must refer to it via its reference, which is a Scala variable.
Named variables are created for all domain entities and participants using their configured identifiers.
For example the sample examples/01-simple-topology/simple-topology.conf
configuration file references the
domain mydomain
, and participants participant1
and participant2
.
These are available in the console as mydomain
, participant1
and participant2
.
The console also provides additional generic references that allow you to consult a list of nodes by type. The generic node reference supports three subsets of each node type: local, remote or all nodes of that type. For the participants, you can use:
participants.local
participants.remote
participants.all
The generic node references can be used in a Scala syntactic way:
participants.all.foreach(_.dars.upload("my.dar"))
but the participant references also support some generic commands for actions that often have to be performed for many nodes at once, such as:
participants.local.dars.upload("my.dar")
The available node references are:
- domainManagers
- Summary: All domain manager nodes (.all, .local, .remote)
- domains
- Summary: All domain nodes (.all, .local, .remote)
- mediators
- Summary: All mediator nodes (.all, .local, .remote)
- nodes
- Summary: All nodes (.all, .local, .remote)
- participants
- Summary: All participant nodes (.all, .local, .remote)
- sequencers
- Summary: All sequencer nodes (.all, .local, .remote)
Help¶
Canton can be very helpful if you ask for help. Try to type
help
or
participant1.help()
to get an overview of the commands and command groups that exist. help()
works on every level
(e.g. participant1.domains.help()
) or can be used to search for particular functions (help("list")
)
or to get detailed help explanation for each command (participant1.parties.help("list")
).
Lifecycle Operations¶
These are supported by individual and sequences of domains and participants. If called on a sequence, operations will be called sequentially in the order of the sequence. For example:
nodes.local.start()
can be used to start all configured local domains and participants.
If the node is running with database persistence, it will support the database migration command (db.migrate
).
The migrations are performed automatically when the node is started for the first time.
However, new migrations added as part of new versions of the software must be run manually using the command.
In some rare cases, it may also be necessary to run db.repair_migration
before running db.migrate
- please
refer to the description of db.repair_migration
for more details.
Note that data continuity (and therefore database migration) is only guaranteed to work across minor and patch version updates.
The domain, sequencer and mediator nodes might need extra setup to be fully functional. Check domain bootstrapping for more details.
Timeouts¶
Console command timeouts can be configured using the respective console command timeout section in the configuration file:
canton.parameters.timeouts.console = {
bounded = 2.minutes
unbounded = Inf // infinity
ledger-command = 2.minutes
ping = 30.seconds
}
The bounded
argument is used for all commands that should finish once processing has completed, whereas the
unbounded
timeout is used for commands where we do not control the processing time. This is used in
particular for potentially very long running commands.
Some commands have specific timeout arguments that can be passed explicitly as type NonNegativeDuration
. For convenience,
the console includes by default the implicits of scala.concurrent.duration._
and an implicit conversion from
the Scala type scala.concurrent.duration.FiniteDuration
to NonNegativeDuration
. As a result, you can use
normal Scala expressions and write
timeouts as
participant1.health.ping(participant1, timeout = 10.seconds)
while the implicit conversion will take care of converting it to the right types.
Generally, there is no need to re-configure the timeouts and we recommend to just use the safe default values.
Code-Generation in Console¶
The Daml SDK provides code-generation utilities which
create Java or Scala bindings for Daml models. These bindings are a convenient way to interact with
the ledger from the console in a typed fashion. The linked documentation explains how to create these
bindings using the daml
command. The Scala bindings are not officially supported, so should not be used
for application development.
Once you have successfully built the bindings, you can then load the resulting jar
into the Canton console using the
magic Ammonite import trick within console scripts:
interp.load.cp(os.Path("codegen.jar", base = os.pwd))
@ // the at triggers the compilation such that we can use the imports subsequently
import ...