mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-24 07:26:51 +03:00
51 lines
1.2 KiB
Plaintext
51 lines
1.2 KiB
Plaintext
/- *btc, brpc=btc-node-hook, erpc=electrum-rpc
|
|
|%
|
|
+$ btc-credentials [rpc-url=@t rpc-user=@t rpc-password=@t]
|
|
+$ electrum-credentials [rpc-url=@t]
|
|
+$ credentials [bc=btc-credentials ec=electrum-credentials]
|
|
+$ host-info [creds=credentials connected=? clients=(set ship)]
|
|
+$ action [req-id=@t body=action-body]
|
|
+$ action-body
|
|
$% [%address-info =address]
|
|
[%ping ~]
|
|
==
|
|
+$ result [req-id=@t body=result-body]
|
|
+$ result-body
|
|
$% [%address-info a=address utxos=(set utxo) used=?]
|
|
==
|
|
+$ error
|
|
$% [%not-connected status=@ud]
|
|
[%bad-request status=@ud]
|
|
[%no-auth status=@ud]
|
|
[%http-error status=@ud]
|
|
[%rpc-error ~]
|
|
==
|
|
+$ update (each result error)
|
|
::
|
|
+$ command
|
|
$% [%set-credentials creds=credentials]
|
|
[%whitelist-clients clients=(set ship)]
|
|
==
|
|
++ rpc
|
|
|%
|
|
+$ action
|
|
$% [%erpc request:electrum]
|
|
[%brpc request:bitcoin-core]
|
|
==
|
|
+$ response
|
|
$% [%erpc response:electrum]
|
|
[%brpc response:bitcoin-core]
|
|
==
|
|
++ electrum
|
|
|%
|
|
+$ request request:erpc
|
|
+$ response response:erpc
|
|
--
|
|
++ bitcoin-core
|
|
|%
|
|
+$ request btc-node-hook-action:brpc
|
|
+$ response btc-node-hook-response:brpc
|
|
--
|
|
--
|
|
--
|