@@ -21,7 +21,7 @@ Cosmos SDK multisig, is that it aggregates the signatures on chain, with
2121visible proposals (like ` x/gov ` in the Cosmos SDK), rather than requiring
2222signers to share signatures off chain.
2323
24- ## Init
24+ ## Instantiation
2525
2626The first step to create such a multisig is to instantiate a cw4 contract
2727with the desired member set. For now, this only is supported by
@@ -31,8 +31,8 @@ with the desired member set. For now, this only is supported by
3131If you create a ` cw4-group ` contract and want a multisig to be able
3232to modify its own group, do the following in multiple transactions:
3333
34- * init cw4-group, with your personal key as admin
35- * init a multisig pointing to the group
34+ * instantiate cw4-group, with your personal key as admin
35+ * instantiate a multisig pointing to the group
3636 * ` AddHook{multisig} ` on the group contract
3737 * ` UpdateAdmin{multisig} ` on the group contract
3838
@@ -43,7 +43,7 @@ self-deploying contract on-chain). (TODO: document better).
4343When creating the multisig, you must set the required weight to pass a vote
4444as well as the max/default voting period. (TODO: allow more threshold types)
4545
46- ## Handle Process
46+ ## Execution Process
4747
4848First, a registered voter must submit a proposal. This also includes the
4949first "Yes" vote on the proposal by the proposer. The proposer can set
0 commit comments