Hey @spankratov,
My question is what’s the connection between owner_address and payment_address. How it happened that my name went to my payment_address? And what should I do now? Should I temporarily replace my owner_address to my payment_address and then transfer spankratov.id name to my actual owner_address?
A Blockstack wallet has two sets of keys: the owner keys, and the payment keys. The payment keys control the BTC that you pay to issue name registrations and name updates. The owner keys sign off on the name operations themselves. The idea is that you can have a 3rd party wallet (e.g. OpenBazaar, Onename, your existing Bitcoin wallet, a 3rd party name registrar) pay for your name operations while you retain ownership.
The keys themselves are encrypted in the wallet.json file. The owner_address
and payment_address
fields are pre-computed and stored in the wallet so you can run commands like blockstack names
or blockstack balance
without having to decrypt your keys. That’s why when you swapped the owner_address
and payment_address
fields, your names showed up in blockstack names
. However, if you try to issue a name update or transfer, it will fail since the owner_address
will not match the encrypted owner keys.
You can fix this by re-importing the wallet and swapping your owner private keys with your payment private keys. You can do this as follows:
- Run
blockstack wallet
to get your owner and payment private keys. Here’s an example:
$ blockstack wallet
Enter wallet password:
------------------------------------------------------------
Payment address: 3KcPG2zH1qJBf8ZmypUTwhVxUwNnqRWhsP
Owner address: 3AWmgj8XPhf5cYizfbpzKuYCYCXMQtmvQu
Data public key: 04681425fbde7a3cc1636098c727ce31315e30a5dff2cec02ebe0eb8ceaeb61fe50245ce0b363df00af8bae9a9dc1d26ac827d04fbea79e62e240504371234199d
Failed to look up balance
Names Owned:
3AWmgj8XPhf5cYizfbpzKuYCYCXMQtmvQu: []
------------------------------------------------------------
Payment private key info: 13e218818c5d9fdf2686cf1a88d8fdafa2a60eaf3798728c018f1722f276160301,a76b25ba8a6ae27611d4884aebffe3a6bb5593935272462a962e6a5cadbfd1ec01,bcc786f3c02fd55bdcd0c6a5485db7f24e6484be036c168de27feda13a1e7be301
Owner private key info: 10bb646e5efe625513ebab262054b32d7d5867f8446c60b80f96fa320da87d1001,a113e15e02ecc511af0fec9f3c0e40d0cdb1eb6de19a108820c894f0d43d734301,d6abc4e20be519aeeca9819952e20a3e4b614310b535605498e8e9f52e719d0001
Data private key info: 605727b68c290e67743829950bf506b41b8206800bc297d74add0310598ccc2801
------------------------------------------------------------
{
"data_privkey": "605727b68c290e67743829950bf506b41b8206800bc297d74add0310598ccc2801",
"data_pubkey": "04681425fbde7a3cc1636098c727ce31315e30a5dff2cec02ebe0eb8ceaeb61fe50245ce0b363df00af8bae9a9dc1d26ac827d04fbea79e62e240504371234199d",
"owner_address": "3AWmgj8XPhf5cYizfbpzKuYCYCXMQtmvQu",
"owner_privkey": {
"address": "3AWmgj8XPhf5cYizfbpzKuYCYCXMQtmvQu",
"private_keys": [
"10bb646e5efe625513ebab262054b32d7d5867f8446c60b80f96fa320da87d1001",
"a113e15e02ecc511af0fec9f3c0e40d0cdb1eb6de19a108820c894f0d43d734301",
"d6abc4e20be519aeeca9819952e20a3e4b614310b535605498e8e9f52e719d0001"
],
"redeem_script": "522102f91daa2a2239e7e22130862f33af33b0f8264bcb16a64cdc8cf30d84776cba2a2102042151e2d3a6f524d48aa6702fce3dfbd6f738438112528073965a7c6081923021028d7021c81dfeaf35df057908486f258bd6e258839189f26fb8e409b23c2186da53ae"
},
"payment_address": "3KcPG2zH1qJBf8ZmypUTwhVxUwNnqRWhsP",
"payment_privkey": {
"address": "3KcPG2zH1qJBf8ZmypUTwhVxUwNnqRWhsP",
"private_keys": [
"13e218818c5d9fdf2686cf1a88d8fdafa2a60eaf3798728c018f1722f276160301",
"a76b25ba8a6ae27611d4884aebffe3a6bb5593935272462a962e6a5cadbfd1ec01",
"bcc786f3c02fd55bdcd0c6a5485db7f24e6484be036c168de27feda13a1e7be301"
],
"redeem_script": "522102d7ba8c48bfefb3990c87d497fdc38885c78bbdf6c4bac042657963e6e91f7b222103c147036aed4e95ce38f016286c54408488c5ce67de204139600b9a8202f506422103b6103479f309f861a8f7889087ca121830d120ac4e27299145caac4dbc3ca63653ae"
}
}
You’ll see that my payment private keys are 13e218818c5d9fdf2686cf1a88d8fdafa2a60eaf3798728c018f1722f276160301,a76b25ba8a6ae27611d4884aebffe3a6bb5593935272462a962e6a5cadbfd1ec01,bcc786f3c02fd55bdcd0c6a5485db7f24e6484be036c168de27feda13a1e7be301
, and my owner private keys are 10bb646e5efe625513ebab262054b32d7d5867f8446c60b80f96fa320da87d1001,a113e15e02ecc511af0fec9f3c0e40d0cdb1eb6de19a108820c894f0d43d734301,d6abc4e20be519aeeca9819952e20a3e4b614310b535605498e8e9f52e719d0001
.
-
If you have any BTC on your current payment address, you should transfer your payment balance to your owner address. You can do this with blockstack withdraw OWNER_ADDRESS
. This way, when we swap your owner and payment keys below, you’ll still have your balance available.
-
Move your old wallet out of the way. This can be done as follows:
$ mv ~/.blockstack/wallet.json ~/.blockstack/wallet.json.old
- Run
blockstack import_wallet
with your owner private keys and payment private keys swapped. When prompted for your owner private keys, put in your payment private keys. When prompted for your payment private keys, put in your owner private keys.
Be sure to put 2,3,
before your keys, so blockstack
knows to send a 2-of-3 multisig transaction in the future. You can just paste this in front of your key list from blockstack wallet
.
Example:
$ blockstack import_wallet
Interactive prompt engaged. Press Ctrl+C to quit
Help for "import_wallet": Set the payment, owner, and data private keys for the wallet.
optional: Payment private key. M-of-n multisig is supported by passing the CSV string "m,n,pk1,pk2,...". ("payment_privkey"): 2,3,10bb646e5efe625513ebab262054b32d7d5867f8446c60b80f96fa320da87d1001,a113e15e02ecc511af0fec9f3c0e40d0cdb1eb6de19a108820c894f0d43d734301,d6abc4e20be519aeeca9819952e20a3e4b614310b535605498e8e9f52e719d0001
optional: Name owner private key. M-of-n multisig is supported by passing the CSV string "m,n,pk1,pk2,...". ("owner_privkey"): 2,3,13e218818c5d9fdf2686cf1a88d8fdafa2a60eaf3798728c018f1722f276160301,a76b25ba8a6ae27611d4884aebffe3a6bb5593935272462a962e6a5cadbfd1ec01,bcc786f3c02fd55bdcd0c6a5485db7f24e6484be036c168de27feda13a1e7be301
optional: Data-signing private key. Must be a single private key. ("data_privkey"): 605727b68c290e67743829950bf506b41b8206800bc297d74add0310598ccc2801
Enter new password:
Confirm new password:
{
"status": true
}
(I got the value for the last field, the Data-signing private key
, from blockstack wallet
).
This should swap your owner and payment keys, and you should see your name with blockstack names
now. Also, blockstack balance
should show you your current balance.
Hope this helps!