From 2b8100daa12a64150c6467aa0261b1742d427b02 Mon Sep 17 00:00:00 2001 From: Matias Alejo Garcia Date: Wed, 18 Feb 2015 03:58:06 -0300 Subject: [PATCH] Update README.md --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index ddfb85e..9ac8ef4 100644 --- a/README.md +++ b/README.md @@ -89,4 +89,11 @@ A Multisig HD Wallet Service, with minimun server trust. # Export Format Exporting a wallet will expose copayer's extended private key and other's copayers extended public keys. This information is enough to extract funds from the wallet, given the required quorum is meet. + + The format is: + `["(copayer extender private key)", "required signatured", "(array of other copayer's extended public keys, excluding this copayer)"]` + Example, of a 1-2 wallet: + ``` + ["tprv8ZgxMBicQKsPds3YbNWdCcsvxhnpjEecCJv1pBPCLEekwhwWNqpRwA283ASepgTnwAXhu4vZPeRAiX1CpPcjcY6izWSC3NVqyk1gWhF8xWy",1,["tpubD6NzVbkrYhZ4Y1DE1F6s4NWbLjwQSReggiksexkJ7R7p4tCKH1vmu7G9TafmkGs252PMrs5j6xz7uSiDLbUsE43eHbRa5wCauXqhJnhN9MB"]] +```