Help needed to create MultiSig Wallets for DAO opperations

Can anyone point me to some material that will help me a create Multi Signature wallet/wallets?

@georgem1976 wrote a nice piece on multi-sig

https://apexpool.info/cardano-multi-signature-addresses/

Sweet thank you my dude, ill be diving in soon!

1 Like

Yes, fantastic article.

I wonder if @georgem1976 can explain how to do a 2 of 3 multi-sig address?

According to https://github.com/input-output-hk/cardano-node/blob/master/doc/reference/simple-scripts.md#type-atleast it should be:

{
  "type": "atLeast",
  "required": 2,
  "scripts":
  [
    {
      "type": "sig",
      "keyHash": "2f3d4cf10d0471a1db9f2d2907de867968c27bca6272f062cd1c2413"
    },
    {
      "type": "sig",
      "keyHash": "f856c0c5839bab22673747d53f1ae9eed84afafb085f086e8e988614"
    },
    {
      "type": "sig",
      "keyHash": "b275b08c999097247f7c17e77007c7010cd19f20cc086ad99d398538"
    },
  ]
}

(Actually, it’s exactly their example, because it already was 2 of 3.)

1 Like