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

82 lines
2.8 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
::
/- *btc
/+ bip32
|%
++ max-index (dec (pow 2 32))
:: chyg: whether account is (non-)change. 0 or 1
:: idx: an address_index
:: 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
::
+$ 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
:: walt: wallet datastructure
:: scanned: whether the wallet's addresses have been checked for prior activity
:: scan-to
:: max-gap: maximum number of consec blank addresses before wallet stops scanning
:: confs: confirmations required (after this is hit for an address, wallet stops refreshing it)
::
+$ walt
$: =wilt
=bipt
=wach
=nixt
scanned=?
scan-to=scon
max-gap=@ud
confs=@ud
==
:: input: utxo for a transaction::
:: feyb: fee per byte in sats
:: key: HD wallet path
:: txi/txo: input/output for a transaction being built
:: txbu: tx builder -- all information needed to make a transaction for signing
::
+$ input [=utxo =chyg =idx]
+$ feyb sats
+$ key [=bipt =chyg =idx]
+$ txi [=utxo raw-tx=(unit buffer) =key]
+$ txo [=address value=sats]
+$ txbu [=vbytes txis=(list txi) txos=(list txo)]
:: TODO: document
::
+$ batch [todo=(set idx) endpoint=idx has-used=?]
+$ scans (map [xpub chyg] batch)
::
:: %add-wallet: add wallet to state and initiate a scan
:: %scan: start a scan of the next address batch in a wallet
:: if the scan is complete, update the wallet and remove from scans
:: %watch-address: watch an address if used, remove from scans batch if not
:: %update-address: update info of an address if we're watching it
::
+$ action
$% [%add-wallet =xpub scan-to=(unit scon) max-gap=(unit @ud) confs=(unit @ud)]
[%address-info =xpub =chyg =idx utxos=(set utxo) used=? blockcount=@ud]
[%generate-address =xpub =chyg meta=(unit [payer=ship value=sats])]
[%generate-txbu =xpub payee=(unit ship) feyb=sats txos=(list txo)]
==
::
+$ update
$% [%generate-address =address meta=(unit [payer=ship value=sats])]
[%generate-txbu =xpub payee=(unit ship) =txbu]
[%scan-done =xpub]
==
::
+$ request
$% [%scan-address a=address =xpub =chyg =idx]
==
--