Skip to content

Commit

Permalink
Merge pull request #2 from hard-nett/main
Browse files Browse the repository at this point in the history
major overhaul
  • Loading branch information
discoverdefiteam authored Oct 31, 2023
2 parents da285ff + 6819920 commit 5c86612
Show file tree
Hide file tree
Showing 5 changed files with 625 additions and 837 deletions.
3 changes: 1 addition & 2 deletions contracts/headstash-contract/examples/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ use std::fs::create_dir_all;

use cosmwasm_schema::{export_schema, remove_schemas, schema_for};
use headstash_contract::msg::{
ConfigResponse, ExecuteMsg, InstantiateMsg, IsClaimedResponse, LatestStageResponse,
ConfigResponse, ExecuteMsg, InstantiateMsg, IsClaimedResponse,
MerkleRootResponse, QueryMsg,
};

Expand All @@ -16,7 +16,6 @@ fn main() {
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!(LatestStageResponse), &out_dir);
export_schema(&schema_for!(MerkleRootResponse), &out_dir);
export_schema(&schema_for!(IsClaimedResponse), &out_dir);
export_schema(&schema_for!(ConfigResponse), &out_dir);
Expand Down
Loading

0 comments on commit 5c86612

Please sign in to comment.