blueprint-manager 0.2.2

Tangle Blueprint manager and Runner
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use tangle_subxt::tangle_testnet_runtime::api::runtime_types::tangle_primitives::services::{
    GadgetBinary, GithubFetcher,
};

#[derive(Debug)]
pub struct NativeGithubMetadata {
    pub git: String,
    pub tag: String,
    pub owner: String,
    pub repo: String,
    pub gadget_binaries: Vec<GadgetBinary>,
    pub blueprint_id: u64,
    pub fetcher: GithubFetcher,
}