2023-04-25 19:05:58 +00:00
|
|
|
# Processor
|
|
|
|
|
|
|
|
The processor is a service which has an instance spawned per network. It is
|
2023-08-27 05:57:17 +00:00
|
|
|
responsible for several tasks, from scanning an external network to signing
|
2023-04-25 19:05:58 +00:00
|
|
|
transactions with payments.
|
|
|
|
|
|
|
|
This document primarily discusses its flow with regards to the coordinator.
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Generate Key
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `key_gen::CoordinatorMessage::GenerateKey`, the processor begins a pair of
|
|
|
|
instances of the distributed key generation protocol specified in the FROST
|
|
|
|
paper.
|
|
|
|
|
2023-08-27 05:57:17 +00:00
|
|
|
The first instance is for a key to use on the external network. The second
|
2023-04-25 19:05:58 +00:00
|
|
|
instance is for a Ristretto public key used to publish data to the Serai
|
|
|
|
blockchain. This pair of FROST DKG instances is considered a single instance of
|
|
|
|
Serai's overall key generation protocol.
|
|
|
|
|
|
|
|
The commitments for both protocols are sent to the coordinator in a single
|
|
|
|
`key_gen::ProcessorMessage::Commitments`.
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Key Gen Commitments
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `key_gen::CoordinatorMessage::Commitments`, the processor continues the
|
|
|
|
specified key generation instance. The secret shares for each fellow
|
|
|
|
participant are sent to the coordinator in a
|
|
|
|
`key_gen::ProcessorMessage::Shares`.
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
#### Key Gen Shares
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `key_gen::CoordinatorMessage::Shares`, the processor completes the specified
|
|
|
|
key generation instance. The generated key pair is sent to the coordinator in a
|
|
|
|
`key_gen::ProcessorMessage::GeneratedKeyPair`.
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Confirm Key Pair
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `substrate::CoordinatorMessage::ConfirmKeyPair`, the processor starts using
|
2023-08-27 05:57:17 +00:00
|
|
|
the newly confirmed key, scanning blocks on the external network for
|
2023-04-25 19:05:58 +00:00
|
|
|
transfers to it.
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### External Network Block
|
2023-04-25 19:05:58 +00:00
|
|
|
|
2023-08-27 05:57:17 +00:00
|
|
|
When the external network has a new block, which is considered finalized
|
2023-04-25 19:05:58 +00:00
|
|
|
(either due to being literally finalized or due to having a sufficient amount
|
|
|
|
of confirmations), it's scanned.
|
|
|
|
|
|
|
|
Outputs to the key of Serai's multisig are saved to the database. Outputs which
|
2023-08-25 03:48:50 +00:00
|
|
|
newly transfer into Serai are used to build `Batch`s for the block. The
|
2023-04-25 19:05:58 +00:00
|
|
|
processor then begins a threshold signature protocol with its key pair's
|
2023-09-29 07:51:01 +00:00
|
|
|
Ristretto key to sign the `Batch`s.
|
|
|
|
|
|
|
|
The `Batch`s are each sent to the coordinator in a
|
|
|
|
`substrate::ProcessorMessage::Batch`, enabling the coordinator to know what
|
|
|
|
`Batch`s *should* be published to Serai. After each
|
|
|
|
`substrate::ProcessorMessage::Batch`, the preprocess for the first instance of
|
|
|
|
its signing protocol is sent to the coordinator in a
|
|
|
|
`coordinator::ProcessorMessage::BatchPreprocess`.
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
As a design comment, we *may* be able to sign now possible, already scheduled,
|
|
|
|
branch/leaf transactions at this point. Doing so would be giving a mutable
|
|
|
|
borrow over the scheduler to both the external network and the Serai network,
|
|
|
|
and would accordingly be unsafe. We may want to look at splitting the scheduler
|
|
|
|
in two, in order to reduce latency (TODO).
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Batch Preprocesses
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `coordinator::CoordinatorMessage::BatchPreprocesses`, the processor
|
|
|
|
continues the specified batch signing protocol, sending
|
|
|
|
`coordinator::ProcessorMessage::BatchShare` to the coordinator.
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Batch Shares
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `coordinator::CoordinatorMessage::BatchShares`, the processor
|
|
|
|
completes the specified batch signing protocol. If successful, the processor
|
2023-09-29 07:51:01 +00:00
|
|
|
stops signing for this batch and sends
|
|
|
|
`substrate::ProcessorMessage::SignedBatch` to the coordinator.
|
2023-04-25 19:05:58 +00:00
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Batch Re-attempt
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `coordinator::CoordinatorMessage::BatchReattempt`, the processor will create
|
|
|
|
a new instance of the batch signing protocol. The new protocol's preprocess is
|
|
|
|
sent to the coordinator in a `coordinator::ProcessorMessage::BatchPreprocess`.
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Substrate Block
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `substrate::CoordinatorMessage::SubstrateBlock`, the processor:
|
|
|
|
|
|
|
|
1) Marks all blocks, up to the external block now considered finalized by
|
|
|
|
Serai, as having had their batches signed.
|
|
|
|
2) Adds the new outputs from newly finalized blocks to the scheduler, along
|
|
|
|
with the necessary payments from `Burn` events on Serai.
|
2023-07-29 12:29:54 +00:00
|
|
|
3) Sends a `substrate::ProcessorMessage::SubstrateBlockAck`, containing the IDs
|
|
|
|
of all plans now being signed for, to the coordinator.
|
|
|
|
4) Sends `sign::ProcessorMessage::Preprocess` for each plan now being signed
|
|
|
|
for.
|
2023-04-25 19:05:58 +00:00
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Sign Preprocesses
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `sign::CoordinatorMessage::Preprocesses`, the processor continues the
|
|
|
|
specified transaction signing protocol, sending `sign::ProcessorMessage::Share`
|
|
|
|
to the coordinator.
|
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Sign Shares
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `sign::CoordinatorMessage::Shares`, the processor completes the specified
|
|
|
|
transaction signing protocol. If successful, the processor stops signing for
|
|
|
|
this transaction and publishes the signed transaction. Then,
|
|
|
|
`sign::ProcessorMessage::Completed` is sent to the coordinator, to be
|
2023-07-30 10:44:55 +00:00
|
|
|
broadcasted to all validators so everyone can observe the attempt completed,
|
|
|
|
producing a signed and published transaction.
|
2023-04-25 19:05:58 +00:00
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Sign Re-attempt
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `sign::CoordinatorMessage::Reattempt`, the processor will create a new
|
2023-07-30 10:44:55 +00:00
|
|
|
a new instance of the transaction signing protocol if it hasn't already
|
|
|
|
completed/observed completion of an instance of the signing protocol. The new
|
|
|
|
protocol's preprocess is sent to the coordinator in a
|
|
|
|
`sign::ProcessorMessage::Preprocess`.
|
2023-04-25 19:05:58 +00:00
|
|
|
|
2023-09-29 07:51:01 +00:00
|
|
|
### Sign Completed
|
2023-04-25 19:05:58 +00:00
|
|
|
|
|
|
|
On `sign::CoordinatorMessage::Completed`, the processor verifies the included
|
|
|
|
transaction hash actually refers to an accepted transaction which completes the
|
|
|
|
plan it was supposed to. If so, the processor stops locally signing for the
|
2023-07-30 10:44:55 +00:00
|
|
|
transaction, and emits `sign::ProcessorMessage::Completed` if it hasn't prior.
|