sg-std 3.2.0

Bindings for CosmWasm contracts to call into custom modules of Stargaze
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::env::current_dir;
use std::fs::create_dir_all;

use cosmwasm_schema::{export_schema, remove_schemas, schema_for};

use sg_std::{StargazeMsg, StargazeMsgWrapper};
fn main() {
    let mut out_dir = current_dir().unwrap();
    out_dir.push("schema");
    create_dir_all(&out_dir).unwrap();
    remove_schemas(&out_dir).unwrap();

    export_schema(&schema_for!(StargazeMsgWrapper), &out_dir);
    export_schema(&schema_for!(StargazeMsg), &out_dir);
}