You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This has come up a few times and it seems to not be so usable currently. Most code has Deps or DepsMut, which contains &QuerierWrapper. However, the helpers want a Querier only to later cast it to a QuerierWrapper.
That plus the generic Q: Querier condition makes it very hard to use. Let's make these easier to use. (All of them, not just the cw721 in the example)
The text was updated successfully, but these errors were encountered:
This has come up a few times and it seems to not be so usable currently. Most code has
Deps
orDepsMut
, which contains&QuerierWrapper
. However, the helpers want aQuerier
only to later cast it to aQuerierWrapper
.That plus the generic
Q: Querier
condition makes it very hard to use. Let's make these easier to use. (All of them, not just the cw721 in the example)The text was updated successfully, but these errors were encountered: