ibc-relayer-cli 1.13.2

Hermes is an IBC Relayer written in Rust
1
2
3
4
5
6
7
8
use crate::prelude::app_reader;
use std::path::PathBuf;

/// Get the path to configuration file
pub fn config_path() -> Option<PathBuf> {
    let app = app_reader();
    app.config_path().cloned()
}