Multisig json

Someone know what we should modify to use now a multisig backup file ?
I try to add but return me this error : “Error is : Invalid format: Each item must have a string “address” and an object “meta””

I try to generate a new one but the new file return an error too.

Thank you

Assuming the json looks like …

[
  "6XXxx",
  "6XXxx",
  "6XXxx"
]

… at a minimum you can modify it like so …

[
  {"address":"6XXxx", "meta":{}},
  {"address":"6XXxx", "meta":{}},
  {"address":"6XXxx", "meta":{}}
]

If you want to specify the account name you can add "name":"Account1" to the meta.

If you want to specify “only this network” you can add "genesisHash":"0x50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa" to the meta as well …
e.g.

[
  {"address":"6XXxx", "meta":{"genesisHash":"0x50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", "name":"Account1"}},
  {"address":"6XXxx", "meta":{"genesisHash":"0x50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", "name":"Account2"}},
  {"address":"6XXxx", "meta":{"genesisHash":"0x50dd5d206917bf10502c68fb4d18a59fc8aa31586f4e8856b493e43544aa82aa", "name":"Account3"}}
]

… but those can also be done via the UI.

Feel free to confirm the hash at Blockchain Explorer

1 Like