Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 21 additions & 6 deletions docs/btcli.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,28 +397,43 @@ Delegate TAO from the coldkey balance to the hotkey staking account of a delegat
```bash
btcli root delegate
```
<!--

### Set delegate take

```bash
btcli root set_delegate_take [OPTIONS]
btcli root set_take [OPTIONS]
```

Sets the take percentage of the delegate.

To set the delegate take at 10%:

```bash
btcli root set_delegate_take --take 0.1
btcli root set_take --take 0.1
```

The `--take` value must be a floating point number between `0` and `1`.
The `--take` value must be a floating point number between `0` and `0.18`.

To use a specific wallet:

```bash
btcli root set_delegate_take --wallet.name my_wallet --wallet.hotkey my_hotkey --take 0.1
btcli root set_take --wallet.name my_wallet --wallet.hotkey my_hotkey --take 0.1
```
-->

- **Allowed `take` values**: Ensure the `--take` value is within the range of `0` to `0.18`.
- **`wallet.name` and `wallet.hotkey`**: If not specified, the command will prompt for the wallet name and hotkey.

Examples:

1. Set delegate take to 10%:
```bash
btcli root set_take --take 0.1
```

2. Set delegate take to 10% using a specific wallet:
```bash
btcli root set_take --wallet.name my_wallet --wallet.hotkey my_hotkey --take 0.1
```

### Undelegate Tao

Expand Down