SecretNetwork
SecretNetwork copied to clipboard
Decide which types of cosmos messages we want to implement
Extend this and all subsequent usages, including adding them to cosmwasm-std in here and inside the enclave in here.
- [ ] x/auth
- [ ] x/authz
- [ ] MsgExecResponse
- [ ] MsgExec
- [ ] MsgRevoke
- [ ] x/bank
- [ ] MsgSend
- [ ] MsgMultiSend
- [ ] x/crisis
- [ ] x/distribution
- [ ] x/evidence
- [ ] x/feegrant
- [ ] MsgGrantAllowance
- [ ] MsgRevokeAllowance
- [ ] x/gov
- [ ] MsgSubmitProposal
- [ ] MsgVote
- [ ] MsgVoteWeighted
- [ ] MsgDeposit
- [ ] x/slashing
- [ ] MsgUnjail
- [ ] x/staking
- [ ] MsgCreateValidator
- [ ] MsgEditValidator
- [ ] MsgDelegate
- [ ] MsgBeginRedelegate
- [ ] MsgUndelegate
Doesn't this depend on what we do with the cosmwasm module? (which upgrade path we choose)
We're not touching the core cosmwasm module, we'll just add support for all of these messages in cosmwasm-std and in x/compute (where these messages get translated into proper cosmos messages).
Not sure if we'll implement all of these^, I just pasted all of them here for now.