巴比伦升级后如何转移KT1?
-
-
我只是想知道使用哪个tz1帐户有关系吗?即应该将资金转移到新的tz1帐户吗?I’m just wondering does it matter which tz1 account is used? Ie should the funds be transferred to a fresh tz1 account?
- 0
- 2019-10-22
- leo
-
1 个回答
- 投票数
-
- 2019-10-22
这仍然可以从终端使用普通的
./tezos-client transfer <amount> from <src> to <dst>
命令,并有几个重要警告:- 当前在巴比伦回归,因为该命令期望的值是
amount
(金额)使用mutez
(而不是tez
),但仅在从KT1
帐户进行转帐时使用.例如,如果要发送1.5 tez
,则输入的金额为1500000
.编辑:此后已修复. - 经理
tz1
帐户中必须有足够的资金来支付任何交易费用.
将资金从您的
KT1
帐户转移到其经理tz1
帐户中也可以完成,例如,在 Galleon Wallet v0.9.0b:- 打开或恢复您的钱包.
- 在侧边栏中选择您的
KT1
帐户. - 选择
Manage Delegation
标签. - 使用
Withdraw
选项将资金从KT1
发送到经理tz1
帐户.
钱包UI可以正确输入金额,但是
tz1
帐户仍需要有足够的资金来支付任何交易费用.This can still be done from the terminal using the normal
./tezos-client transfer <amount> from <src> to <dst>
command, with a couple of important caveats:- There is currently a regression in Babylon in that this command expects the value for
amount
to be inmutez
rather than intez
, but only when transferring from aKT1
account. For example, if you want to send1.5 tez
you would enter the amount as1500000
. EDIT: This has since been fixed. - The manager
tz1
account must have enough funds in it to cover any transaction fees.
Removing funds from your
KT1
account to its managertz1
account can also be accomplished, e.g., in the Galleon Wallet v0.9.0b by following these steps:- Open or restore your wallet.
- Select your
KT1
account on the sidebar. - Select the
Manage Delegation
tab. - Use the
Withdraw
option to send funds from theKT1
to the managertz1
account.
The wallet UI takes care of entering the amount correctly, but the
tz1
account still needs to have enough funds to cover any transaction fees.-
嗨,我正在尝试使用最新版本的Galleon将所有XTZ从KT1撤回到tz1,但是交易永远保持"待定"状态,并且从未记录在区块链中.有什么办法摆脱XTZ吗?Hi, I'm trying to use latest version of Galleon to widhraw all XTZ from KT1 to tz1, but the transaction stays in "pending" forever and is never recorded in the blockchain. Any way to get out the XTZ?
- 0
- 2020-03-22
- Joao Pereira
对于巴比伦协议升级,所有KT1帐户委托都转换为智能合约manager.tz .
如果我想转出KT1帐户,有什么方法可以转入tz帐户?是否有支持此迁移的钱包?您如何使用带有节点的
tezos-client
进行此传输?