You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Keys for kaspa use the derivation path `m/44'/111111'/<account>'/<type>/<index>`.
50
+
Keys for kaspa normally use the derivation path `m/44'/111111'/<account>'/<type>/<index>`. This command will accept these as inputs:
51
+
-`m/44'/111111'`
52
+
-`m/44'/111111'/<account>'`
53
+
-`m/44'/111111'/<account>'/<type>`
54
+
-`m/44'/111111'/<account>'/<type>/<index>`
51
55
52
56
| CData Part | Description |
53
57
| --- | --- |
54
58
|`purpose`| Must be `44'` or `80000002c`|
55
59
|`coin_type`| Must be `111111'` or `8001b207`|
56
-
|`account`| Current wallets all use `80000000` for `0'` for default account but any value is accepted |
57
-
|`type`| Either `00000000` for Receive Address or `00000001` for Change Address |
58
-
|`index`| Any value from `00000000` to `11111111`|
60
+
|`account`| Current wallets all use `80000000` (aka. `0'`) for default account but any value from `00000000` to `11111111` is accepted if passed |
61
+
|`type`| Current wallets use either `00000000` for Receive Address or `00000001` for Change Address, but any value from `00000000` to `11111111` is accepted if passed |
62
+
|`index`| Any value from `00000000` to `11111111` if passed |
63
+
64
+
If you want to generate addresses using a root public key,
59
65
60
66
### Response
61
67
@@ -171,8 +177,7 @@ Transactions signed with ECDSA are currently not supported.
171
177
| 0xB008 |`SW_SIGNATURE_FAIL`| Signature of raw transaction failed |
172
178
| 0xB009 |`SW_WRONG_BIP32_PURPOSE`|`Purpose` must be `44'`|
173
179
| 0xB00A |`SW_WRONG_BIP32_COIN_TYPE`|`Coin Type` must be `111111'`|
174
-
| 0xB00B |`SW_WRONG_BIP32_TYPE`|`Type` passed is not valid. Must be either `0` for `Receive` or `1` for `Change`|
175
-
| 0xB00C |`SW_WRONG_BIP32_PATH_LEN`| Path length must be `5`|
180
+
| 0xB00B |`SW_WRONG_BIP32_PATH_LEN`| Path length must be `5`|
176
181
| 0xB010 |`SW_MESSAGE_PARSING_FAIL`| Unable to parse message data |
177
182
| 0xB011 |`SW_MESSAGE_TOO_LONG`| Message len greater than max |
178
183
| 0xB012 |`SW_MESSAGE_TOO_SHORT`| Message len is 0 |
0 commit comments