2020-09-28 11:09:04 +03:00
|
|
|
|
|
|
|
## base58
|
|
|
|
Converts a base58 zpub to hex
|
|
|
|
```
|
|
|
|
+bip84 "zpub6rFR7y4Q2AijBEqTUquhVz398htDFrtymD9xYYfG1m4wAcvPhXNfE3EfH1r1ADqtfSdVCToUG868RvUUkgDKf31mGDtKsAYz2oz2AGutZYs"
|
|
|
|
```
|
2020-09-28 14:08:14 +03:00
|
|
|
|
2020-09-30 09:40:26 +03:00
|
|
|
### btc-address
|
2020-09-30 11:12:52 +03:00
|
|
|
**Import lib; optionally set up env**
|
2020-09-30 09:40:26 +03:00
|
|
|
```
|
2020-09-30 10:05:52 +03:00
|
|
|
=btca -build-file %/lib/btc-address/hoon
|
2020-09-30 11:12:52 +03:00
|
|
|
=xpub "zpub6rFR7y4Q2AijBEqTUquhVz398htDFrtymD9xYYfG1m4wAcvPhXNfE3EfH1r1ADqtfSdVCToUG868RvUUkgDKf31mGDtKsAYz2oz2AGutZYs"
|
|
|
|
```
|
|
|
|
|
|
|
|
**Test child public key from xpub**
|
|
|
|
```
|
|
|
|
(child-from-xpub:btca xpub 1)
|
|
|
|
(child-from-xpub:btca xpub (dec (bex 31)))
|
|
|
|
|
|
|
|
:: should error as index is too high (hardened key range)
|
|
|
|
(child-from-xpub:btca xpub (bex 31))
|
|
|
|
```
|
|
|
|
|
|
|
|
**Test xpub parsing**
|
|
|
|
```
|
|
|
|
(parse-xpub:btca xpub)
|
|
|
|
```
|
|
|
|
|
|
|
|
**Test addition and ECC point checking**
|
|
|
|
```
|
|
|
|
=px (parse-xpub:btca xpub)
|
|
|
|
=pubk ?~ px ~ pubk.u.px
|
2020-09-30 10:05:52 +03:00
|
|
|
(is-point:btca pubk)
|
2020-09-30 11:12:52 +03:00
|
|
|
=index 256
|
|
|
|
`@ux`(add (lsh 3 4 (big-endian-brap:btca pubk)) index)
|
|
|
|
```
|
|
|
|
|
|
|
|
**Test computing I**
|
|
|
|
```
|
|
|
|
(bind px |=(px=parsed-xpub:btca (compute-i:btca px 1)))
|
2020-09-28 14:08:14 +03:00
|
|
|
```
|