vta-sdk 0.19.2

SDK for Verifiable Trust Agents operating in Verifiable Trust Communities
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod get_config;
pub mod restart;
pub mod update_config;

pub const PROTOCOL_BASE: &str = "https://firstperson.network/protocols/vta-management/1.0";

pub const GET_CONFIG: &str = "https://firstperson.network/protocols/vta-management/1.0/get-config";
pub const GET_CONFIG_RESULT: &str =
    "https://firstperson.network/protocols/vta-management/1.0/get-config-result";

pub const UPDATE_CONFIG: &str =
    "https://firstperson.network/protocols/vta-management/1.0/update-config";
pub const UPDATE_CONFIG_RESULT: &str =
    "https://firstperson.network/protocols/vta-management/1.0/update-config-result";

pub const RESTART: &str = "https://firstperson.network/protocols/vta-management/1.0/restart";
pub const RESTART_RESULT: &str =
    "https://firstperson.network/protocols/vta-management/1.0/restart-result";