Contract interface and helpers for batching executions? #1814
Replies: 2 comments 3 replies
-
This has been discussed quite a bit in CosmWasm/wasmd#72. I think at the end of the day the big question is always: what do you really save compared to individual calls? We have not found convincing arguments other than network roundtrips which can be handled by batching Tendermint RPC requests. In this particular case, I think you still want a fresh Wasm instance between the messages to ensure no memory is shared between the calls. |
Beta Was this translation helpful? Give feedback.
-
spend couple hours to do batch tx on osmosis from cli as per https://docs.cosmos.network/main/modules/auth#sign-batch . seem osmosis has old version of this. just does not work. so question why ? because people do not maintain good cli tools, as option. |
Beta Was this translation helpful? Give feedback.
-
Sometimes I have to call 4-5 times one contract execute to setup a lot of configs.
Is there a way people do to send one execute which does executes many messages?
I see options to implement something in contract. May be there is some standard way?
Or use some cosmos batching (non portable) PB messages.
Beta Was this translation helpful? Give feedback.
All reactions