urbit/sur/btc-wallet-hook.hoon

35 lines
1.1 KiB
Plaintext
Raw Normal View History

2020-11-09 15:29:30 +03:00
/- *btc, bws=btc-wallet-store, bp=btc-provider
2020-10-24 19:13:36 +03:00
|%
2020-11-04 16:55:47 +03:00
:: req-id: hash of [xpub chyg idx]
2020-11-17 11:25:50 +03:00
:: pend: lookup of req-id -> requests from wallet-store
::
:: payment: a payment expected from another ship
:: - address: address generated for this payment
2020-11-20 14:58:27 +03:00
:: piym: incoming payments. Stores all ship moons under their planet.
:: poym: the current outgoing payment (one at a time only)
2020-11-16 20:47:00 +03:00
:: piym-watch/poym-watch:
2020-11-19 18:54:01 +03:00
:: let us link an address back to its incoming/outgoing payment
2020-11-20 14:58:27 +03:00
:: checked when address updates come from btc-wallet-store
2020-11-04 16:55:47 +03:00
::
2020-11-16 20:06:45 +03:00
+$ btc-state [blockcount=@ud fee=sats t=@da]
2020-11-20 14:58:27 +03:00
+$ pend-addr (map req-id:bp request:bws)
2020-11-17 11:25:50 +03:00
::
+$ payment [=address payer=ship value=sats]
2020-11-16 20:47:00 +03:00
::
+$ piym (jar ship payment)
2020-11-20 16:30:35 +03:00
+$ poym [payee=(unit ship) =txbu:bws]
2020-11-16 20:47:00 +03:00
+$ piym-watch (map address ship)
+$ poym-watch (map address ship)
::
2020-10-24 19:13:36 +03:00
+$ action
2020-11-04 16:55:47 +03:00
$% [%set-provider provider=ship]
2020-11-17 11:25:50 +03:00
[%set-default-wallet ~]
[%req-pay-address payee=ship value=sats]
2020-11-19 18:21:32 +03:00
[%ret-pay-address =address payer=ship value=sats]
2020-11-09 18:34:29 +03:00
[%force-retry ~]
2020-10-24 19:13:36 +03:00
==
2020-11-20 18:57:19 +03:00
+$ request
$% [%sign-tx payee=(unit ship) =txbu:bws]
==
2020-10-24 19:13:36 +03:00
--