Files
serai/processor/monero/src/key_gen.rs
2024-09-19 23:36:32 -07:00

9 lines
190 B
Rust

use ciphersuite::Ed25519;
pub(crate) struct KeyGenParams;
impl key_gen::KeyGenParams for KeyGenParams {
const ID: &'static str = "Monero";
type ExternalNetworkCiphersuite = Ed25519;
}