urbit/sur/btc-bridge.hoon

41 lines
842 B
Plaintext
Raw Normal View History

2020-10-12 11:26:43 +03:00
/- *btc, bnh=btc-node-hook
2020-10-01 16:51:37 +03:00
|%
2020-10-13 12:25:37 +03:00
+$ btc-credentials [rpc-url=@t rpc-user=@t rpc-password=@t]
+$ electrum-credentials [rpc-url=@t]
+$ credentials [bc=btc-credentials ec=electrum-credentials]
2020-10-05 14:57:50 +03:00
+$ status
2020-10-05 16:01:34 +03:00
$% [%host connected=? clients=(set ship)]
[%client connected=? host=(unit ship)]
2020-10-05 14:57:50 +03:00
==
2020-10-01 16:51:37 +03:00
+$ action
2020-10-05 15:21:23 +03:00
$% [%check-status ~]
2020-10-09 15:34:36 +03:00
[%get-block-count ~]
2020-10-01 16:51:37 +03:00
[%balance =address]
[%transactions =address]
2020-10-05 15:21:23 +03:00
==
::
+$ command
2020-10-09 15:34:36 +03:00
$% [%become-host =credentials]
2020-10-05 15:21:23 +03:00
[%connect-as-client host=ship]
2020-10-05 16:01:34 +03:00
[%allow-clients users=(set ship)]
2020-10-01 16:51:37 +03:00
==
2020-10-12 11:26:43 +03:00
+$ rpc-action
2020-10-13 12:25:37 +03:00
$% [%erpc request:electrum:rpc]
[%brpc request:bitcoin-core:rpc]
2020-10-12 11:26:43 +03:00
==
++ rpc
|%
++ electrum
|%
2020-10-13 12:25:37 +03:00
+$ request
$% [%get-address-balance =address]
2020-10-12 11:26:43 +03:00
==
--
++ bitcoin-core
|%
2020-10-13 12:25:37 +03:00
+$ request btc-node-hook-action:bnh
2020-10-12 11:26:43 +03:00
--
--
2020-10-01 16:51:37 +03:00
--
2020-10-13 12:25:37 +03:00