8694396942
* Calculating gas fees * Ability to set custom fees * Added extra test * Removed commented code * Moved all msg types to common contract crate * Temporarily disabling get_tx method * Finishing up nymd client API * Comment fix * Remaining fee values * Some cleanup * Removed needless borrow * Fixed imports in contract tests * Made contract address optional to allow for contract upload and initialisation
24 lines
806 B
Rust
24 lines
806 B
Rust
// Copyright 2021 - Nym Technologies SA <contact@nymtech.net>
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
extern crate mixnet_contract;
|
|
|
|
use cosmwasm_schema::{export_schema, remove_schemas, schema_for};
|
|
use mixnet_contract::{ExecuteMsg, InstantiateMsg, MixNodeBond, QueryMsg};
|
|
use mixnet_contracts::state::State;
|
|
use std::env::current_dir;
|
|
use std::fs::create_dir_all;
|
|
|
|
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!(InstantiateMsg), &out_dir);
|
|
export_schema(&schema_for!(ExecuteMsg), &out_dir);
|
|
export_schema(&schema_for!(QueryMsg), &out_dir);
|
|
export_schema(&schema_for!(State), &out_dir);
|
|
export_schema(&schema_for!(MixNodeBond), &out_dir);
|
|
}
|