mirror of
https://github.com/ilyakooo0/urbit.git
synced 2024-11-10 10:05:09 +03:00
61 lines
1.4 KiB
Plaintext
61 lines
1.4 KiB
Plaintext
:: eth-watcher: ethereum event log collector
|
|
::
|
|
/+ ethereum
|
|
=, jael
|
|
|%
|
|
+$ config
|
|
$: :: url: ethereum node rpc endpoint
|
|
:: eager: if true, give logs asap, send disavows in case of reorg
|
|
:: refresh-rate: rate at which to check for updates
|
|
:: timeout-time: time an update check is allowed to take
|
|
:: from: oldest block number to look at
|
|
:: contracts: contract addresses to look at
|
|
:: topics: event descriptions to look for
|
|
::
|
|
url=@ta
|
|
eager=?
|
|
refresh-rate=@dr
|
|
timeout-time=@dr
|
|
from=number:block
|
|
contracts=(list address:ethereum)
|
|
=topics
|
|
==
|
|
::
|
|
+$ loglist (list event-log:rpc:ethereum)
|
|
+$ topics (list ?(@ux (list @ux)))
|
|
+$ watchpup
|
|
$: config
|
|
=number:block
|
|
=pending-logs
|
|
blocks=(list block)
|
|
==
|
|
::
|
|
:: disavows: newest block first
|
|
+$ disavows (list id:block)
|
|
+$ pending-logs (map number:block loglist)
|
|
::
|
|
+$ poke
|
|
$% :: %watch: configure a watchdog and fetch initial logs
|
|
::
|
|
[%watch =path =config]
|
|
:: %clear: remove a watchdog
|
|
::
|
|
[%clear =path]
|
|
==
|
|
::
|
|
+$ diff
|
|
$% :: %history: full event log history, oldest first
|
|
::
|
|
[%history =loglist]
|
|
:: %logs: newly added logs
|
|
::
|
|
[%logs =loglist]
|
|
:: %disavow: forget logs
|
|
::
|
|
:: this is sent when a reorg happens that invalidates
|
|
:: previously-sent logs
|
|
::
|
|
[%disavow =id:block]
|
|
==
|
|
--
|