shrub/sur/btc-wallet-store.hoon
2021-05-26 18:30:12 -07:00

44 lines
1.5 KiB
Plaintext

:: wallets are compatible with BIPs 44, 49, and 84
:: m / purpose' / coin_type' / account' / change / address_index
:: change can be 0 or 1
::
:: TODO: explain state tracking (used maps, next unused idx)
::
/- *btc
/+ bip32
|%
++ max-index (dec (pow 2 32))
:: chyg: whether account is (non-)change. 0 or 1
:: nixt: next indices to generate addresses from (non-change/change)
:: addi: address with metadata inside a change path
:: wach: map for watched addresses.
:: Membership implies the address is known by outside parties or had prior activity
:: scon: indices to initially scan to in (non-)change accounts
:: defaults to 2^32-1 (i.e. all the addresses, ~4B)
:: wilt: stores xpub; copulates with thousands of indices to form addresses
:: walt: wallet metadata
::
+$ chyg $?(%0 %1)
+$ idx @
+$ nixt (pair idx idx)
+$ addi [=chyg =idx utxos=(set utxo)]
+$ wach (map address addi)
+$ scon $~([max-index max-index] (pair idx idx))
+$ wilt _bip32
:: todo: Set of indices; empty it out until none are left--means scanning of that batch is done
:: has-used: whether current batch had any addresses with activity
:: start: index this batch started scanning from
::
+$ batch [todo=(set idx) has-used=? start=idx]
+$ scans (map [xpub chyg] batch)
::
+$ action
$% [%add-wallet =xpub scan-to=(unit scon) max-gap=(unit @)]
[%update-address a=address utxos=(set utxo)]
==
::
+$ update
$% [%address a=address utxos=(set utxo)]
==
--