Skip to content

Commit

Permalink
Merge pull request #36 from AbstractSDK/buckram/template-counter
Browse files Browse the repository at this point in the history
Upgrade to counter
  • Loading branch information
CyberHoward authored Dec 6, 2023
2 parents 4049f47 + 9aa5481 commit 9da4fd3
Show file tree
Hide file tree
Showing 14 changed files with 453 additions and 22 deletions.
2 changes: 1 addition & 1 deletion examples/schema.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::fs::create_dir_all;

fn main() {
let mut out_dir = current_dir().unwrap();
out_dir.push("../schema");
out_dir.push("schema");
create_dir_all(&out_dir).unwrap();
remove_schemas(&out_dir).unwrap();

Expand Down
2 changes: 1 addition & 1 deletion examples/test-local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ fn main() -> anyhow::Result<()> {
app.deploy(version)?;

// Install app
account.install_app(app, &AppInstantiateMsg {}, None)?;
account.install_app(app, &AppInstantiateMsg { count: 0 }, None)?;

assert_that!(account.manager.is_module_installed(APP_ID).unwrap()).is_true();
Ok(())
Expand Down
166 changes: 166 additions & 0 deletions schema/execute_msg.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

52 changes: 52 additions & 0 deletions schema/instantiate_msg.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

38 changes: 38 additions & 0 deletions schema/migrate_msg.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion schema/module-schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

98 changes: 98 additions & 0 deletions schema/query_msg.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 9da4fd3

Please sign in to comment.