Первым делом создаём аккаунт:
wallet_account_create <account_name> [private_data]
Параметр [private_data] для чего нужен?
It is optional data that is stored only in your wallet. Not necessary.
Далее регистрируем:
wallet_account_register <account_name> <pay_from_account> [public_data] [delegate_pay_rate] [account_type]
Параметр[public_data] для чего нужен?
Параметр[delegate_pay_rate]?
И значения может принимать этот параметр этот параметр[account_type]?
"Public data" is arbitrary data associated with your account. For now you can just put an empty object like "{}".
"Delegate pay rate" is how much you want to get paid as a percent of maximum pay. 100% is for delegates that also contribute some other kind of work. 3% is typical for delegates that do nothing but produce blocks.
"account type" is whether it is a "public" account or an account where transactions are hidden.
И как должен выглядеть пример команды со всеми параметрами?
If you want a normal 3% pay delegate you should do:
wallet_account register your-account-name your-account-name {} 3
Для регистрации потребуется равной той , что указана на сайте : http://www.bitsharesblocks.com/home " 100% оплаченная регистрация: 59,881.19 BTS". Эта сумма меняется?
For a 3% delegate you would pay .03 * ~59,000. This is equal to 2 weeks of delegate pay, it changes if there are a lot of activity on the network.
И для чего нужны эти команды?
wallet_approve_delegate <delegate_name> [approved]
wallet_delegate_set_block_production <delegate_name> <enabled>
wallet_delegate_set_transaction_scanning <enabled>
wallet_delegate_withdraw_pay <delegate_name> <to_account_name> <amount_to_withdraw> [memo]
#1 sets a flag in your wallet so that you will vote for that delegate when you transfer funds.
#2 makes it so your delegate produces blocks
#3 makes it so that your wallet scans transactions even when it is producing blocks (this can slow your wallet down sometimes, but you need it to see transfers to your account)
#4 withdraws your delegate pay (block rewards)