Files
serai/processor/monero/src/key_gen.rs

9 lines
182 B
Rust
Raw Normal View History

2025-08-25 09:17:29 -04:00
use dkg::Ed25519;
2024-09-12 18:40:10 -04:00
pub(crate) struct KeyGenParams;
impl key_gen::KeyGenParams for KeyGenParams {
const ID: &'static str = "Monero";
type ExternalNetworkCiphersuite = Ed25519;
}