mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Uses dalek-ff-group for Ed25519 and Ristretto. Uses minimal-ed448 for Ed448. Adds ciphersuite-kp256 for Secp256k1 and P-256.
53 lines
1.7 KiB
Rust
53 lines
1.7 KiB
Rust
use std::path::Path;
|
|
|
|
use dalek_ff_group::Ristretto;
|
|
use ciphersuite::{group::GroupEncoding, Ciphersuite};
|
|
|
|
use crate::{Network, Os, mimalloc, os, build_serai_service, write_dockerfile};
|
|
|
|
pub fn message_queue(
|
|
orchestration_path: &Path,
|
|
network: Network,
|
|
coordinator_key: <Ristretto as Ciphersuite>::G,
|
|
bitcoin_key: <Ristretto as Ciphersuite>::G,
|
|
ethereum_key: <Ristretto as Ciphersuite>::G,
|
|
monero_key: <Ristretto as Ciphersuite>::G,
|
|
) {
|
|
let setup = mimalloc(Os::Debian).to_string() +
|
|
&build_serai_service("", network.release(), network.db(), "serai-message-queue");
|
|
|
|
let env_vars = [
|
|
("COORDINATOR_KEY", hex::encode(coordinator_key.to_bytes())),
|
|
("BITCOIN_KEY", hex::encode(bitcoin_key.to_bytes())),
|
|
("ETHEREUM_KEY", hex::encode(ethereum_key.to_bytes())),
|
|
("MONERO_KEY", hex::encode(monero_key.to_bytes())),
|
|
("DB_PATH", "/volume/message-queue-db".to_string()),
|
|
("RUST_LOG", "info,serai_message_queue=trace".to_string()),
|
|
];
|
|
let mut env_vars_str = String::new();
|
|
for (env_var, value) in env_vars {
|
|
env_vars_str += &format!(r#"{env_var}=${{{env_var}:="{value}"}} "#);
|
|
}
|
|
|
|
let run_message_queue = format!(
|
|
r#"
|
|
# Copy the Message Queue binary and relevant license
|
|
COPY --from=builder --chown=messagequeue /serai/bin/serai-message-queue /bin
|
|
COPY --from=builder --chown=messagequeue /serai/AGPL-3.0 .
|
|
|
|
# Run message-queue
|
|
EXPOSE 2287
|
|
CMD {env_vars_str} serai-message-queue
|
|
"#
|
|
);
|
|
|
|
let run = os(Os::Debian, "", "messagequeue") + &run_message_queue;
|
|
let res = setup + &run;
|
|
|
|
let mut message_queue_path = orchestration_path.to_path_buf();
|
|
message_queue_path.push("message-queue");
|
|
message_queue_path.push("Dockerfile");
|
|
|
|
write_dockerfile(message_queue_path, &res);
|
|
}
|