Creating a Multisig

The IOV Name Service supports multisig account

Once you have created your addresses, you can create a multisig address from multiple addresses with the flags --multisig and --multisig-threshold

iovnscli keys add ben_multikey --multisig=benkeys,benkeys2,benkeys3 --multisig-threshold=2 

Flag

Description

--multisig

the list of addresses which can sign the multisig

--multisig-threshold

the minimum number of signatures required to validate a multisignature

You can check that the multisig has been created correctly by showing it

iovnscli keys show ben_multikey
{
  "name": "ben_multikey",
  "type": "multi",
  "address": "star124etu3nt55t039ytg7ft72nprum52f9wyhljf7",
  "pubkey": "starpub1ytql0csgqgfzd666axrjzq567k7jdjg9svkp5794y28ldpxzwdwj293gzk2s60e96at3r3cu0sfzd666axrjzq63tejrwz2dy5yu0vwf9ck300l2qvsug26tn7vvjcwlj9gc3vfnq5fzd666axrjzqk07kg542cfj7rzjp8ntrew9nw5x2424qrlngq886xef889t6p9rg4f5ww3"
}

Last updated