I am looking for cold web-wallet to manage transaction of my Copay wallet in time. I want to get web-API to receive information about my wallet without handling full bitcoind node.
I exported my Copay wallet without private key (perfect for cold wallet). I got following JSON:
{"iv":"(...)","v":1,"iter":10000,"ks":128,"ts":64,"mode":"ccm","adata":"","cipher":"aes","salt":"(...)","ct":"(...)"}
According to https://github.com/bitpay/copay/wiki I decrypted my wallet at https://bitwiseshiftleft.github.io/sjcl/demo/ . I received following result:
{
"coin": "btc",
"network": "livenet",
"xPubKey": "(...)",
"requestPrivKey": "(...)",
"requestPubKey": "(...)",
"publicKeyRing": [
{
"xPubKey": "(...)",
"requestPubKey": "(...)",
"copayerName": "me"
}
],
"walletId": "(...)",
"walletName": "(...)",
"m": 1,
"n": 1,
"walletPrivKey": "(...)",
"personalEncryptingKey": "(...)",
"sharedEncryptingKey": "(...)",
"copayerName": "me",
"entropySource": "(...)",
"derivationStrategy": "BIP44",
"account": 0,
"compliantDerivation": true,
"addressType": "P2PKH",
"addressBook": [
]
}
Is there any way to import that structures to BTC.com Bitcoin Wallet ?
I am looking for cold web-wallet to manage transaction of my Copay wallet in time. I want to get web-API to receive information about my wallet without handling full bitcoind node.
I exported my Copay wallet without private key (perfect for cold wallet). I got following JSON:
{"iv":"(...)","v":1,"iter":10000,"ks":128,"ts":64,"mode":"ccm","adata":"","cipher":"aes","salt":"(...)","ct":"(...)"}According to https://github.com/bitpay/copay/wiki I decrypted my wallet at https://bitwiseshiftleft.github.io/sjcl/demo/ . I received following result:
{ "coin": "btc", "network": "livenet", "xPubKey": "(...)", "requestPrivKey": "(...)", "requestPubKey": "(...)", "publicKeyRing": [ { "xPubKey": "(...)", "requestPubKey": "(...)", "copayerName": "me" } ], "walletId": "(...)", "walletName": "(...)", "m": 1, "n": 1, "walletPrivKey": "(...)", "personalEncryptingKey": "(...)", "sharedEncryptingKey": "(...)", "copayerName": "me", "entropySource": "(...)", "derivationStrategy": "BIP44", "account": 0, "compliantDerivation": true, "addressType": "P2PKH", "addressBook": [ ] }Is there any way to import that structures to BTC.com Bitcoin Wallet ?