2021-03-16 06:49:51 +03:00
|
|
|
:: L1 contract changes:
|
|
|
|
:: - Enforce that once spawn proxy is set to deposit address, it can't
|
|
|
|
:: switched back
|
|
|
|
:: - Enforce that once spawn proxy is set to deposit address, you can't
|
|
|
|
:: spawn children
|
|
|
|
:: - Possibly the same for approveForAll
|
2021-03-28 05:08:17 +03:00
|
|
|
:: - Enforce that only ownership key can set spawn proxy to rollup.
|
|
|
|
:: maybe not though
|
2021-03-16 06:49:51 +03:00
|
|
|
:: - Disallow depositing galaxy to L2
|
2021-04-01 10:05:12 +03:00
|
|
|
:: - When depositing, clear proxies (maybe require reset)
|
|
|
|
:: - Maybe require that we're not depositing from a contract?
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
|
|
|
:: TODO: can an L1 star adopt an L2 planet? It's not obvious how --
|
|
|
|
:: maybe they need to adopt as an L2 transaction? That sounds right I
|
2021-03-17 04:25:27 +03:00
|
|
|
:: think. Can an L2 star adopt an L1 planet? I guess, but L1 wouldn't
|
|
|
|
:: know about it. Should L1 check whether the escape target is on L2
|
2021-04-01 06:28:13 +03:00
|
|
|
:: for some reason? IMO if either side is on L2, then both sides
|
|
|
|
:: should operate on L2
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
:: TODO: should we emit all the events azimuth.sol does? might be
|
2021-04-01 06:28:13 +03:00
|
|
|
:: convenient for tracking edges? Yes
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-03-17 05:41:43 +03:00
|
|
|
:: TODO: add nonces to txs. how to keep track of them? need replay
|
|
|
|
:: protection. maybe we can add nonces to ships instead of addresses?
|
2021-04-01 10:05:12 +03:00
|
|
|
:: Then what about operators? Looks like we can keep nonces out of the
|
|
|
|
:: tx data by just including it in the signed data. If the signature
|
|
|
|
:: succeeds but the tx fails, i guess the nonce should be advanced
|
|
|
|
::
|
|
|
|
:: TODO: think about whether nonces are safe when associated with
|
|
|
|
:: ship/address
|
2021-03-17 05:41:43 +03:00
|
|
|
::
|
2021-03-18 04:07:21 +03:00
|
|
|
:: TODO: is it possible to spawn directly to the deposit address? if
|
|
|
|
:: so, should we find its parent's owner to control it?
|
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
:: TODO: polymorphic addresses to save tx space?
|
2021-03-18 23:32:32 +03:00
|
|
|
::
|
2021-04-01 04:17:37 +03:00
|
|
|
/+ std
|
2021-04-02 05:24:31 +03:00
|
|
|
!.
|
|
|
|
=> => std
|
2021-03-16 06:49:51 +03:00
|
|
|
:: Constants
|
|
|
|
::
|
|
|
|
|%
|
|
|
|
:: Transfers on L1 to this address count as depositing to L2
|
|
|
|
::
|
|
|
|
++ deposit-address 0x1234.5678.9012.3456.7890.1234.5678.9012.3456.7890
|
2021-04-02 05:24:31 +03:00
|
|
|
++ log-names
|
|
|
|
|%
|
|
|
|
:: Generated with (keccak-256:keccak:crypto (as-octs:mimes:html name))
|
|
|
|
::
|
|
|
|
:: OwnerChanged(uint32,address)
|
|
|
|
++ owner-changed
|
|
|
|
0x16d0.f539.d49c.6cad.822b.767a.9445.bfb1.
|
|
|
|
cf7e.a6f2.a6c2.b120.a7ea.4cc7.660d.8fda
|
|
|
|
::
|
|
|
|
:: Activated(uint32)
|
|
|
|
++ activated
|
|
|
|
0xe74c.0380.9d07.69e1.b1f7.06cc.8414.258c.
|
|
|
|
d1f3.b6fe.020c.d15d.0165.c210.ba50.3a0f
|
|
|
|
::
|
|
|
|
:: Spawned(uint32,uint32)
|
|
|
|
++ spawned
|
|
|
|
0xb2d3.a6e7.a339.f5c8.ff96.265e.2f03.a010.
|
|
|
|
a854.1070.f374.4a24.7090.9644.1508.1546
|
|
|
|
::
|
|
|
|
:: EscapeRequested(uint32,uint32)
|
|
|
|
++ escape-requested
|
|
|
|
0xb4d4.850b.8f21.8218.141c.5665.cba3.79e5.
|
|
|
|
3e9b.b015.b51e.8d93.4be7.0210.aead.874a
|
|
|
|
::
|
|
|
|
:: EscapeCanceled(uint32,uint32)
|
|
|
|
++ escape-canceled
|
|
|
|
0xd653.bb0e.0bb7.ce83.93e6.24d9.8fbf.17cd.
|
|
|
|
a590.2c83.28ed.0cd0.9988.f368.90d9.932a
|
|
|
|
::
|
|
|
|
:: EscapeAccepted(uint32,uint32)
|
|
|
|
++ escape-accepted
|
|
|
|
0x7e44.7c9b.1bda.4b17.4b07.96e1.00bf.7f34.
|
|
|
|
ebf3.6dbb.7fe6.6549.0b1b.fce6.246a.9da5
|
|
|
|
::
|
|
|
|
:: LostSponsor(uint32,uint32)
|
|
|
|
++ lost-sponsor
|
|
|
|
0xd770.4f9a.2519.3dbd.0b0c.b4a8.09fe.ffff.
|
|
|
|
a7f1.9d1a.ae88.17a7.1346.c194.4482.10d5
|
|
|
|
::
|
|
|
|
:: ChangedKeys(uint32,bytes32,bytes32,uint32,uint32)
|
|
|
|
++ changed-keys
|
|
|
|
0xaa10.e7a0.117d.4323.f1d9.9d63.0ec1.69be.
|
|
|
|
bb3a.988e.8957.70e3.5198.7e01.ff54.23d5
|
|
|
|
::
|
|
|
|
:: BrokeContinuity(uint32,uint32)
|
|
|
|
++ broke-continuity
|
|
|
|
0x2929.4799.f1c2.1a37.ef83.8e15.f79d.d91b.
|
|
|
|
cee2.df99.d63c.d1c1.8ac9.68b1.2951.4e6e
|
|
|
|
::
|
|
|
|
:: ChangedSpawnProxy(uint32,address)
|
|
|
|
++ changed-spawn-proxy
|
|
|
|
0x9027.36af.7b3c.efe1.0d9e.840a.ed0d.687e.
|
|
|
|
35c8.4095.122b.2505.1a20.ead8.866f.006d
|
|
|
|
::
|
|
|
|
:: ChangedTransferProxy(uint32,address)
|
|
|
|
++ changed-transfer-proxy
|
|
|
|
0xcfe3.69b7.197e.7f0c.f067.93ae.2472.a9b1.
|
|
|
|
3583.fecb.ed2f.78df.a14d.1f10.796b.847c
|
|
|
|
::
|
|
|
|
:: ChangedManagementProxy(uint32,address)
|
|
|
|
++ changed-management-proxy
|
|
|
|
0xab9c.9327.cffd.2acc.168f.afed.be06.139f.
|
|
|
|
5f55.cb84.c761.df05.e051.1c25.1e2e.e9bf
|
|
|
|
::
|
|
|
|
:: ChangedVotingProxy(uint32,address)
|
|
|
|
++ changed-voting-proxy
|
|
|
|
0xcbd6.269e.c714.57f2.c7b1.a227.74f2.46f6.
|
|
|
|
c5a2.eae3.795e.d730.0db5.1768.0c61.c805
|
|
|
|
::
|
|
|
|
:: ChangedDns(string,string,string)
|
|
|
|
++ changed-dns
|
|
|
|
0xfafd.04ad.e1da.ae2e.1fdb.0fc1.cc6a.899f.
|
|
|
|
d424.063e.d5c9.2120.e67e.0730.53b9.4898
|
|
|
|
::
|
|
|
|
:: ApprovalForAll(address,address,bool)
|
|
|
|
++ approval-for-all
|
|
|
|
0x1730.7eab.39ab.6107.e889.9845.ad3d.59bd.
|
|
|
|
9653.f200.f220.9204.89ca.2b59.3769.6c31
|
|
|
|
--
|
|
|
|
-- =>
|
2021-03-16 06:49:51 +03:00
|
|
|
:: Types
|
|
|
|
|%
|
2021-03-18 02:42:39 +03:00
|
|
|
:: ethereum address, 20 bytes.
|
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
+$ nonce @ud
|
2021-03-18 02:42:39 +03:00
|
|
|
+$ address @ux
|
|
|
|
++ point
|
|
|
|
$: :: domain
|
|
|
|
::
|
|
|
|
dominion=?(%l1 %l2 %spawn)
|
|
|
|
::
|
|
|
|
:: ownership
|
|
|
|
::
|
|
|
|
$= own
|
2021-04-01 10:05:12 +03:00
|
|
|
$: owner=[=address =nonce]
|
|
|
|
spawn-proxy=[=address =nonce]
|
|
|
|
management-proxy=[=address =nonce]
|
|
|
|
voting-proxy=[=address =nonce]
|
|
|
|
transfer-proxy=[=address =nonce]
|
2021-03-18 02:42:39 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
:: networking
|
|
|
|
::
|
|
|
|
$= net
|
|
|
|
$: =life
|
|
|
|
=pass
|
2021-03-18 23:32:32 +03:00
|
|
|
rift=@ud
|
2021-03-18 02:42:39 +03:00
|
|
|
sponsor=[has=? who=@p]
|
|
|
|
escape=(unit @p)
|
|
|
|
==
|
|
|
|
==
|
|
|
|
::
|
2021-03-18 23:32:32 +03:00
|
|
|
:: TODO: add effects for all changes
|
|
|
|
::
|
2021-03-18 02:42:39 +03:00
|
|
|
++ diff
|
2021-03-18 23:32:32 +03:00
|
|
|
$: =ship
|
|
|
|
$% [%rift =rift]
|
|
|
|
[%keys =life crypto-suite=@ud =pass]
|
|
|
|
[%spon sponsor=(unit @p)]
|
|
|
|
== ==
|
2021-03-18 02:42:39 +03:00
|
|
|
::
|
2021-03-16 06:49:51 +03:00
|
|
|
+$ state
|
|
|
|
$: =points
|
|
|
|
=operators
|
|
|
|
dns=(list @t)
|
|
|
|
==
|
2021-04-01 10:05:12 +03:00
|
|
|
+$ points (map ship point)
|
|
|
|
+$ operators (jug address address)
|
|
|
|
+$ effects (list diff)
|
|
|
|
+$ proxy ?(%own %spawn %manage %vote %transfer)
|
2021-03-16 06:49:51 +03:00
|
|
|
+$ tx
|
2021-04-01 10:05:12 +03:00
|
|
|
[from=[=ship =proxy] skim-tx]
|
|
|
|
+$ skim-tx
|
2021-03-16 06:49:51 +03:00
|
|
|
$% [%transfer-point =ship =address reset=?]
|
|
|
|
[%spawn =ship =address]
|
2021-03-17 05:41:43 +03:00
|
|
|
[%configure-keys =ship encrypt=@ auth=@ crypto-suite=@ breach=?]
|
2021-03-16 06:49:51 +03:00
|
|
|
[%escape =ship parent=ship]
|
|
|
|
[%cancel-escape =ship parent=ship]
|
2021-03-17 04:25:27 +03:00
|
|
|
[%adopt =ship parent=ship]
|
|
|
|
[%reject =ship parent=ship]
|
|
|
|
[%detach =ship parent=ship]
|
2021-03-16 06:49:51 +03:00
|
|
|
[%set-management-proxy =ship =address]
|
|
|
|
[%set-spawn-proxy =ship =address]
|
|
|
|
[%set-voting-proxy =ship =address]
|
|
|
|
[%set-transfer-proxy =ship =address]
|
|
|
|
==
|
2021-03-17 05:41:43 +03:00
|
|
|
::
|
2021-04-01 04:17:37 +03:00
|
|
|
+$ event-log
|
|
|
|
$: address=@ux
|
2021-04-02 05:24:31 +03:00
|
|
|
data=@
|
2021-04-01 04:17:37 +03:00
|
|
|
topics=(lest @ux)
|
|
|
|
==
|
2021-03-16 06:49:51 +03:00
|
|
|
+$ input
|
2021-03-18 02:42:39 +03:00
|
|
|
$% [%bat batch=@]
|
2021-04-01 04:17:37 +03:00
|
|
|
[%log =event-log]
|
2021-03-18 02:42:39 +03:00
|
|
|
==
|
2021-03-18 03:27:30 +03:00
|
|
|
:: ECDSA verifier
|
2021-03-18 02:42:39 +03:00
|
|
|
::
|
2021-03-28 05:08:17 +03:00
|
|
|
+$ verifier $-([dat=@ v=@ r=@ s=@] (unit address))
|
2021-04-02 05:24:31 +03:00
|
|
|
-- =>
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
|
|
|
|%
|
2021-03-17 05:41:43 +03:00
|
|
|
++ parse-batch
|
2021-04-01 10:05:12 +03:00
|
|
|
|= [=verifier =state batch=@]
|
|
|
|
^- (list tx)
|
|
|
|
=| txs=(list tx)
|
|
|
|
|- ^- (list tx)
|
2021-03-17 05:41:43 +03:00
|
|
|
?~ batch
|
2021-04-01 04:55:49 +03:00
|
|
|
(flop txs)
|
2021-04-01 10:05:12 +03:00
|
|
|
=/ parse-result (parse-tx verifier state batch)
|
2021-04-01 04:30:15 +03:00
|
|
|
:: Parsing failed, abort batch
|
|
|
|
::
|
|
|
|
?~ parse-result
|
2021-03-17 05:41:43 +03:00
|
|
|
~
|
2021-04-01 10:05:12 +03:00
|
|
|
=^ signed=(list tx) batch u.parse-result
|
2021-04-01 06:28:13 +03:00
|
|
|
$(txs (welp (flop signed) txs))
|
2021-03-28 05:08:17 +03:00
|
|
|
::
|
|
|
|
:: TODO: change batch to be a cursor to avoid allocating atoms
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
|
|
|
++ parse-tx
|
2021-04-01 10:05:12 +03:00
|
|
|
|= [=verifier =state batch=@]
|
|
|
|
^- (unit [(list tx) rest=@])
|
2021-03-28 05:08:17 +03:00
|
|
|
=/ batch [len=0 rest=batch]
|
2021-03-17 05:41:43 +03:00
|
|
|
|^
|
|
|
|
=^ sig batch (take 3 65)
|
2021-03-18 02:42:39 +03:00
|
|
|
=/ signed-batch +.batch
|
2021-04-01 04:30:15 +03:00
|
|
|
=- ?~ res
|
|
|
|
~
|
|
|
|
:- ~
|
2021-04-01 10:05:12 +03:00
|
|
|
?. (verify-sig-and-nonce txs.u.res sig len.batch.u.res signed-batch)
|
2021-04-01 06:28:13 +03:00
|
|
|
[~ rest.batch.u.res]
|
2021-04-01 10:05:12 +03:00
|
|
|
[txs.u.res rest.batch.u.res]
|
|
|
|
^- res=(unit [txs=(list tx) =_batch])
|
|
|
|
=^ single=@ batch (take 0)
|
|
|
|
?: =(0 single)
|
|
|
|
:: Single tx
|
|
|
|
=/ single-res=(unit [=tx batch=_batch]) parse-single-tx
|
|
|
|
?~ single-res
|
|
|
|
~
|
|
|
|
`[[tx.u.single-res ~] batch.u.single-res]
|
|
|
|
:: Multiple txs with a single signature
|
|
|
|
::
|
|
|
|
=^ pad batch (take 0 7)
|
|
|
|
=^ count=@ batch (take 3 2)
|
|
|
|
::
|
|
|
|
|- ^- (unit [txs=(list tx) =_batch])
|
|
|
|
=* batch-loop $
|
|
|
|
?: =(count 0)
|
|
|
|
`[~ batch]
|
2021-04-02 05:24:31 +03:00
|
|
|
=^ pad batch (take 0) :: byte align
|
2021-04-01 10:05:12 +03:00
|
|
|
=/ next-res=(unit [=tx batch=_batch]) parse-single-tx
|
|
|
|
?~ next-res
|
|
|
|
~
|
|
|
|
=. batch batch.u.next-res
|
|
|
|
=/ rest-res batch-loop(count (dec count))
|
|
|
|
?~ rest-res
|
|
|
|
~
|
|
|
|
=. batch batch.u.rest-res
|
|
|
|
`[[tx.u.next-res txs.u.rest-res] batch]
|
|
|
|
::
|
|
|
|
++ parse-single-tx
|
|
|
|
^- (unit [tx _batch])
|
|
|
|
=^ from-proxy=@ batch (take 0 3)
|
|
|
|
?: (gth from-proxy 4) ~
|
|
|
|
=^ pad batch (take 0 4)
|
|
|
|
=^ from-ship=ship batch (take 3 4)
|
|
|
|
=- ?~ res
|
|
|
|
~
|
|
|
|
=/ =proxy
|
|
|
|
?+ from-proxy !! :: checked above that lte 4
|
|
|
|
%0 %own
|
|
|
|
%1 %spawn
|
|
|
|
%2 %manage
|
|
|
|
%3 %vote
|
|
|
|
%4 %transfer
|
|
|
|
==
|
|
|
|
`[[[from-ship proxy] skim-tx.u.res] batch.u.res]
|
|
|
|
^- res=(unit [=skim-tx =_batch])
|
2021-03-17 05:41:43 +03:00
|
|
|
=^ op batch (take 0 7)
|
2021-04-01 10:05:12 +03:00
|
|
|
?+ op ~>(%slog.[0 %strange-opcode] ~)
|
2021-03-16 06:49:51 +03:00
|
|
|
%0
|
2021-03-18 02:42:39 +03:00
|
|
|
=^ reset=@ batch (take 0)
|
2021-03-17 05:41:43 +03:00
|
|
|
=^ =ship batch (take 3 4)
|
|
|
|
=^ =address batch (take 3 20)
|
2021-04-01 10:05:12 +03:00
|
|
|
`[[%transfer-point ship address =(0 reset)] batch]
|
2021-03-17 05:41:43 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
%1 =^(res batch take-ship-address `[[%spawn res] batch])
|
2021-03-17 05:41:43 +03:00
|
|
|
%2
|
2021-03-18 02:42:39 +03:00
|
|
|
=^ breach=@ batch (take 0)
|
2021-03-17 05:41:43 +03:00
|
|
|
=^ =ship batch (take 3 4)
|
|
|
|
=^ encrypt=@ batch (take 3 32)
|
|
|
|
=^ auth=@ batch (take 3 32)
|
|
|
|
=^ crypto-suite=@ batch (take 3 4)
|
2021-04-01 10:05:12 +03:00
|
|
|
`[[%configure-keys ship encrypt auth crypto-suite =(0 breach)] batch]
|
|
|
|
::
|
|
|
|
%3 =^(res batch take-escape `[[%escape res] batch])
|
|
|
|
%4 =^(res batch take-escape `[[%cancel-escape res] batch])
|
|
|
|
%5 =^(res batch take-escape `[[%adopt res] batch])
|
|
|
|
%6 =^(res batch take-escape `[[%reject res] batch])
|
|
|
|
%7 =^(res batch take-escape `[[%detach res] batch])
|
|
|
|
%8 =^(res batch take-ship-address `[[%set-management-proxy res] batch])
|
|
|
|
%9 =^(res batch take-ship-address `[[%set-spawn-proxy res] batch])
|
|
|
|
%10 =^(res batch take-ship-address `[[%set-voting-proxy res] batch])
|
|
|
|
%11 =^(res batch take-ship-address `[[%set-transfer-proxy res] batch])
|
2021-03-16 06:49:51 +03:00
|
|
|
==
|
2021-03-17 05:41:43 +03:00
|
|
|
::
|
|
|
|
:: Take a bite
|
|
|
|
::
|
|
|
|
++ take
|
|
|
|
|= =bite
|
|
|
|
^- [@ _batch]
|
2021-03-18 02:42:39 +03:00
|
|
|
:- (end bite +.batch)
|
|
|
|
:- %+ add -.batch
|
|
|
|
?@ bite (bex bite)
|
2021-03-17 05:41:43 +03:00
|
|
|
(mul step.bite (bex bloq.bite))
|
2021-03-18 02:42:39 +03:00
|
|
|
(rsh bite +.batch)
|
2021-03-17 05:41:43 +03:00
|
|
|
:: Encode ship and address
|
|
|
|
::
|
|
|
|
++ take-ship-address
|
|
|
|
^- [[ship address] _batch]
|
2021-03-18 02:42:39 +03:00
|
|
|
=^ pad=@ batch (take 0)
|
2021-03-17 05:41:43 +03:00
|
|
|
=^ =ship batch (take 3 4)
|
|
|
|
=^ =address batch (take 3 20)
|
2021-03-18 02:42:39 +03:00
|
|
|
[[ship address] batch]
|
2021-03-17 05:41:43 +03:00
|
|
|
:: Encode escape-related txs
|
|
|
|
::
|
|
|
|
++ take-escape
|
|
|
|
^- [[ship ship] _batch]
|
2021-03-18 02:42:39 +03:00
|
|
|
=^ pad=@ batch (take 0)
|
2021-03-17 05:41:43 +03:00
|
|
|
=^ child=ship batch (take 3 4)
|
|
|
|
=^ parent=ship batch (take 3 4)
|
2021-03-18 02:42:39 +03:00
|
|
|
[[child parent] batch]
|
2021-04-01 10:05:12 +03:00
|
|
|
::
|
|
|
|
++ verify-sig-and-nonce
|
|
|
|
|= [txs=(list tx) sig=@ len=@ud signed-batch=@]
|
|
|
|
^- ?
|
|
|
|
=/ creds=(list [=address =nonce])
|
|
|
|
%+ turn txs
|
|
|
|
|= =tx
|
|
|
|
=/ point (get-point state ship.from.tx)
|
|
|
|
?> ?=(^ point) :: we never parse more than four bytes
|
|
|
|
?- proxy.from.tx
|
|
|
|
%own owner.own.u.point
|
|
|
|
%spawn spawn-proxy.own.u.point
|
|
|
|
%manage management-proxy.own.u.point
|
|
|
|
%vote voting-proxy.own.u.point
|
|
|
|
%transfer transfer-proxy.own.u.point
|
|
|
|
==
|
|
|
|
=/ nonces (turn creds |=([* =nonce] nonce))
|
|
|
|
=/ signed-data
|
|
|
|
%: can 0
|
|
|
|
[(mul (bex 5) (lent nonces)) (rep 5 nonces)]
|
|
|
|
[len (end [0 len] signed-batch)]
|
|
|
|
~
|
|
|
|
==
|
|
|
|
=/ dress (verify-sig sig signed-data)
|
|
|
|
?~ dress
|
|
|
|
|
|
|
|
|
(levy creds |=([=address *] =(address u.dress)))
|
2021-03-18 02:42:39 +03:00
|
|
|
:: Verify signature and produce signer address
|
2021-03-17 05:41:43 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
++ verify-sig
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [sig=@ txdata=@]
|
2021-03-28 05:08:17 +03:00
|
|
|
^- (unit address)
|
2021-03-17 05:41:43 +03:00
|
|
|
|^
|
|
|
|
=^ v sig (take 3)
|
|
|
|
=^ r sig (take 3 32)
|
|
|
|
=^ s sig (take 3 32)
|
|
|
|
(verifier txdata v r s)
|
|
|
|
::
|
|
|
|
++ take
|
|
|
|
|= =bite
|
|
|
|
[(end bite sig) (rsh bite sig)]
|
|
|
|
--
|
|
|
|
--
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-01 04:17:37 +03:00
|
|
|
++ ship-rank
|
2021-03-16 06:49:51 +03:00
|
|
|
|= =ship
|
2021-04-01 04:17:37 +03:00
|
|
|
^- ?(%0 %1 %2 %3 %4)
|
|
|
|
?: (lth ship 0x100) %0
|
|
|
|
?: (lth ship 0x1.0000) %1
|
|
|
|
?: (lth ship 0x1.0000.0000) %2
|
|
|
|
?: (lth ship 0x1.0000.0000.0000.0000) %3
|
|
|
|
%4
|
|
|
|
::
|
|
|
|
++ sein :: autoboss
|
|
|
|
|= who=ship
|
|
|
|
^- ship
|
|
|
|
=/ mir (ship-rank who)
|
|
|
|
?- mir
|
|
|
|
%0 who
|
|
|
|
%1 (end 3 who)
|
|
|
|
%2 (end 4 who)
|
|
|
|
%3 (end 5 who)
|
|
|
|
%4 (end 4 who)
|
|
|
|
==
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-03-18 02:42:39 +03:00
|
|
|
++ pass-from-eth
|
|
|
|
|= [enc=octs aut=octs sut=@ud]
|
|
|
|
^- pass
|
|
|
|
%^ cat 3 'b'
|
|
|
|
?. &(=(1 sut) =(p.enc 32) =(p.aut 32))
|
2021-03-18 23:32:32 +03:00
|
|
|
(cat 8 0 0) :: TODO: fix
|
2021-03-18 02:42:39 +03:00
|
|
|
(cat 8 q.aut q.enc)
|
2021-04-01 10:05:12 +03:00
|
|
|
:: Produces null only if ship is not a galaxy, star, or planet
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
|
|
|
++ get-point
|
|
|
|
|= [=state =ship]
|
2021-04-01 04:55:49 +03:00
|
|
|
^- (unit point)
|
2021-03-16 06:49:51 +03:00
|
|
|
=/ existing (~(get by points.state) ship)
|
|
|
|
?^ existing
|
2021-04-01 04:55:49 +03:00
|
|
|
`u.existing
|
2021-04-01 10:05:12 +03:00
|
|
|
?+ (ship-rank ship) ~>(%slog.[0 %strange-point] ~)
|
2021-04-01 04:55:49 +03:00
|
|
|
%0 `%*(. *point dominion %l1)
|
|
|
|
?(%1 %2)
|
|
|
|
=/ existing-parent $(ship (sein ship))
|
|
|
|
?~ existing-parent ~
|
|
|
|
:- ~
|
|
|
|
%* . *point
|
|
|
|
dominion
|
|
|
|
?- dominion.u.existing-parent
|
2021-03-18 02:42:39 +03:00
|
|
|
%l1 %l1
|
|
|
|
%l2 %l2
|
|
|
|
%spawn %l2
|
|
|
|
==
|
2021-03-16 06:49:51 +03:00
|
|
|
==
|
|
|
|
==
|
2021-04-02 05:24:31 +03:00
|
|
|
-- =>
|
2021-03-16 06:49:51 +03:00
|
|
|
|%
|
2021-03-17 04:25:27 +03:00
|
|
|
:: Receive log from L1 transaction
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-03-17 04:25:27 +03:00
|
|
|
++ receive-log
|
2021-04-01 04:17:37 +03:00
|
|
|
|= [=state log=event-log]
|
2021-03-18 23:32:32 +03:00
|
|
|
^- [effects ^state]
|
2021-03-16 06:49:51 +03:00
|
|
|
=* log-name i.topics.log
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name changed-dns:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=(~ t.topics.log)
|
|
|
|
=/ words (rip 8 data.log)
|
2021-03-18 23:32:32 +03:00
|
|
|
?> ?=([c=@ @ b=@ @ a=@ @ @ @ @ ~] words) :: TODO: not always true
|
|
|
|
=* one &5.words
|
2021-03-16 06:49:51 +03:00
|
|
|
=* two &3.words
|
2021-03-18 23:32:32 +03:00
|
|
|
=* tri &1.words
|
2021-04-01 04:17:37 +03:00
|
|
|
`state(dns (turn ~[one two tri] |=(a=@ (swp 3 a))))
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name approval-for-all:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ @ ~] t.topics.log)
|
2021-03-17 04:25:27 +03:00
|
|
|
=* owner i.t.topics.log
|
2021-03-16 06:49:51 +03:00
|
|
|
=* operator i.t.t.topics.log
|
2021-03-28 05:08:17 +03:00
|
|
|
=/ approved !=(0 data.log)
|
2021-03-16 06:49:51 +03:00
|
|
|
=- `state(operators -)
|
|
|
|
?: approved
|
2021-03-17 04:25:27 +03:00
|
|
|
(~(put ju operators.state) owner operator)
|
|
|
|
(~(del ju operators.state) owner operator)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
|
|
|
:: The rest of the logs modify a particular ship, specified in the
|
|
|
|
:: second topic. We fetch it, and insert the modification back into
|
|
|
|
:: our state.
|
|
|
|
::
|
2021-03-28 05:08:17 +03:00
|
|
|
:: TODO: cast in =* instead of after
|
|
|
|
::
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ *] t.topics.log)
|
2021-03-28 05:08:17 +03:00
|
|
|
=* ship=@ i.t.topics.log
|
2021-04-01 04:55:49 +03:00
|
|
|
=/ the-point (get-point state ship)
|
|
|
|
?> ?=(^ the-point)
|
|
|
|
=* point u.the-point
|
2021-03-28 05:08:17 +03:00
|
|
|
=- [effects state(points (~(put by points.state) ship new-point))]
|
2021-03-18 02:42:39 +03:00
|
|
|
^- [=effects new-point=^point]
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name changed-spawn-proxy:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=(%l1 -.point)
|
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
|
|
|
=* to i.t.t.topics.log
|
2021-03-18 23:32:32 +03:00
|
|
|
:: Depositing to L2 is represented by a spawn proxy change on L1,
|
|
|
|
:: but it doesn't change the actual spawn proxy.
|
|
|
|
::
|
2021-03-16 06:49:51 +03:00
|
|
|
:- ~
|
2021-03-18 23:32:32 +03:00
|
|
|
?: =(deposit-address to)
|
|
|
|
point(dominion %spawn)
|
2021-04-01 10:05:12 +03:00
|
|
|
point(address.spawn-proxy.own to)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
|
|
|
:: The rest can be done by any ship on L1, even if their spawn proxy
|
|
|
|
:: is set to L2
|
|
|
|
::
|
|
|
|
?< ?=(%l2 -.point)
|
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name broke-continuity:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=(~ t.t.topics.log)
|
2021-03-28 05:08:17 +03:00
|
|
|
=* rift=@ data.log
|
|
|
|
:- [ship %rift rift]~
|
|
|
|
point(rift.net rift)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name changed-keys:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=(~ t.t.topics.log)
|
|
|
|
=/ words (rip 8 data.log)
|
2021-03-18 23:32:32 +03:00
|
|
|
?> ?=([@ @ @ @ ~] words) :: TODO: reverse order?
|
2021-03-28 05:08:17 +03:00
|
|
|
=* encryption=@ i.words
|
|
|
|
=* authentication=@ i.t.words
|
|
|
|
=* crypto-suite=@ i.t.t.words :: TODO: store in state, or add to pass
|
|
|
|
=* life=@ i.t.t.t.words
|
2021-03-16 06:49:51 +03:00
|
|
|
=/ =pass (pass-from-eth 32^encryption 32^authentication crypto-suite)
|
2021-03-28 05:08:17 +03:00
|
|
|
:- [ship %keys life crypto-suite pass]~
|
2021-03-18 02:42:39 +03:00
|
|
|
point(life.net life, pass.net pass)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name escape-accepted:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
2021-03-28 05:08:17 +03:00
|
|
|
=* parent=@ i.t.t.topics.log
|
|
|
|
:- [ship %spon `parent]~
|
|
|
|
point(escape.net ~, sponsor.net [%& parent])
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name lost-sponsor:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
|
|
|
=* parent i.t.t.topics.log
|
2021-03-28 05:08:17 +03:00
|
|
|
:- [ship %spon ~]~
|
2021-03-18 02:42:39 +03:00
|
|
|
point(has.sponsor.net %|)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
|
|
|
:: The rest do not produce effects
|
|
|
|
::
|
|
|
|
:- ~
|
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name escape-requested:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
2021-03-28 05:08:17 +03:00
|
|
|
=* parent=@ i.t.t.topics.log
|
|
|
|
point(escape.net `parent)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name escape-canceled:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
|
|
|
=* parent i.t.t.topics.log
|
2021-03-18 02:42:39 +03:00
|
|
|
point(escape.net ~)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name owner-changed:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
|
|
|
=* to i.t.t.topics.log
|
2021-03-18 23:32:32 +03:00
|
|
|
:: Depositing to L2 is represented by an ownership change on L1,
|
|
|
|
:: but it doesn't change who actually owns the ship.
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
|
|
|
?: =(deposit-address to)
|
2021-03-18 02:42:39 +03:00
|
|
|
point(dominion %l2)
|
2021-04-01 10:05:12 +03:00
|
|
|
point(address.owner.own to)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name changed-transfer-proxy:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
|
|
|
=* to i.t.t.topics.log
|
2021-04-01 10:05:12 +03:00
|
|
|
point(address.transfer-proxy.own to)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name changed-management-proxy:log-names)
|
2021-03-16 06:49:51 +03:00
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
|
|
|
=* to i.t.t.topics.log
|
2021-04-01 10:05:12 +03:00
|
|
|
point(address.management-proxy.own to)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-02 05:24:31 +03:00
|
|
|
?: =(log-name changed-voting-proxy:log-names)
|
2021-03-18 02:42:39 +03:00
|
|
|
?> ?=([@ ~] t.t.topics.log)
|
2021-03-16 06:49:51 +03:00
|
|
|
=* to i.t.t.topics.log
|
2021-04-01 10:05:12 +03:00
|
|
|
point(address.voting-proxy.own to)
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
~> %slog.[0 %unknown-log]
|
2021-03-18 23:32:32 +03:00
|
|
|
point :: TODO: crash?
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
:: Receive batch of L2 transactions
|
|
|
|
::
|
|
|
|
++ receive-batch
|
2021-03-28 05:08:17 +03:00
|
|
|
|= [=verifier =state batch=@]
|
2021-04-01 10:05:12 +03:00
|
|
|
=/ txs=(list tx) (parse-batch verifier state batch)
|
2021-03-17 05:41:43 +03:00
|
|
|
|- ^- [effects ^state]
|
|
|
|
?~ txs
|
|
|
|
[~ state]
|
2021-04-01 10:05:12 +03:00
|
|
|
:: Increment nonce, even if it later fails
|
|
|
|
::
|
|
|
|
=. points.state (increment-nonce state from.i.txs)
|
|
|
|
:: Process tx
|
|
|
|
::
|
2021-04-01 04:17:37 +03:00
|
|
|
=^ effects-1 state
|
2021-04-01 04:55:49 +03:00
|
|
|
=/ tx-result=(unit [effects ^state]) (receive-tx state i.txs)
|
|
|
|
?~ tx-result
|
|
|
|
`state
|
|
|
|
u.tx-result
|
2021-03-17 05:41:43 +03:00
|
|
|
=^ effects-2 state $(txs t.txs)
|
|
|
|
[(welp effects-1 effects-2) state]
|
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
++ increment-nonce
|
|
|
|
|= [=state =ship =proxy]
|
|
|
|
%+ ~(put by points.state) ship
|
|
|
|
=/ point (get-point state ship)
|
|
|
|
?> ?=(^ point) :: we only parsed 4 bytes
|
|
|
|
?- proxy
|
|
|
|
%own u.point(nonce.owner.own +(nonce.owner.own.u.point))
|
|
|
|
%spawn u.point(nonce.spawn-proxy.own +(nonce.spawn-proxy.own.u.point))
|
|
|
|
%manage
|
|
|
|
u.point(nonce.management-proxy.own +(nonce.management-proxy.own.u.point))
|
|
|
|
::
|
|
|
|
%vote u.point(nonce.voting-proxy.own +(nonce.voting-proxy.own.u.point))
|
|
|
|
%transfer
|
|
|
|
u.point(nonce.transfer-proxy.own +(nonce.transfer-proxy.own.u.point))
|
|
|
|
==
|
|
|
|
::
|
2021-03-17 05:41:43 +03:00
|
|
|
:: Receive an individual L2 transaction
|
|
|
|
::
|
|
|
|
++ receive-tx
|
2021-04-01 10:05:12 +03:00
|
|
|
|= [=state =tx]
|
2021-03-17 04:25:27 +03:00
|
|
|
|^
|
2021-04-01 04:55:49 +03:00
|
|
|
^- (unit [effects ^state])
|
2021-04-01 10:05:12 +03:00
|
|
|
?- +<.tx
|
|
|
|
%spawn (process-spawn +>.tx)
|
|
|
|
%transfer-point (w-point process-transfer-point +>.tx)
|
|
|
|
%configure-keys (w-point-fx process-configure-keys +>.tx)
|
|
|
|
%escape (w-point process-escape +>.tx)
|
|
|
|
%cancel-escape (w-point process-cancel-escape +>.tx)
|
|
|
|
%adopt (w-point-fx process-adopt +>.tx)
|
|
|
|
%reject (w-point process-reject +>.tx)
|
|
|
|
%detach (w-point-fx process-detach +>.tx)
|
|
|
|
%set-management-proxy (w-point process-set-management-proxy +>.tx)
|
|
|
|
%set-spawn-proxy (w-point process-set-spawn-proxy +>.tx)
|
|
|
|
%set-voting-proxy (w-point process-set-voting-proxy +>.tx)
|
|
|
|
%set-transfer-proxy (w-point process-set-transfer-proxy +>.tx)
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
++ w-point-fx
|
2021-04-01 04:55:49 +03:00
|
|
|
|* [fun=$-([ship point *] (unit [effects point])) =ship rest=*]
|
|
|
|
^- (unit [effects ^state])
|
2021-03-17 04:25:27 +03:00
|
|
|
=/ point (get-point state ship)
|
2021-04-01 04:55:49 +03:00
|
|
|
?~ point ~
|
|
|
|
?> ?=(%l2 -.u.point)
|
|
|
|
=/ res=(unit [=effects new-point=^point]) (fun ship u.point rest)
|
|
|
|
?~ res
|
|
|
|
~
|
|
|
|
`[effects.u.res state(points (~(put by points.state) ship new-point.u.res))]
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ w-point
|
2021-04-01 04:55:49 +03:00
|
|
|
|* [fun=$-([ship point *] (unit point)) =ship rest=*]
|
|
|
|
^- (unit [effects ^state])
|
2021-03-17 04:25:27 +03:00
|
|
|
=/ point (get-point state ship)
|
2021-04-01 04:55:49 +03:00
|
|
|
?~ point ~
|
|
|
|
?> ?=(%l2 -.u.point)
|
|
|
|
=/ new-point=(unit ^point) (fun ship u.point rest)
|
|
|
|
?~ new-point
|
|
|
|
~
|
|
|
|
``state(points (~(put by points.state) ship u.new-point))
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-transfer-point
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point to=address reset=?]
|
2021-04-01 10:05:12 +03:00
|
|
|
:: Assert from owner or transfer prxoy
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(ship ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%transfer proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
:: Execute transfer
|
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
=: address.owner.own.point to
|
|
|
|
address.transfer-proxy.own.point *address
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
|
|
|
:: Execute reset if requested
|
|
|
|
::
|
|
|
|
?. reset
|
2021-04-01 04:55:49 +03:00
|
|
|
`point
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-03-18 02:42:39 +03:00
|
|
|
=? net.point (gth life.net.point 0)
|
2021-03-18 23:32:32 +03:00
|
|
|
[+(life) 0 +(rift) sponsor escape]:net.point
|
2021-04-01 10:05:12 +03:00
|
|
|
=: address.spawn-proxy.own.point *address
|
|
|
|
address.management-proxy.own.point *address
|
|
|
|
address.voting-proxy.own.point *address
|
|
|
|
address.transfer-proxy.own.point *address
|
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
`point
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-spawn
|
|
|
|
|= [=ship to=address]
|
2021-04-01 04:55:49 +03:00
|
|
|
^- (unit [effects ^state])
|
2021-04-01 04:17:37 +03:00
|
|
|
=/ parent=^ship (sein ship)
|
2021-03-17 04:25:27 +03:00
|
|
|
:: Assert parent is on L2
|
|
|
|
::
|
|
|
|
=/ parent-point (get-point state parent)
|
2021-04-01 04:55:49 +03:00
|
|
|
?~ parent-point ~
|
|
|
|
?. ?=(?(%l2 %spawn) -.u.parent-point) ~
|
2021-04-01 10:05:12 +03:00
|
|
|
:: Assert from owner or spawn proxy
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(parent ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%spawn proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
:: Assert child not already spawned
|
|
|
|
::
|
|
|
|
:: TODO: verify this means the ship exists on neither L1 nor L2
|
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
?: (~(has by points.state) ship) ~
|
2021-03-17 04:25:27 +03:00
|
|
|
:: Assert one-level-down
|
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
?. =(+((ship-rank parent)) (ship-rank ship)) ~
|
2021-03-17 04:25:27 +03:00
|
|
|
:: TODO check spawnlimit
|
|
|
|
::
|
|
|
|
=. points.state
|
2021-03-18 02:42:39 +03:00
|
|
|
%+ ~(put by points.state) ship
|
2021-04-01 10:05:12 +03:00
|
|
|
:: If spawning to self, just do it
|
|
|
|
::
|
|
|
|
?: ?| ?& =(%own proxy.from.tx)
|
|
|
|
=(to address.owner.own.u.parent-point)
|
|
|
|
==
|
|
|
|
?& =(%spawn proxy.from.tx)
|
|
|
|
=(to address.spawn-proxy.own.u.parent-point)
|
|
|
|
==
|
|
|
|
==
|
2021-03-18 02:42:39 +03:00
|
|
|
%* . *point
|
2021-04-01 10:05:12 +03:00
|
|
|
dominion %l2
|
|
|
|
address.owner.own to
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
|
|
|
:: Else spawn to parent and set transfer proxy
|
|
|
|
::
|
2021-03-18 02:42:39 +03:00
|
|
|
%* . *point
|
2021-04-01 10:05:12 +03:00
|
|
|
dominion %l2
|
|
|
|
address.owner.own address.owner.own.u.parent-point
|
|
|
|
address.transfer-proxy.own to
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
``state
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-configure-keys
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point encrypt=@ auth=@ crypto-suite=@ breach=?]
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(ship ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%manage proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-03-18 23:32:32 +03:00
|
|
|
=^ rift-effects rift.net.point
|
|
|
|
?. breach
|
|
|
|
`rift.net.point
|
|
|
|
[[ship %rift +(rift.net.point)]~ +(rift.net.point)]
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
=/ =pass (pass-from-eth 32^encrypt 32^auth crypto-suite)
|
|
|
|
=? net.point !=(pass.net.point pass) :: TODO: check crypto-suite
|
|
|
|
net.point(life +(life.net.point), pass pass)
|
|
|
|
=/ keys-effects
|
2021-03-18 23:32:32 +03:00
|
|
|
?: =(pass.net.point pass) :: TODO: check will always be true
|
2021-03-17 04:25:27 +03:00
|
|
|
~
|
|
|
|
[ship %keys life.net.point crypto-suite pass]~
|
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
`[(welp rift-effects keys-effects) point]
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-escape
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point parent=ship]
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(ship ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%manage proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
:: TODO: don't allow "peer escape"?
|
2021-03-18 23:32:32 +03:00
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
?. =(+((ship-rank parent)) (ship-rank ship)) ~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
`point(escape.net `parent) :: TODO: omitting a lot of source material?
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-cancel-escape
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point parent=ship]
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(ship ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%manage proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
`point(escape.net ~)
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-adopt
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point parent=ship]
|
2021-04-01 10:05:12 +03:00
|
|
|
:: TODO: assert child/parent on L2?
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(parent ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%manage proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
?. =(escape.net.point `ship) ~
|
|
|
|
:+ ~ [ship %spon `parent]~
|
2021-03-18 02:42:39 +03:00
|
|
|
point(escape.net ~, sponsor.net [%& parent])
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-reject
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point parent=ship]
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(parent ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%manage proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
`point(escape.net ~)
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-detach
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point parent=ship]
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(parent ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%manage proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 04:55:49 +03:00
|
|
|
:+ ~ [ship %spon ~]~
|
2021-03-18 02:42:39 +03:00
|
|
|
point(has.sponsor.net %|)
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-set-management-proxy
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point =address]
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(ship ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%manage proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
`point(address.management-proxy.own address)
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-set-spawn-proxy
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point =address]
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(ship ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%spawn proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
`point(address.spawn-proxy.own address)
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-set-voting-proxy
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point =address]
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(ship ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%vote proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
`point(address.voting-proxy.own address)
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
|
|
|
++ process-set-transfer-proxy
|
2021-03-18 02:42:39 +03:00
|
|
|
|= [=ship =point =address]
|
2021-04-01 10:05:12 +03:00
|
|
|
?. ?& =(ship ship.from.tx)
|
|
|
|
|(=(%own proxy.from.tx) =(%transfer proxy.from.tx))
|
2021-03-17 04:25:27 +03:00
|
|
|
==
|
2021-04-01 04:55:49 +03:00
|
|
|
~
|
2021-03-17 04:25:27 +03:00
|
|
|
::
|
2021-04-01 10:05:12 +03:00
|
|
|
`point(address.transfer-proxy.own address)
|
2021-03-17 04:25:27 +03:00
|
|
|
--
|
2021-03-16 06:49:51 +03:00
|
|
|
--
|
|
|
|
::
|
|
|
|
:: State transition function
|
|
|
|
::
|
|
|
|
:: TODO: wrap in mule to no-op instead of crash? perhaps that's better
|
|
|
|
:: as part of the spec? it's not a clear part of the nock spec, though
|
|
|
|
::
|
2021-03-18 03:27:30 +03:00
|
|
|
|= [=verifier =state =input]
|
2021-03-18 02:42:39 +03:00
|
|
|
^- [effects ^state]
|
2021-03-16 06:49:51 +03:00
|
|
|
?: ?=(%log -.input)
|
|
|
|
:: Received log from L1 transaction
|
|
|
|
::
|
2021-03-17 05:41:43 +03:00
|
|
|
(receive-log state event-log.input)
|
2021-03-28 05:08:17 +03:00
|
|
|
:: Received L2 batch
|
2021-03-16 06:49:51 +03:00
|
|
|
::
|
2021-03-28 05:08:17 +03:00
|
|
|
(receive-batch verifier state batch.input)
|