mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-09 04:39:24 +00:00
9 lines
182 B
Rust
9 lines
182 B
Rust
use dkg::Ed25519;
|
|
|
|
pub(crate) struct KeyGenParams;
|
|
impl key_gen::KeyGenParams for KeyGenParams {
|
|
const ID: &'static str = "Monero";
|
|
|
|
type ExternalNetworkCiphersuite = Ed25519;
|
|
}
|