暗号化されていないアドレスを作成するにはどうすればよいですか?
1 回答
- 投票
-
- 2019-02-21
メインネットでは、その方法は次のとおりです.
- 存在しないノードでキーを作成することから始めます(ここでは
xxx
は存在しません!):
tezos-client -A xxx gen keys for_stackexchange
いくつかのエラーメッセージが表示され、それ以上は何も表示されません.実際、キーは作成されました.
- もう一度お電話ください:
tezos-client -A xxx gen keys for_stackexchange Error: The secret_key alias for_stackexchange already exists. The current value is unencrypted:edsk43pBvh7zPgiGWSG3XSHybCqdQV7XRosqcGPLA9TDBc5ens7oP4.
- 関連付けられたアドレスを表示します:
tezos-client show address for_stackexchange -S Warning: Failed to acquire the protocol version from the node Rpc request failed: - meth: GET - uri: http://localhost:8732/chains/main/blocks/head/metadata - error: Unable to connect to the node: "Connection refused" Hash: tz1Rpm5To3JT8vpqbt681EMuxEaM4tL2MvRi Public Key: edpkvPpcAmrCFUiwBPZ4SGEsDXQstVmLHJoXKQURE2ANXem7zQH2e9 Secret Key: unencrypted:edsk43pBvh7zPgiGWSG3XSHybCqdQV7XRosqcGPLA9TDBc5ens7oP4
On mainnet, here is how to do it:
- start by creating the key with a non-existent node (here
xxx
does not exist !):
tezos-client -A xxx gen keys for_stackexchange
It will display some error messages and say nothing more. In fact, the key was created.
- call it again:
tezos-client -A xxx gen keys for_stackexchange Error: The secret_key alias for_stackexchange already exists. The current value is unencrypted:edsk43pBvh7zPgiGWSG3XSHybCqdQV7XRosqcGPLA9TDBc5ens7oP4.
- display the associated address:
tezos-client show address for_stackexchange -S Warning: Failed to acquire the protocol version from the node Rpc request failed: - meth: GET - uri: http://localhost:8732/chains/main/blocks/head/metadata - error: Unable to connect to the node: "Connection refused" Hash: tz1Rpm5To3JT8vpqbt681EMuxEaM4tL2MvRi Public Key: edpkvPpcAmrCFUiwBPZ4SGEsDXQstVmLHJoXKQURE2ANXem7zQH2e9 Secret Key: unencrypted:edsk43pBvh7zPgiGWSG3XSHybCqdQV7XRosqcGPLA9TDBc5ens7oP4
alphanettezos-clientで、
tezos-client gen keys <address>
は暗号化されていないアドレスを作成し、暗号化されたアドレスを作成するには--encrypted
フラグが必要です.ただし、メインネットtezos-clientで、
tezos-client gen keys <address>
を実行すると、新しいパスワードが要求され、暗号化されたアドレスが作成されます.メインネットのtezos-clientを介して暗号化されていないアドレスを作成するにはどうすればよいですか?