kubiklabs / wasmkit

Cosmwasm dev tooling framework
https://wasmkit.kubiklabs.xyz/
MIT License
6 stars 2 forks source link

Need checks for instantiateTag checkpoints after constructor #42

Open udit-gulati opened 10 months ago

udit-gulati commented 10 months ago
  1. Currently the instantiateTag checkpoints are matches only at the Contract() constructor, read part.
  2. This read of checkpoints need to be done even when there is a deploy or init.
  3. This causes multiple contracts with the same underlying wasm to have multiple CodeIDs and only one tag written to checkpoints when these are done in one script where all constructors are called first and then deploy(), init() is called for each contract afterwards.