¿Cómo puedo crear direcciones sin cifrar?
1 respuesta
- votos
-
- 2019-02-21
En la redprincipal,aquí seexplica cómo hacerlo:
- comiencepor crear la clave con unnodoinexistente (aquí
xxx
noexiste!):
tezos-client -A xxx gen keys for_stackexchange
Mostrará algunosmensajes deerror yno diránadamás. De hecho,se creó la clave.
- llámelo denuevo:
tezos-client -A xxx gen keys for_stackexchange Error: The secret_key alias for_stackexchange already exists. The current value is unencrypted:edsk43pBvh7zPgiGWSG3XSHybCqdQV7XRosqcGPLA9TDBc5ens7oP4.
- mostrar la dirección asociada:
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
-
Graciasporesta respuesta.El "xxx",¿qué significaeso?Thanks for this answer. The "xxx" what does that stand for?
- 0
- 2019-09-04
- Vindberg
-
@Vindberg Puede usarlotal cual,`xxx`.Es unmarcador deposiciónpara la IP de unnodoinexistente.@Vindberg You can use it as is, `xxx`. It's a placeholder for the IP of a non existent node
- 0
- 2019-12-09
- Gaia
Enmi alphanettezos-client,
tezos-client gen keys <address>
crea una direcciónnoencriptada y requiere lamarca--encrypted
para crear una direcciónencriptada.Peroen mainnettezos-client,alejecutar
tezos-client gen keys <address>
solicita unanueva contraseña y crea una direcciónencriptada.¿Cómopuedo crear direccionesno cifradas através demainnettezos-client?