cw-orchestrator
cw-orchestrator copied to clipboard
Simplify the derived function arguments
This Simplify the cw-orch contract function derives.
The functions do not take their argument types directly but an argument of the form Into<type>
This allows for simpler interactions
Downside
The types have to be known when specifying the argument.
This is specifically bad when using collect
. They should be changed to collect::Vec<_>()
for instance
Depends on https://github.com/AbstractSDK/cw-orchestrator/pull/398