Como adicionar e transferir de contas originadas na carteira CLI
2 respostas
- votos
-
- 2019-03-02
Para adicionar uma conta originadapara a carteira CLI:
tezos-client remember contract <new alias> <kt1...>
Verifique se a conta originadafoi adicionada com êxito ao cliente:
tezos-client list known contracts
Mostrar saldo da conta originada:
tezos-client get balance for <new alias>
Paratransferir da conta originada,a chave secreta da contaimplícita (TZ1 ...) deve ser conhecidapelo cliente:
tezos-client import secret key <new alias> <secret key>
Entãotransferências de contas originadas são semelhantes àstransferênciaspara contasimplícitas:
tezos-client transfer <amount> from <alias of kt1...> to <destination PKH>
Observe queessesexemplos sãopara casos de uso quando você criou as contasimplícitase originadasem outra carteirae deseja usaressas contastambém dentro do Tezos-Client.
Se você quiser criar uma conta originada de uma contaimplícita com o Tezos-Client,use o comandofornecidopor @cousinit.
To add an originated account to the cli wallet:
tezos-client remember contract <new alias> <kt1...>
Check if the originated account was successfully added to the client:
tezos-client list known contracts
Show balance of the originated account:
tezos-client get balance for <new alias>
In order to transfer from the originated account, the secret key of the implicit account (tz1...) must be known by the client:
tezos-client import secret key <new alias> <secret key>
Then transfers from originated accounts are similar to transfers for implicit accounts:
tezos-client transfer <amount> from <alias of kt1...> to <destination PKH>
Note that these examples are for use cases when you created the implicit and originated accounts in another wallet and you want to use these accounts also within the tezos-client.
If you want to create an originated account from an implicit account with the tezos-client, then use the command given by @cousinit.
-
- 2019-02-09
Aotrabalhar com o cliente de linha de comando Tezos é útil saber que vocêpode dar contas um aliasparafacilitar ainserção de comandos:
client add address <new alias> <public key hash to which alias applies>
Para criar uma conta originadapara um determinado alias TZ1,vocêprecisaestar ciente de queelegravará 0,257 xtz,além deespecificar umataxapara a operação.
Em vez defazê-loem váriasetapase pagar váriastaxas,vocêpodefazertudoem um comando. Supondo que você deseja que a conta originada seja capaz de delegar seu valor a umpadeiro,então vocêprecisará sinalizá-lo como delegado ou adicionar o delegadonomomentoem que você a cria.
O seguinte comando criará uma conta originadapara a conta TZ1especificadae transferiráfundos de 1000XTZparaele,marquê-lo como delegávele atribuir seu delegadoenquantopaga umataxa única de 0,002 xtzmais você verá umextra 0,257 da conta TZ1
client originate account <enter an alias for the new account> for <alias or pkh of your tz1> transferring 1000.0 from <alias or pkh of your tz1> --delegate <alias or pkh of the account to which you want to delegate your funds> --fee 0.002
when working with the Tezos command line client it's useful know that you can give accounts an alias to make it easier to enter commands:
client add address <new alias> <public key hash to which alias applies>
To create an originated account for a given tz1 alias, you need to be aware that it will burn 0.257 xtz, plus you need to specify a fee for the operation.
Rather than do it in multiple steps and pay multiple fees, you can do it all in one command. Assuming you want the originated account to able to delegate its amount to a baker, then you either need to flag it as delegatable or add the delegate at the time you create it.
The following command will create an originated account for the specified tz1 account, and transfer 1000xtz funds to it, mark it as delegatable, and assign its delegate while paying a single fee of 0.002 xtz PLUS you will see an extra 0.257 burned out of the tz1 account
client originate account <enter an alias for the new account> for <alias or pkh of your tz1> transferring 1000.0 from <alias or pkh of your tz1> --delegate <alias or pkh of the account to which you want to delegate your funds> --fee 0.002
-
Eueditei apergunta originalparaesclarecer o significado,como queria saber como uma conta KT1pode simplesmente sermonitoradae como sepodegastar com osprópriosendereços KT1 quando a chaveprivadapara ogerenciador (TZ1)estiver disponível.Eu aprecio sua respostaembora.I edited the original question to clarify the meaning, as I wanted to know how a kt1 account can simply be monitored and how one can spend from own kt1 addresses when the private key for the manager (tz1) is available. I appreciate your answer though.
- 1
- 2019-02-09
- cryptodad
No Manual do Cliente Tezos,encontro apenas comandospara obter ogerentee o saldo de uma conta originada (contrato).Comoessa contapode ser adicionada ao clienteparamonitorar os saldos (como
add address <new> <src>
paraendereços TZ1)e,quando a chave secretapara ogerenciador (endereço TZ1)está disponível,comogastar comisso?