Skip to content

Commit

Permalink
Merge pull request #502 from CosmWasm/480-reply-parsing-helpers
Browse files Browse the repository at this point in the history
Parse reply helpers
  • Loading branch information
maurolacy authored Oct 26, 2021
2 parents bc7acc2 + a442d7c commit ad8ab33
Show file tree
Hide file tree
Showing 5 changed files with 526 additions and 5 deletions.
9 changes: 5 additions & 4 deletions Cargo.lock

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

1 change: 1 addition & 0 deletions packages/cw0/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,4 @@ thiserror = { version = "1.0.21" }

[dev-dependencies]
cw-storage-plus = { path = "../../packages/storage-plus", version = "0.10.0" }
prost = "0.9"
2 changes: 2 additions & 0 deletions packages/cw0/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,13 @@ mod balance;
mod event;
mod expiration;
mod pagination;
mod parse_reply;
mod payment;

pub use pagination::{
calc_range_end, calc_range_start, calc_range_start_string, maybe_addr, maybe_canonical,
};
pub use parse_reply::{parse_reply_execute_data, parse_reply_instantiate_data};
pub use payment::{may_pay, must_pay, nonpayable, one_coin, PaymentError};

pub use crate::balance::NativeBalance;
Expand Down
Loading

0 comments on commit ad8ab33

Please sign in to comment.