endpoint_constants.rs
1 pub const ADD_CONFIG_GEN_PEER_ENDPOINT: &str = "add_config_gen_peer"; 2 pub const AUDIT_ENDPOINT: &str = "audit"; 3 pub const GUARDIAN_CONFIG_BACKUP_ENDPOINT: &str = "download_guardian_backup"; 4 pub const AUTH_ENDPOINT: &str = "auth"; 5 pub const AWAIT_OUTPUT_OUTCOME_ENDPOINT: &str = "await_output_outcome"; 6 pub const BACKUP_ENDPOINT: &str = "backup"; 7 pub const CLIENT_CONFIG_ENDPOINT: &str = "client_config"; 8 pub const SERVER_CONFIG_CONSENSUS_HASH_ENDPOINT: &str = "server_config_consensus_hash"; 9 pub const SESSION_COUNT_ENDPOINT: &str = "session_count"; 10 pub const AWAIT_SESSION_OUTCOME_ENDPOINT: &str = "await_session_outcome"; 11 pub const AWAIT_SIGNED_SESSION_OUTCOME_ENDPOINT: &str = "await_signed_session_outcome"; 12 pub const SESSION_STATUS_ENDPOINT: &str = "session_status"; 13 pub const SHUTDOWN_ENDPOINT: &str = "shutdown"; 14 pub const CONFIG_GEN_PEERS_ENDPOINT: &str = "config_gen_peers"; 15 pub const CONSENSUS_CONFIG_GEN_PARAMS_ENDPOINT: &str = "consensus_config_gen_params"; 16 pub const DEFAULT_CONFIG_GEN_PARAMS_ENDPOINT: &str = "default_config_gen_params"; 17 pub const VERIFY_CONFIG_HASH_ENDPOINT: &str = "verify_config_hash"; 18 pub const MODULES_CONFIG_JSON_ENDPOINT: &str = "modules_config_json"; 19 pub const RECOVER_ENDPOINT: &str = "recover"; 20 pub const REGISTER_GATEWAY_ENDPOINT: &str = "register_gateway"; 21 pub const RUN_DKG_ENDPOINT: &str = "run_dkg"; 22 pub const SET_CONFIG_GEN_CONNECTIONS_ENDPOINT: &str = "set_config_gen_connections"; 23 pub const SET_CONFIG_GEN_PARAMS_ENDPOINT: &str = "set_config_gen_params"; 24 pub const SET_PASSWORD_ENDPOINT: &str = "set_password"; 25 pub const START_CONSENSUS_ENDPOINT: &str = "start_consensus"; 26 pub const STATUS_ENDPOINT: &str = "status"; 27 pub const SUBMIT_TRANSACTION_ENDPOINT: &str = "submit_transaction"; 28 pub const VERIFIED_CONFIGS_ENDPOINT: &str = "verified_configs"; 29 pub const VERSION_ENDPOINT: &str = "version"; 30 pub const AWAIT_TRANSACTION_ENDPOINT: &str = "await_transaction"; 31 pub const INVITE_CODE_ENDPOINT: &str = "invite_code"; 32 pub const FEDERATION_ID_ENDPOINT: &str = "federation_id"; 33 pub const RESTART_FEDERATION_SETUP_ENDPOINT: &str = "restart_federation_setup";