2021-03-18 03:27:30 +03:00
|
|
|
/+ *test, naive, ethereum
|
|
|
|
|%
|
2021-03-18 04:07:21 +03:00
|
|
|
++ address @ux
|
2021-03-28 05:08:17 +03:00
|
|
|
++ n |=([=^state:naive =^input:naive] (naive verifier +<))
|
2021-03-18 23:32:32 +03:00
|
|
|
:: TODO: does this uniquely produce the pubkey?
|
|
|
|
::
|
2021-03-28 05:08:17 +03:00
|
|
|
++ verifier
|
2021-03-18 03:27:30 +03:00
|
|
|
^- ^verifier:naive
|
|
|
|
|= [dat=@ v=@ r=@ s=@]
|
2021-03-28 05:08:17 +03:00
|
|
|
=/ result
|
|
|
|
%- mule
|
|
|
|
|.
|
|
|
|
=, secp256k1:secp:crypto
|
|
|
|
%- address-from-pub:key:ethereum
|
|
|
|
%- serialize-point
|
|
|
|
(ecdsa-raw-recover dat v r s)
|
|
|
|
?- -.result
|
|
|
|
%| ~
|
|
|
|
%& `p.result
|
|
|
|
==
|
2021-03-18 04:07:21 +03:00
|
|
|
::
|
|
|
|
++ key address-from-prv:key:ethereum
|
2021-04-14 21:30:00 +03:00
|
|
|
::
|
2021-03-18 04:07:21 +03:00
|
|
|
++ log
|
2021-04-02 05:24:31 +03:00
|
|
|
|= [log-name=@ux data=@t topics=(lest @)]
|
2021-03-18 04:07:21 +03:00
|
|
|
^- ^input:naive
|
2021-04-02 05:24:31 +03:00
|
|
|
[%log *@ux data log-name topics]
|
2021-03-18 04:07:21 +03:00
|
|
|
::
|
2021-04-14 21:30:00 +03:00
|
|
|
:: ~bud is so that we aren't testing something impossible in Azimuth, like a star spawned before its sponsor galaxy
|
2021-03-18 04:07:21 +03:00
|
|
|
::
|
|
|
|
++ init-bud
|
|
|
|
|= =^state:naive
|
2021-04-14 21:30:00 +03:00
|
|
|
(n state (owner-changed:l1 ~bud 0x123))
|
|
|
|
::
|
|
|
|
:: ~dopbud is for testing L1 ownership with L2 spawn proxy
|
|
|
|
::
|
|
|
|
++ init-dopbud
|
|
|
|
|= =^state:naive
|
|
|
|
=^ f1 state (init-bud state)
|
|
|
|
=^ f2 state (n state (owner-changed:l1 ~dopbud (key ~dopbud)))
|
2021-04-14 21:33:31 +03:00
|
|
|
=^ f3 state (n state (changed-spawn-proxy:l1 ~dopbud deposit-address:naive))
|
2021-04-14 21:30:00 +03:00
|
|
|
[:(welp f1 f2 f3) state]
|
|
|
|
::
|
|
|
|
:: ~marbud is for testing L2 ownership
|
|
|
|
::
|
|
|
|
++ init-marbud
|
|
|
|
|= =^state:naive
|
|
|
|
=^ f1 state (init-bud state)
|
|
|
|
=^ f2 state (n state (owner-changed:l1 ~marbud (key ~marbud)))
|
|
|
|
=^ f3 state (n state (owner-changed:l1 ~marbud deposit-address:naive))
|
|
|
|
[:(welp f1 f2 f3) state]
|
2021-03-18 04:07:21 +03:00
|
|
|
::
|
|
|
|
++ sign-tx
|
2021-04-01 10:05:12 +03:00
|
|
|
|= [pk=@ nonce=@ud tx=@]
|
|
|
|
=+ (ecdsa-raw-sign:secp256k1:secp:crypto (dad:naive 5 nonce tx) pk)
|
2021-03-18 04:07:21 +03:00
|
|
|
(cat 3 (can 3 1^v 32^r 32^s ~) tx)
|
|
|
|
::
|
2021-04-14 21:30:00 +03:00
|
|
|
++ l1
|
|
|
|
|%
|
|
|
|
::
|
|
|
|
:: Azimuth.sol events
|
|
|
|
::
|
|
|
|
++ owner-changed
|
|
|
|
|= [=ship =address]
|
|
|
|
(log owner-changed:log-names:naive *@t ship address ~)
|
|
|
|
::
|
|
|
|
:: TODO: Activated (not in lib/naive.hoon)
|
|
|
|
:: TODO: Spawned (not in lib/naive.hoon)
|
|
|
|
::
|
|
|
|
++ escape-requested
|
|
|
|
|= [escapee=ship parent=ship]
|
|
|
|
(log escape-requested:log-names:naive *@t escapee parent ~)
|
|
|
|
::
|
|
|
|
++ escape-canceled
|
|
|
|
:: The parent is pinned but not used in lib/naive.hoon for some reason
|
|
|
|
|= [escapee=ship parent=ship]
|
|
|
|
(log escape-canceled:log-names:naive *@t escapee parent ~)
|
|
|
|
::
|
|
|
|
++ escape-accepted
|
|
|
|
|= [escapee=ship parent=ship]
|
|
|
|
(log escape-accepted:log-names:naive *@t escapee parent ~)
|
|
|
|
::
|
|
|
|
++ lost-sponsor
|
|
|
|
|= [lost=ship parent=ship]
|
|
|
|
(log lost-sponsor:log-names:naive *@t lost parent ~)
|
|
|
|
::
|
|
|
|
:: TODO: ChangedKeys (lib/naive.hoon still has TODOs)
|
|
|
|
::
|
|
|
|
++ broke-continuity
|
|
|
|
|= [=ship rift=@]
|
|
|
|
(log broke-continuity:log-names:naive rift ship ~)
|
|
|
|
::
|
|
|
|
++ changed-spawn-proxy
|
2021-04-14 21:33:31 +03:00
|
|
|
|= [=ship =address]
|
|
|
|
(log changed-spawn-proxy:log-names:naive *@t ship address ~)
|
2021-04-14 21:30:00 +03:00
|
|
|
::
|
|
|
|
++ changed-transfer-proxy
|
|
|
|
|= [=ship =address]
|
|
|
|
(log changed-transfer-proxy:log-names:naive *@t ship address ~)
|
|
|
|
::
|
|
|
|
++ changed-management-proxy
|
2021-04-14 21:31:47 +03:00
|
|
|
|= [=ship =address]
|
2021-04-14 21:30:00 +03:00
|
|
|
(log changed-management-proxy:log-names:naive *@t ship address ~)
|
|
|
|
::
|
|
|
|
++ changed-voting-proxy
|
2021-04-14 21:31:47 +03:00
|
|
|
|= [=ship =address]
|
2021-04-14 21:30:00 +03:00
|
|
|
(log changed-voting-proxy:log-names:naive *@t ship address ~)
|
|
|
|
::
|
|
|
|
:: TODO: ChangedDns (lib/naive still has TODOs)
|
|
|
|
::
|
|
|
|
:: Ecliptic.sol events
|
|
|
|
::
|
|
|
|
++ approval-for-all
|
|
|
|
|= [owner=address operator=address approved=@t]
|
|
|
|
(log approval-for-all:log-names:naive approved owner operator ~)
|
|
|
|
::
|
|
|
|
--
|
2021-04-09 17:53:15 +03:00
|
|
|
::
|
2021-04-14 21:30:00 +03:00
|
|
|
++ l2
|
2021-04-09 17:53:15 +03:00
|
|
|
::
|
2021-04-14 21:30:00 +03:00
|
|
|
|%
|
|
|
|
::
|
2021-04-14 22:36:56 +03:00
|
|
|
:: TODO: Allow requesting ship to differ from the ship the action is for
|
|
|
|
::
|
|
|
|
++ spawn
|
|
|
|
|= [nonce=@ud parent=ship proxy=@tas child=ship =address]
|
|
|
|
:: TODO: allow requesting ship and parent ship to differ
|
|
|
|
%^ sign-tx parent nonce
|
|
|
|
(take-ship-address:bits %spawn parent proxy child address)
|
|
|
|
::
|
|
|
|
++ transfer-point
|
|
|
|
|= [nonce=@ud =ship =address proxy=@tas reset=?]
|
|
|
|
:: TODO: allow requesting ship and target ship to differ
|
|
|
|
%^ sign-tx ship nonce
|
2021-04-14 21:30:00 +03:00
|
|
|
%: can 3
|
2021-04-14 22:36:56 +03:00
|
|
|
(from-proxy:bits proxy)
|
|
|
|
4^ship
|
|
|
|
1^(can 0 7^%0 1^reset ~) :: %transfer-point
|
|
|
|
4^ship
|
2021-04-14 21:30:00 +03:00
|
|
|
20^address
|
|
|
|
~
|
|
|
|
==
|
|
|
|
::
|
2021-04-14 22:36:56 +03:00
|
|
|
++ configure-keys
|
|
|
|
|= [nonce=@ud =ship proxy=@tas breach=@ encrypt=@ auth=@ crypto-suite=@]
|
2021-04-14 21:30:00 +03:00
|
|
|
%^ sign-tx ship nonce
|
|
|
|
%: can 3
|
2021-04-14 22:36:56 +03:00
|
|
|
(from-proxy:bits proxy)
|
2021-04-14 21:30:00 +03:00
|
|
|
4^ship
|
2021-04-14 22:36:56 +03:00
|
|
|
1^(can 0 7^%2 1^breach ~) :: %configure-keys
|
2021-04-14 21:30:00 +03:00
|
|
|
4^ship
|
2021-04-14 22:36:56 +03:00
|
|
|
32^encrypt
|
|
|
|
32^auth
|
|
|
|
4^crypto-suite
|
2021-04-14 21:30:00 +03:00
|
|
|
~
|
|
|
|
==
|
2021-04-14 22:36:56 +03:00
|
|
|
::
|
|
|
|
++ escape
|
|
|
|
|= [nonce=@ud child=ship proxy=@tas parent=ship]
|
|
|
|
%^ sign-tx child nonce
|
|
|
|
(take-escape:bits %escape child proxy parent)
|
|
|
|
::
|
|
|
|
++ cancel-escape
|
|
|
|
|= [nonce=@ud child=ship proxy=@tas parent=ship]
|
|
|
|
%^ sign-tx child nonce
|
|
|
|
(take-escape:bits %cancel-escape child proxy parent)
|
|
|
|
::
|
|
|
|
++ adopt
|
|
|
|
|= [nonce=@ud child=ship proxy=@tas parent=ship]
|
|
|
|
%^ sign-tx child nonce
|
|
|
|
(take-escape:bits %adopt child proxy parent)
|
|
|
|
::
|
|
|
|
++ reject
|
|
|
|
|= [nonce=@ud child=ship proxy=@tas parent=ship]
|
|
|
|
%^ sign-tx child nonce
|
|
|
|
(take-escape:bits %reject child proxy parent)
|
|
|
|
::
|
|
|
|
++ detach
|
|
|
|
|= [nonce=@ud child=ship proxy=@tas parent=ship]
|
|
|
|
%^ sign-tx child nonce
|
|
|
|
(take-escape:bits %detach child proxy parent)
|
|
|
|
::
|
|
|
|
++ set-management-proxy
|
|
|
|
|= [nonce=@ud =ship proxy=@tas =address]
|
|
|
|
%^ sign-tx ship nonce
|
|
|
|
(take-ship-address:bits %set-management-proxy ship proxy ship address)
|
|
|
|
::
|
|
|
|
++ set-spawn-proxy
|
|
|
|
|= [nonce=@ud =ship proxy=@tas =address]
|
|
|
|
%^ sign-tx ship nonce
|
|
|
|
(take-ship-address:bits %set-spawn-proxy ship proxy ship address)
|
|
|
|
::
|
|
|
|
++ set-voting-proxy
|
|
|
|
|= [nonce=@ud =ship proxy=@tas =address]
|
|
|
|
%^ sign-tx ship nonce
|
|
|
|
(take-ship-address:bits %set-voting-proxy ship proxy ship address)
|
|
|
|
::
|
|
|
|
++ set-transfer-proxy
|
|
|
|
|= [nonce=@ud =ship proxy=@tas =address]
|
|
|
|
%^ sign-tx ship nonce
|
|
|
|
(take-ship-address:bits %set-transfer-proxy ship proxy ship address)
|
|
|
|
::
|
|
|
|
++ bits
|
|
|
|
::
|
|
|
|
|%
|
|
|
|
::
|
|
|
|
:: TODO: Shouldn't need to pass all these arguments along - they should already be in the subject somewhere
|
|
|
|
::
|
|
|
|
++ take-escape
|
|
|
|
|= [action=@tas child=ship proxy=@tas parent=ship]
|
|
|
|
=/ op
|
|
|
|
?+ action !!
|
|
|
|
%escape %3
|
|
|
|
%cancel-escape %4
|
|
|
|
%adopt %5
|
|
|
|
%reject %6
|
|
|
|
%detach %7
|
|
|
|
==
|
|
|
|
%: can 3
|
|
|
|
(from-proxy proxy)
|
|
|
|
4^child
|
|
|
|
1^(can 0 7^op 1^0 ~)
|
|
|
|
4^child
|
|
|
|
4^parent
|
|
|
|
~
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ take-ship-address
|
|
|
|
|= [action=@tas from=ship proxy=@tas target=ship =address]
|
|
|
|
=/ op
|
|
|
|
?+ action !!
|
|
|
|
%spawn %1
|
|
|
|
%set-management-proxy %8
|
|
|
|
%set-spawn-proxy %9
|
|
|
|
%set-voting-proxy %10
|
|
|
|
%set-transfer-proxy %11
|
|
|
|
==
|
|
|
|
%: can 3
|
|
|
|
(from-proxy proxy)
|
|
|
|
4^from
|
|
|
|
1^(can 0 7^op 1^0 ~)
|
|
|
|
4^target
|
|
|
|
20^address
|
|
|
|
~
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ from-proxy
|
|
|
|
|= prx=@tas
|
|
|
|
=/ proxy
|
|
|
|
?+ prx !!
|
|
|
|
%own %0
|
|
|
|
%spawn %1
|
|
|
|
%manage %2
|
|
|
|
%vote %3
|
|
|
|
%transfer %4
|
|
|
|
==
|
|
|
|
1^(can 0 1^0 3^proxy 4^0 ~)
|
|
|
|
::
|
|
|
|
--
|
|
|
|
::
|
2021-04-14 21:30:00 +03:00
|
|
|
--
|
2021-04-09 23:22:52 +03:00
|
|
|
::
|
2021-03-18 03:27:30 +03:00
|
|
|
--
|
|
|
|
::
|
|
|
|
|%
|
|
|
|
++ test-log
|
|
|
|
%+ expect-eq
|
|
|
|
!>
|
2021-04-03 02:06:24 +03:00
|
|
|
:- [%point ~bud %owner 0x123]~
|
|
|
|
[[[~bud %*(. *point:naive dominion %l1, owner.own 0x123^0)] ~ ~] ~ ~]
|
2021-03-18 03:27:30 +03:00
|
|
|
::
|
|
|
|
!>
|
2021-03-28 05:08:17 +03:00
|
|
|
%^ naive verifier *^state:naive
|
2021-04-01 04:17:37 +03:00
|
|
|
:* %log *@ux *@t
|
2021-04-02 05:24:31 +03:00
|
|
|
owner-changed:log-names:naive (@ux ~bud) 0x123 ~
|
2021-03-18 03:27:30 +03:00
|
|
|
==
|
2021-03-18 04:07:21 +03:00
|
|
|
::
|
|
|
|
++ test-deposit
|
|
|
|
%+ expect-eq
|
|
|
|
!> %l2
|
|
|
|
::
|
|
|
|
!>
|
|
|
|
=| =^state:naive
|
2021-04-14 21:30:00 +03:00
|
|
|
=^ f state (init-marbud state)
|
2021-03-18 04:07:21 +03:00
|
|
|
dominion:(~(got by points.state) ~marbud)
|
|
|
|
::
|
|
|
|
++ test-batch
|
|
|
|
%+ expect-eq
|
2021-04-01 10:05:12 +03:00
|
|
|
!> [0x234 2]
|
2021-03-18 04:07:21 +03:00
|
|
|
::
|
|
|
|
!>
|
|
|
|
=| =^state:naive
|
2021-04-14 21:30:00 +03:00
|
|
|
=^ f state (init-marbud state)
|
|
|
|
=^ f state (n state %bat (transfer-point:l2 0 ~marbud (key ~marbud) %own |))
|
|
|
|
=^ f state (n state %bat (transfer-point:l2 1 ~marbud 0x234 %own |))
|
2021-03-18 04:07:21 +03:00
|
|
|
owner.own:(~(got by points.state) ~marbud)
|
2021-04-09 17:53:15 +03:00
|
|
|
::
|
|
|
|
++ test-l2-spawn-proxy-deposit
|
|
|
|
%+ expect-eq
|
|
|
|
!> %spawn
|
|
|
|
::
|
|
|
|
!>
|
|
|
|
=| =^state:naive
|
2021-04-14 21:30:00 +03:00
|
|
|
=^ f state (init-dopbud state)
|
2021-04-09 17:53:15 +03:00
|
|
|
dominion:(~(got by points.state) ~dopbud)
|
2021-04-09 23:22:52 +03:00
|
|
|
::
|
|
|
|
++ test-marbud-l2-spawn-point
|
|
|
|
%+ expect-eq
|
|
|
|
!> [`@ux`(key ~linnup-torsyx) 0]
|
|
|
|
::
|
|
|
|
!>
|
|
|
|
=| =^state:naive
|
2021-04-14 21:30:00 +03:00
|
|
|
=^ f state (init-marbud state)
|
2021-04-14 22:36:56 +03:00
|
|
|
=^ f state (n state %bat (spawn:l2 0 ~marbud %own ~linnup-torsyx (key ~linnup-torsyx)))
|
2021-04-09 23:22:52 +03:00
|
|
|
transfer-proxy.own:(~(got by points.state) ~linnup-torsyx)
|
|
|
|
::
|
|
|
|
++ test-dopbud-l2-spawn-point
|
|
|
|
%+ expect-eq
|
|
|
|
!> [`@ux`(key ~palsep-picdun) 0]
|
|
|
|
::
|
|
|
|
!>
|
|
|
|
=| =^state:naive
|
2021-04-14 21:30:00 +03:00
|
|
|
=^ f state (init-dopbud state)
|
2021-04-14 22:36:56 +03:00
|
|
|
=^ f state (n state %bat (spawn:l2 0 ~dopbud %own ~palsep-picdun (key ~palsep-picdun)))
|
2021-04-09 23:22:52 +03:00
|
|
|
transfer-proxy.own:(~(got by points.state) ~palsep-picdun)
|
2021-04-10 00:06:50 +03:00
|
|
|
::
|
2021-03-18 03:27:30 +03:00
|
|
|
--
|