any way to just proxy my stake to a hotwallet?
RE: Secure, offline voting tool for EOS Block Producer nodes
You are viewing a single comment's thread from:
Secure, offline voting tool for EOS Block Producer nodes
Secure, offline voting tool for EOS Block Producer nodes
any way to just proxy my stake to a hotwallet?
You definitely could do this @ash, but this requires additional steps (such as creating new account), and because we aimed for safe & simple solution for most of the users, we decided to not implement that into our voting tool.
If you are technical enough, I wrote some instructions how to achieve that via
cleos
running underdocker
for simplicity.BEWARE, AS THIS IS NOT AN OFFLINE SOLUTION IF THERE IS MALICIOUS SOFTWARE ON YOUR COMPUTER YOUR PRIVATE KEYS COULD BE THEORETICALLY STOLEN.
If you desire to take your own risk, do as it follows:
cleos <endpoint_adress>
prefix. You can throw container away when you're done.docker run -it eosio/eos:v1.0.1
wallet create
wallet open
wallet unlock
wallet import <your_cold_wallet_account_private_key>
create key
system newaccount <your_cold_wallet_account_name> <your_hot_wallet_account_name> <hot_wallet_owner_key> <hot_wallet_active_key> --stake-net '0.25 EOS' --stake-cpu '0.25 EOS' --buy-ram-kbytes 8
system regproxy <your_hot_wallet_account_name>
system voteproducer proxy <your_cold_wallet_account_name> <your_hot_wallet_account_name>
As I said before, it requires additional steps. We might consider making it safer and simpler in future, but I don't want to make any promises just now.
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit
thanks, too technical, but may help other projects to add it :)
Downvoting a post can decrease pending rewards and make it less visible. Common reasons:
Submit