2021-05-13 18:21:35 +03:00
|
|
|
:: aggregator: Azimuth L2 roll aggregator
|
|
|
|
::
|
|
|
|
:: general flow is as described below, to ensure transactions actually go
|
|
|
|
:: through once we start sending it out, in the dumbest reasonable way.
|
|
|
|
::
|
|
|
|
:: periodic timer fires:
|
|
|
|
:: if there are no pending l2 txs, do nothing.
|
|
|
|
:: else kick off tx submission flow:
|
|
|
|
:: "freeze" pending txs, store alongside nonce, then increment nonce,
|
|
|
|
:: kick off thread for sending the corresponding l1 tx:
|
|
|
|
:: if nonce doesn't match on-chain expected nonce, bail.
|
|
|
|
:: if we can't afford the tx fee, bail.
|
|
|
|
:: construct, sign, submit the l1 tx.
|
|
|
|
:: if thread bailed, retry in five minutes.
|
|
|
|
:: if thread succeeded, retry in five minutes with higher gas price.
|
|
|
|
:: when retrying, only do so if l2 txs remain in the "frozen" txs group.
|
|
|
|
:: on %tx diff from naive, remove the matching tx from the frozen group.
|
|
|
|
::
|
|
|
|
::TODO remaining general work:
|
|
|
|
:: - hook up subscription to azimuth for %tx diffs
|
|
|
|
:: - hook up thread updates/results
|
|
|
|
:: - hook up timer callbacks
|
|
|
|
:: - cache state, upate after every azimuth %fact
|
|
|
|
:: - properly support private key changes
|
|
|
|
::
|
|
|
|
::TODO questions:
|
|
|
|
:: - it's a bit weird how we just assume the raw and tx in raw-tx to match...
|
|
|
|
::
|
2021-05-17 18:48:49 +03:00
|
|
|
/+ naive, default-agent, ethereum, dbug, verb
|
2021-05-21 13:16:57 +03:00
|
|
|
/= ttttt /tests/lib/naive ::TODO use new lib
|
2021-05-13 18:21:35 +03:00
|
|
|
::
|
|
|
|
::TODO /sur file for public types
|
|
|
|
|%
|
|
|
|
+$ state-0
|
|
|
|
$: %0
|
|
|
|
:: pending: the next l2 txs to be sent
|
|
|
|
:: sending: the l2 txs currently sending/awaiting l2 confirmation
|
|
|
|
::TODO should maybe key by [address nonce] instead. same for wires
|
|
|
|
:: finding: raw-tx-hash reverse lookup for sending map
|
|
|
|
:: next-nonce: next l1 nonce to use
|
|
|
|
::
|
|
|
|
pending=(list pend-tx)
|
2021-05-17 18:48:49 +03:00
|
|
|
sending=(map nonce:naive [next-gas-price=@ud txs=(list raw-tx:naive)])
|
2021-05-13 18:21:35 +03:00
|
|
|
finding=(map keccak $?(%confirmed %failed l1-tx-pointer))
|
|
|
|
next-nonce=@ud
|
|
|
|
::
|
|
|
|
:: pk: private key to send the roll
|
|
|
|
:: frequency: time to wait between sending batches (TODO fancier)
|
|
|
|
:: endpoint: ethereum rpc endpoint to use
|
|
|
|
::
|
|
|
|
pk=@
|
|
|
|
frequency=@dr
|
|
|
|
endpoint=@t
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ keccak @ux
|
|
|
|
::
|
|
|
|
+$ tx-status
|
|
|
|
$: status=?(%unknown %pending %sending %confirmed %failed)
|
|
|
|
pointer=(unit l1-tx-pointer)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ l1-tx-pointer
|
|
|
|
$: =address:ethereum
|
|
|
|
nonce=@ud
|
|
|
|
==
|
|
|
|
::
|
|
|
|
::TODO cache sender address?
|
|
|
|
+$ pend-tx [force=? =raw-tx:naive]
|
|
|
|
::
|
|
|
|
+$ part-tx
|
|
|
|
$% [%raw raw=octs]
|
|
|
|
[%don =tx:naive]
|
|
|
|
[%ful raw=octs =tx:naive] ::TODO redundant?
|
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ action
|
|
|
|
$% [%submit force=? sig=@ tx=part-tx]
|
|
|
|
[%cancel sig=@ keccak=@]
|
|
|
|
::
|
|
|
|
[%commit ~] ::TODO maybe pk=(unit @) later
|
|
|
|
[%config frequency=@dr]
|
|
|
|
[%setkey pk=@]
|
2021-05-21 13:16:57 +03:00
|
|
|
[%endpoint endpoint=@t]
|
|
|
|
[%nonce nonce=@ud]
|
|
|
|
::TODO contract address, chain..?
|
2021-05-13 18:21:35 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
+$ card card:agent:gall
|
|
|
|
::
|
|
|
|
::TODO config?
|
2021-05-21 13:16:57 +03:00
|
|
|
:: ++ contract 0xb581.01cd.3bbb.cc6f.a40b.cdb0.4bb7.1623.b5c7.d39b :: Ropsten
|
|
|
|
:: TODO: add this to action
|
|
|
|
++ contract 0x4754.03bf.4e8e.b8d0.2f71.7b0e.553f.869f.a690.425e :: Local
|
|
|
|
++ chain-id 0x539 :: '1337' (Geth private chain)
|
2021-05-13 18:21:35 +03:00
|
|
|
::
|
|
|
|
++ resend-time ~m5
|
|
|
|
::
|
|
|
|
++ lverb &
|
|
|
|
--
|
|
|
|
::
|
2021-05-17 18:48:49 +03:00
|
|
|
=| state-0
|
|
|
|
=* state -
|
|
|
|
::
|
2021-05-13 18:21:35 +03:00
|
|
|
%- agent:dbug
|
|
|
|
%+ verb |
|
|
|
|
^- agent:gall
|
|
|
|
::
|
|
|
|
=<
|
|
|
|
|_ =bowl:gall
|
|
|
|
+* this .
|
2021-05-17 18:48:49 +03:00
|
|
|
do ~(. +> bowl)
|
2021-05-13 18:21:35 +03:00
|
|
|
def ~(. (default-agent this %|) bowl)
|
|
|
|
::
|
|
|
|
++ on-init
|
|
|
|
^- (quip card _this)
|
|
|
|
::TODO set default frequency and endpoint?
|
|
|
|
=. frequency ~h1
|
|
|
|
[~ this]
|
|
|
|
::
|
|
|
|
++ on-save !>(state)
|
|
|
|
++ on-load
|
|
|
|
|= old=vase
|
|
|
|
^- (quip card _this)
|
|
|
|
[~ this(state !<(state-0 old))]
|
|
|
|
::
|
|
|
|
++ on-poke
|
|
|
|
|= [=mark =vase]
|
|
|
|
^- (quip card _this)
|
2021-05-17 18:48:49 +03:00
|
|
|
=^ cards state
|
|
|
|
?+ mark (on-poke:def mark vase)
|
2021-05-21 13:16:57 +03:00
|
|
|
%aggregator-action
|
2021-05-17 18:48:49 +03:00
|
|
|
=+ !<(poke=action vase)
|
|
|
|
(on-action:do poke)
|
|
|
|
==
|
|
|
|
[cards this]
|
2021-05-13 18:21:35 +03:00
|
|
|
:: +on-peek: scry paths
|
|
|
|
::TODO reevaluate wrt recent flow changes
|
|
|
|
::
|
|
|
|
:: /x/pending -> %noun (list pend-tx)
|
|
|
|
:: /x/pending/[~ship] -> %noun (list pend-tx)
|
|
|
|
:: /x/pending/[0xadd.ress] -> %noun (list pend-tx)
|
|
|
|
:: /x/tx/[0xke.ccak]/status -> %noun tx-status
|
|
|
|
:: /x/nonce/[~ship]/[0xadd.ress] -> %atom @
|
|
|
|
::
|
|
|
|
++ on-peek
|
|
|
|
|= =path
|
|
|
|
^- (unit (unit cage))
|
|
|
|
?+ path ~
|
|
|
|
[%x %pending ~] ``noun+!>(pending)
|
|
|
|
::
|
|
|
|
[%x %pending @ ~]
|
|
|
|
=* wat i.t.t.path
|
|
|
|
?~ who=(slaw %p wat)
|
2021-05-17 18:48:49 +03:00
|
|
|
:: by-address
|
|
|
|
::
|
2021-05-13 18:21:35 +03:00
|
|
|
?~ wer=(slaw %ux wat)
|
|
|
|
[~ ~]
|
2021-05-17 18:48:49 +03:00
|
|
|
=; pending=(list pend-tx)
|
|
|
|
``noun+!>(pending)
|
2021-05-13 18:21:35 +03:00
|
|
|
%+ skim pending
|
|
|
|
|= pend-tx
|
|
|
|
::TODO deduce address from sig.raw-tx ?
|
|
|
|
!!
|
2021-05-17 18:48:49 +03:00
|
|
|
:: by-ship
|
|
|
|
::
|
|
|
|
=; pending=(list pend-tx)
|
|
|
|
``noun+!>(pending)
|
2021-05-13 18:21:35 +03:00
|
|
|
%+ skim pending
|
|
|
|
|= pend-tx
|
|
|
|
=(u.who ship.from.tx.raw-tx)
|
|
|
|
::
|
|
|
|
[%x %tx @ %status ~]
|
|
|
|
?~ keccak=(slaw %ux i.t.t.path)
|
|
|
|
[~ ~]
|
|
|
|
:+ ~ ~
|
|
|
|
:- %noun
|
|
|
|
!> ^- tx-status
|
|
|
|
?^ status=(~(get by finding) u.keccak)
|
|
|
|
?@ u.status [u.status ~]
|
2021-05-17 18:48:49 +03:00
|
|
|
[%sending status]
|
2021-05-13 18:21:35 +03:00
|
|
|
::TODO potentially slow!
|
|
|
|
=; known=?
|
|
|
|
[?:(known %pending %unknown) ~]
|
|
|
|
%+ lien pending
|
2021-05-17 18:48:49 +03:00
|
|
|
|= [* raw-tx:naive]
|
2021-05-13 18:21:35 +03:00
|
|
|
=(u.keccak (hash-tx raw))
|
|
|
|
::
|
|
|
|
[%x %nonce @ @ ~]
|
|
|
|
?~ who=(slaw %p i.t.t.path)
|
|
|
|
[~ ~]
|
|
|
|
=+ proxy=i.t.t.t.path
|
|
|
|
?. ?=(proxy:naive proxy)
|
|
|
|
[~ ~]
|
2021-05-17 18:48:49 +03:00
|
|
|
=/ [* nas=^state:naive] pending-state:do
|
2021-05-13 18:21:35 +03:00
|
|
|
::TODO or should we ~ when !(~(has by points.nas) who) ?
|
2021-05-17 18:48:49 +03:00
|
|
|
=/ =point:naive (~(gut by points.nas) u.who *point:naive)
|
2021-05-13 18:21:35 +03:00
|
|
|
=+ (proxy-from-point:naive proxy point)
|
|
|
|
``atom+!>(nonce)
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ on-arvo
|
|
|
|
|= [=wire =sign-arvo]
|
|
|
|
^- (quip card _this)
|
2021-05-17 18:48:49 +03:00
|
|
|
?+ +<.sign-arvo (on-arvo:def wire sign-arvo)
|
2021-05-13 18:21:35 +03:00
|
|
|
%wake =^(cards state on-timer:do [cards this])
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ on-fail
|
|
|
|
|= [=term =tang]
|
|
|
|
::TODO if crashed during timer, set new timer? how to detect?
|
|
|
|
(on-fail:def term tang)
|
|
|
|
::
|
|
|
|
++ on-watch on-watch:def
|
|
|
|
++ on-leave on-leave:def
|
2021-05-21 13:16:57 +03:00
|
|
|
++ on-agent
|
|
|
|
|= [=wire =sign:agent:gall]
|
|
|
|
^- (quip card _this)
|
|
|
|
~& wire+wire
|
|
|
|
?. ?=([%send @t *] wire)
|
|
|
|
(on-agent:def wire sign)
|
|
|
|
?- -.sign
|
|
|
|
%poke-ack
|
|
|
|
?~ p.sign
|
|
|
|
%- (slog leaf+"Thread started successfully" ~)
|
|
|
|
[~ this]
|
|
|
|
%- (slog leaf+"{(trip dap.bowl)} couldn't start thread" u.p.sign)
|
|
|
|
:_ this
|
|
|
|
[(leave:spider:do wire)]~
|
|
|
|
::
|
|
|
|
%watch-ack
|
|
|
|
?~ p.sign
|
|
|
|
[~ this]
|
|
|
|
=/ =tank leaf+"{(trip dap.bowl)} couldn't start listen to thread"
|
|
|
|
%- (slog tank u.p.sign)
|
|
|
|
[~ this]
|
|
|
|
::
|
|
|
|
%kick
|
|
|
|
[~ this]
|
|
|
|
::
|
|
|
|
%fact
|
|
|
|
?+ p.cage.sign (on-agent:def wire sign)
|
|
|
|
%thread-fail
|
|
|
|
=+ !<([=term =tang] q.cage.sign)
|
|
|
|
%- (slog leaf+"{(trip dap.bowl)} failed" leaf+<term> tang)
|
|
|
|
=^ cards state
|
|
|
|
(on-thread-result:do (rash i.t.wire dem) %.n^term)
|
|
|
|
[cards this]
|
|
|
|
::
|
|
|
|
%thread-done
|
|
|
|
~& ['all submitted to' t.wire]
|
|
|
|
:: is aggregator/send thread expected to maybe return an error?
|
|
|
|
=+ !<(result=(each @ud term) q.cage.sign)
|
|
|
|
=^ cards state
|
|
|
|
(on-thread-result:do (rash i.t.wire dem) result)
|
|
|
|
[cards this]
|
|
|
|
==
|
|
|
|
==
|
2021-05-13 18:21:35 +03:00
|
|
|
--
|
|
|
|
::
|
|
|
|
|_ =bowl:gall
|
|
|
|
::TODO /lib/sys.hoon?
|
|
|
|
++ sys
|
|
|
|
|%
|
|
|
|
++ b
|
|
|
|
|%
|
|
|
|
++ wait
|
|
|
|
|= [=wire =time]
|
|
|
|
^- card
|
|
|
|
[%pass wire %arvo %b %wait time]
|
|
|
|
--
|
|
|
|
--
|
|
|
|
::TODO /lib/spider.hoon?
|
|
|
|
++ spider
|
|
|
|
|%
|
|
|
|
++ start-thread
|
|
|
|
|= [=wire thread=term arg=vase]
|
|
|
|
^- (list card)
|
|
|
|
=/ tid=@ta (rap 3 thread '--' (scot %uv eny.bowl) ~)
|
2021-05-21 13:16:57 +03:00
|
|
|
:~ [%pass wire %agent [our.bowl %spider] %watch /thread-result/[tid]]
|
|
|
|
[%pass wire %agent [our.bowl %spider] %poke %spider-start !>([~ `tid thread arg])]
|
2021-05-13 18:21:35 +03:00
|
|
|
==
|
2021-05-17 18:48:49 +03:00
|
|
|
::
|
|
|
|
++ leave
|
|
|
|
|= =path
|
|
|
|
^- card
|
|
|
|
[%pass path %agent [our.bowl %spider] %leave ~]
|
2021-05-13 18:21:35 +03:00
|
|
|
--
|
|
|
|
::
|
|
|
|
++ hash-tx keccak-256:keccak:crypto
|
|
|
|
::
|
|
|
|
++ hash-raw-tx
|
2021-05-17 18:48:49 +03:00
|
|
|
|= =raw-tx:naive
|
|
|
|
(hash-tx raw.raw-tx)
|
2021-05-13 18:21:35 +03:00
|
|
|
::
|
|
|
|
++ part-tx-to-full
|
|
|
|
|= =part-tx
|
|
|
|
^- [octs tx:naive]
|
2021-05-17 18:48:49 +03:00
|
|
|
?+ -.part-tx !!
|
|
|
|
:: %raw [+.part-tx (decode-tx:naive +.part-tx)]
|
|
|
|
:: %don [(encode-tx:naive +.part-tx) +.part-tx]
|
2021-05-13 18:21:35 +03:00
|
|
|
%ful +.part-tx
|
|
|
|
==
|
|
|
|
:: +pending-state
|
|
|
|
::
|
|
|
|
:: derives tentative state from pending txs and canonical state,
|
|
|
|
:: discarding invalid pending txs in the process.
|
|
|
|
::
|
|
|
|
::TODO maybe want to cache locally, refresh on %fact from azimuth?
|
|
|
|
::
|
|
|
|
++ pending-state
|
2021-05-21 15:29:40 +03:00
|
|
|
^- [_pending ^state:naive]
|
2021-05-13 18:21:35 +03:00
|
|
|
:: load current, canonical state
|
|
|
|
::
|
2021-05-17 18:48:49 +03:00
|
|
|
=+ .^ nas=^state:naive
|
|
|
|
%gx
|
|
|
|
(scot %p our.bowl)
|
|
|
|
%azimuth
|
|
|
|
(scot %da now.bowl)
|
|
|
|
/nas/nas
|
|
|
|
==
|
2021-05-13 18:21:35 +03:00
|
|
|
:: apply our pending transactions
|
|
|
|
::TODO should also apply txs from sending map!
|
|
|
|
::
|
|
|
|
=| valid=_pending
|
2021-05-17 18:48:49 +03:00
|
|
|
|- ^+ [valid nas]
|
2021-05-13 18:21:35 +03:00
|
|
|
?~ pending [(flop valid) nas]
|
|
|
|
::
|
2021-05-21 15:12:05 +03:00
|
|
|
=^ gud=? nas (try-apply nas i.pending)
|
|
|
|
=? valid gud [i.pending valid]
|
|
|
|
=? finding =(gud %.n)
|
|
|
|
%- ~(put by finding)
|
|
|
|
[(hash-raw-tx raw-tx.i.pending) %failed]
|
2021-05-13 18:21:35 +03:00
|
|
|
$(pending t.pending)
|
|
|
|
:: +try-apply:
|
|
|
|
::
|
|
|
|
++ try-apply
|
2021-05-17 18:48:49 +03:00
|
|
|
|= [nas=^state:naive force=? =raw-tx:naive]
|
2021-05-13 18:21:35 +03:00
|
|
|
^- [success=? _nas]
|
2021-05-21 13:16:57 +03:00
|
|
|
?. (verify-sig-and-nonce:naive verifier:ttttt `@`chain-id nas raw-tx)
|
2021-05-13 18:21:35 +03:00
|
|
|
[force nas]
|
|
|
|
::
|
2021-05-17 18:48:49 +03:00
|
|
|
=^ out points.nas (increment-nonce:naive nas from.tx.raw-tx)
|
2021-05-13 18:21:35 +03:00
|
|
|
::
|
|
|
|
?~ nex=(receive-tx:naive nas tx.raw-tx)
|
|
|
|
[force nas]
|
|
|
|
[& +.u.nex]
|
|
|
|
::
|
|
|
|
++ on-action
|
|
|
|
|= =action
|
2021-05-17 18:48:49 +03:00
|
|
|
^- (quip card _state)
|
2021-05-13 18:21:35 +03:00
|
|
|
?- -.action
|
2021-05-21 13:16:57 +03:00
|
|
|
%commit on-timer
|
|
|
|
%config [~ state(frequency frequency.action)]
|
|
|
|
%nonce [~ state(next-nonce nonce.action)]
|
|
|
|
%endpoint [~ state(endpoint endpoint.action)]
|
|
|
|
::
|
|
|
|
%setkey
|
|
|
|
::TODO what about existing sending entries?
|
|
|
|
:- ~
|
|
|
|
?~ pk=(de:base16:mimes:html pk.action)
|
|
|
|
state
|
|
|
|
state(pk q.u.pk)
|
2021-05-13 18:21:35 +03:00
|
|
|
::
|
|
|
|
%submit
|
|
|
|
=^ success state
|
2021-05-17 18:48:49 +03:00
|
|
|
^- [? _state]
|
2021-05-21 13:16:57 +03:00
|
|
|
%^ take-tx
|
2021-05-17 18:48:49 +03:00
|
|
|
force.action
|
2021-05-21 13:16:57 +03:00
|
|
|
sig.action
|
2021-05-13 18:21:35 +03:00
|
|
|
(part-tx-to-full tx.action)
|
2021-05-17 18:48:49 +03:00
|
|
|
:: TODO: consider failure case
|
2021-05-13 18:21:35 +03:00
|
|
|
?> success
|
|
|
|
[~ state]
|
|
|
|
::
|
|
|
|
%cancel
|
|
|
|
!! ::TODO
|
|
|
|
==
|
|
|
|
:: +take-tx: accept submitted l2 tx into the :pending list
|
|
|
|
::TODO rewrite
|
|
|
|
::
|
|
|
|
++ take-tx
|
|
|
|
|= [force=? =raw-tx:naive]
|
|
|
|
^- [success=? _state]
|
2021-05-17 18:48:49 +03:00
|
|
|
=/ [nep=_pending nas=^state:naive] pending-state
|
|
|
|
=| success=?
|
|
|
|
:: TODO: actually use try-apply when proper Tx signing in place
|
|
|
|
::
|
|
|
|
:: =^ success nas
|
|
|
|
:: (try-apply nas force raw-tx)
|
2021-05-13 18:21:35 +03:00
|
|
|
::TODO want to notify about dropped pendings, or no? client prolly polls...
|
2021-05-17 18:48:49 +03:00
|
|
|
=? pending success (snoc nep [force raw-tx])
|
2021-05-13 18:21:35 +03:00
|
|
|
::TODO cache nas?
|
|
|
|
[success state]
|
|
|
|
:: +set-timer: %wait until next whole :frequency
|
|
|
|
::
|
|
|
|
++ set-timer
|
|
|
|
^- card
|
2021-05-17 18:48:49 +03:00
|
|
|
%+ wait:b:sys /timer
|
2021-05-13 18:21:35 +03:00
|
|
|
(mul +((div now.bowl frequency)) frequency)
|
|
|
|
:: +on-timer: every :frequency, freeze :pending txs roll and start sending it
|
|
|
|
::
|
|
|
|
++ on-timer
|
2021-05-17 18:48:49 +03:00
|
|
|
^- (quip card _state)
|
2021-05-13 18:21:35 +03:00
|
|
|
=^ cards state
|
2021-05-21 13:16:57 +03:00
|
|
|
?: =(~ pending) [~ state]
|
2021-05-13 18:21:35 +03:00
|
|
|
=/ nonce=@ud next-nonce
|
2021-05-21 13:16:57 +03:00
|
|
|
=: pending ~
|
2021-05-13 18:21:35 +03:00
|
|
|
next-nonce +(next-nonce)
|
|
|
|
::
|
|
|
|
sending
|
|
|
|
%+ ~(put by sending) nonce
|
2021-05-17 18:48:49 +03:00
|
|
|
[0 (turn pending tail)]
|
2021-05-13 18:21:35 +03:00
|
|
|
==
|
|
|
|
[(send-roll nonce) state]
|
|
|
|
[[set-timer cards] state]
|
|
|
|
:: +send-roll: start thread to submit roll from :sending to l1
|
|
|
|
::
|
|
|
|
++ send-roll
|
|
|
|
|= nonce=@ud
|
|
|
|
^- (list card)
|
|
|
|
:: if this nonce isn't in the sending queue anymore, it's done
|
|
|
|
::
|
|
|
|
?. (~(has by sending) nonce)
|
|
|
|
~? lverb [dap.bowl %done-sending nonce]
|
|
|
|
~
|
|
|
|
:: start the thread, passing in the l2 txs to use
|
|
|
|
::
|
|
|
|
::TODO should go ahead and set resend timer in case thread hangs, or nah?
|
|
|
|
%+ start-thread:spider
|
|
|
|
/send/(scot %ud nonce)
|
|
|
|
:- %aggregator-send
|
2021-05-21 13:16:57 +03:00
|
|
|
!>
|
2021-05-17 18:48:49 +03:00
|
|
|
:* endpoint
|
|
|
|
contract
|
|
|
|
chain-id
|
2021-05-21 13:16:57 +03:00
|
|
|
pk
|
2021-05-17 18:48:49 +03:00
|
|
|
nonce
|
|
|
|
(~(got by sending) nonce)
|
|
|
|
==
|
2021-05-13 18:21:35 +03:00
|
|
|
:: +on-thread-result: await resend after thread success or failure
|
|
|
|
::
|
|
|
|
++ on-thread-result
|
|
|
|
|= [nonce=@ud result=(each @ud term)]
|
|
|
|
^- (quip card _state)
|
|
|
|
:: update gas price for this tx in state
|
|
|
|
::
|
|
|
|
=? sending ?=(%& -.result)
|
|
|
|
%+ ~(jab by sending) nonce
|
|
|
|
(cork tail (lead p.result))
|
|
|
|
:: print error if there was one
|
|
|
|
::
|
|
|
|
~? ?=(%| -.result) [dap.bowl %send-error p.result]
|
|
|
|
:: resend the l1 tx in five minutes
|
|
|
|
::
|
|
|
|
:_ state
|
2021-05-17 18:48:49 +03:00
|
|
|
[(wait:b:sys /resend/(scot %ud nonce) (add resend-time now.bowl))]~
|
2021-05-13 18:21:35 +03:00
|
|
|
:: +on-naive-diff: process l2 tx confirmations
|
|
|
|
::
|
|
|
|
++ on-naive-diff
|
|
|
|
|= =diff:naive
|
|
|
|
^- (quip card _state)
|
|
|
|
?. ?=(%tx -.diff)
|
|
|
|
[~ state]
|
|
|
|
=/ =keccak (hash-raw-tx raw-tx.diff)
|
|
|
|
?~ wer=(~(get by finding) keccak)
|
|
|
|
[~ state]
|
|
|
|
:: if we had already seen the tx, no-op
|
|
|
|
::
|
|
|
|
?@ u.wer
|
|
|
|
~? &(?=(%confirmed u.wer) ?=(~ err.diff))
|
2021-05-17 18:48:49 +03:00
|
|
|
[dap.bowl %weird-double-confirm from.tx.raw-tx.diff]
|
2021-05-13 18:21:35 +03:00
|
|
|
[~ state]
|
|
|
|
=* nonce nonce.u.wer
|
|
|
|
:: remove the tx from the sending map
|
|
|
|
::
|
|
|
|
=. sending
|
|
|
|
?~ sen=(~(get by sending) nonce)
|
|
|
|
~& [dap.bowl %weird-double-remove]
|
|
|
|
sending
|
|
|
|
?~ nin=(find [raw-tx.diff]~ txs.u.sen)
|
|
|
|
~& [dap.bowl %weird-unknown]
|
2021-05-17 18:48:49 +03:00
|
|
|
sending
|
2021-05-13 18:21:35 +03:00
|
|
|
=. txs.u.sen (oust [u.nin 1] txs.u.sen)
|
|
|
|
?~ txs.u.sen
|
|
|
|
~? lverb [dap.bowl %done-with-nonce nonce]
|
|
|
|
(~(del by sending) nonce)
|
|
|
|
(~(put by sending) nonce u.sen)
|
|
|
|
:: update the finding map with the new status
|
|
|
|
::
|
|
|
|
=. finding
|
|
|
|
%+ ~(put by finding) keccak
|
|
|
|
?~ err.diff %confirmed
|
|
|
|
:: if we kept the forced flag around for longer, we could notify of
|
|
|
|
:: unexpected tx failures here. would that be useful? probably not?
|
|
|
|
:: ~? !forced [dap.bowl %aggregated-tx-failed-anyway err.diff]
|
|
|
|
%failed
|
|
|
|
[~ state]
|
|
|
|
::
|
|
|
|
--
|