Skip to content

Commit

Permalink
fix: add cw20 receive schema for auction (#596)
Browse files Browse the repository at this point in the history
  • Loading branch information
SlayerAnsh authored Nov 3, 2024
1 parent cc51e26 commit ec73e3e
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ use std::env::current_dir;

use cosmwasm_schema::{export_schema_with_title, schema_for, write_api};

use andromeda_non_fungible_tokens::auction::{Cw721HookMsg, ExecuteMsg, InstantiateMsg, QueryMsg};
use andromeda_non_fungible_tokens::auction::{
Cw20HookMsg, Cw721HookMsg, ExecuteMsg, InstantiateMsg, QueryMsg,
};

fn main() {
let mut out_dir = current_dir().unwrap();
Expand All @@ -13,4 +15,5 @@ fn main() {
execute: ExecuteMsg,
};
export_schema_with_title(&schema_for!(Cw721HookMsg), &out_dir, "cw721receive");
export_schema_with_title(&schema_for!(Cw20HookMsg), &out_dir, "cw20receive");
}

0 comments on commit ec73e3e

Please sign in to comment.