mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-12-27 17:02:32 +03:00
57 lines
1.3 KiB
Plaintext
57 lines
1.3 KiB
Plaintext
/- *btc
|
|
|%
|
|
+$ host-info [api-url=@t connected=? clients=(set ship)]
|
|
+$ command
|
|
$% [%set-credentials api-url=@t]
|
|
[%whitelist-clients clients=(set ship)]
|
|
==
|
|
+$ action
|
|
$% [%address-info =address]
|
|
[%tx-info =txid]
|
|
[%raw-tx =txid]
|
|
[%broadcast-tx =rawtx]
|
|
[%ping ~]
|
|
==
|
|
+$ result
|
|
$% [%address-info =address utxos=(set utxo) used=? block=@ud]
|
|
[%tx-info =info:tx]
|
|
[%raw-tx =txid =rawtx]
|
|
[%broadcast-tx =txid broadcast=? included=?]
|
|
==
|
|
+$ error
|
|
$% [%not-connected status=@ud]
|
|
[%bad-request status=@ud]
|
|
[%no-auth status=@ud]
|
|
[%rpc-error ~]
|
|
==
|
|
+$ update (each result error)
|
|
+$ status
|
|
$% [%connected block=@ud fee=@ud]
|
|
[%disconnected ~]
|
|
==
|
|
::
|
|
++ rpc-types
|
|
|%
|
|
+$ action
|
|
$% [%get-address-info =address]
|
|
[%get-tx-vals =txid]
|
|
[%get-raw-tx =txid]
|
|
[%broadcast-tx =rawtx]
|
|
[%get-block-count ~]
|
|
[%get-block-and-fee ~]
|
|
==
|
|
::
|
|
+$ result
|
|
$% [%get-address-info =address utxos=(set utxo) used=? block=@ud]
|
|
[%get-tx-vals =info:tx]
|
|
[%get-raw-tx =txid =rawtx]
|
|
[%create-raw-tx =rawtx]
|
|
[%broadcast-tx =txid broadcast=? included=?]
|
|
[%get-block-count block=@ud]
|
|
[%get-block-and-fee block=@ud fee=sats]
|
|
|
|
==
|
|
--
|
|
--
|
|
::
|