Come aggiungere e trasferire da account originati nel portafoglio CLI
2 risposta
- voti
-
- 2019-03-02
Per aggiungere un account originato alportafoglio cli:
tezos-client remember contract <new alias> <kt1...>
Controlla se l'account originato è stato aggiunto correttamente al cliente:
tezos-client list known contracts
Mostra saldo del conto originato:
tezos-client get balance for <new alias>
Pertrasferire dall'account originato,la chiave segreta dell'accountimplicito (tz1 ...) deveesserenota al cliente:
tezos-client import secret key <new alias> <secret key>
Quindii trasferimenti da conti originati sono simili aitrasferimentiper contiimpliciti:
tezos-client transfer <amount> from <alias of kt1...> to <destination PKH>
Nota che questiesempi sonoper casi d'uso quando hai creatogli accountimplicitie originatiin un altroportafoglioe vuoi usare questi account anche all'interno del clienttezos.
Se vuoi creare un account originato da un accountimplicito contezos-client,usail comando dato da @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
quando si lavora conil client della riga di comando Tezos è utile sapere che èpossibilefornire agli account un aliasper semplificare l'immissione dei comandi:
client add address <new alias> <public key hash to which alias applies>
Per creare un account originatoper un dato aliastz1,deviessere consapevole chebrucerà 0,257 xtz,inoltre devi specificare unatariffaper l'operazione.
Invece difarloin piùpassaggie pagarepiù commissioni,puoifaretuttoin un unico comando. Supponendo che si desideri che l'account originatopossa delegareilproprioimporto a unpanettiere,ènecessario contrassegnarlo come delegabile o aggiungereil delegato almomento della creazione.
Il seguente comando creerà un account originatoper l'accounttz1 specificatoe trasferiràfondi 1000xtz adesso,lo contrassegnerà come delegabilee assegneràil suo delegatopagando una singola commissione di 0,002 xtz PLUS vedrai unextra 0,257bruciato dell'accounttz1
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
-
Homodificato la domanda originaleper chiarirneil significato,poiché volevo sapere come un account kt1puòessere semplicementemonitoratoe come sipuò spendere daipropriindirizzi kt1 quando è disponibile la chiaveprivataperilgestore (tz1).Apprezzo comunque latua risposta.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
Nelmanuale del client Tezostrovo solo comandiper ottenereilgestoree il saldoper un account originato (contratto).Come sipuò aggiungere un account di questotipo al clientpermonitorarei saldi (come
add address <new> <src>
pergliindirizzitz1)e,quando la chiave segretaperilmanager (indirizzotz1)è disponibile,come spendere daesso?