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
There are a couple of usecases we need to solve for message signing from the runners perspective:
Messages broadcasted to other chains (in this case Terra), need to be signed. We need a way to sign a CosmWasmExecute message from the runner’s perspective.
We also need to sign messages in the CosmWasmExecuteMsg format that we are signing to get 2/3 of signatures back.
And also, we need to sign the message to update the validator set to get a network concensus.
Done when
We can sign any arbitrary sdk.Msg and also verify signatures
We allow user to load keyring path in which they have their terra keys stored which is going to be used for message signing.
The text was updated successfully, but these errors were encountered:
We allow user to load keyring path in which they have their terra keys stored which is going to be used for message signing.
I had to create this Init in our repo instead in the lens repo because lens repo is hardcoding to something that does not work with existing keyrings.
Background
There are a couple of usecases we need to solve for message signing from the runners perspective:
Done when
The text was updated successfully, but these errors were encountered: