mirror of
https://github.com/urbit/shrub.git
synced 2024-11-28 22:33:06 +03:00
fab9097110
Largely one-to-one port feature-wise. Support for document polls was added. Command preparation and verification got split out into /ted/claz/prep-command, and got a dedicated +prep-result type to facilitate future support for more complex preparation steps.
77 lines
2.0 KiB
Plaintext
77 lines
2.0 KiB
Plaintext
:: claz: command & call structures
|
|
::
|
|
::TODO contract structures might go into stdlib
|
|
::
|
|
=, ethereum-types
|
|
::
|
|
|%
|
|
++ command
|
|
$% [%generate =path =network as=address =batch]
|
|
==
|
|
::
|
|
++ network
|
|
$? %mainnet
|
|
%ropsten
|
|
%fakenet
|
|
[%other id=@]
|
|
==
|
|
::
|
|
++ batch
|
|
$~ [%deed '{}']
|
|
$% :: %single: execute a single ecliptic function call
|
|
::
|
|
[%single =call]
|
|
:: %deed: deed ships based on json, assumes spawnable
|
|
::
|
|
[%deed deeds-json=cord]
|
|
:: %invites: sendPoint for every ship in ship,ticket,owner file
|
|
::
|
|
:: to generate such a file, try |claz-invites ~star 1 10 %/out/txt
|
|
::
|
|
[%invites as-who=ship file=path]
|
|
:: %lock-prep: prepare for lockup by transfering ships to the ceremony address
|
|
::
|
|
[%lock-prep what=(list ship)]
|
|
:: %lock: put ships into lockup for the target address
|
|
::
|
|
[%lock how=?(%spawn %transfer) what=(list ship) to=address =lockup]
|
|
:: %more: multiple batches sequentially
|
|
::
|
|
[%more batches=(list batch)]
|
|
==
|
|
::
|
|
++ lockup
|
|
$% [%linear windup-years=@ud unlock-years=@ud]
|
|
[%conditional [b1=@ud b2=@ud b3=@ud] unlock-years-per-batch=@ud]
|
|
==
|
|
::
|
|
++ rights
|
|
$: own=address
|
|
manage=(unit address)
|
|
voting=(unit address)
|
|
transfer=(unit address)
|
|
spawn=(unit address)
|
|
net=(unit [crypt=@ux auth=@ux])
|
|
==
|
|
::
|
|
++ call
|
|
$% [%create-galaxy gal=ship to=address]
|
|
[%spawn who=ship to=address]
|
|
[%configure-keys who=ship crypt=@ auth=@]
|
|
[%set-management-proxy who=ship proxy=address]
|
|
[%set-voting-proxy who=ship proxy=address]
|
|
[%set-spawn-proxy who=ship proxy=address]
|
|
[%transfer-ship who=ship to=address]
|
|
[%set-transfer-proxy who=ship proxy=address]
|
|
[%adopt who=ship]
|
|
[%start-document-poll gal=ship hash=@]
|
|
[%cast-document-vote gal=ship hash=@ vote=?]
|
|
::
|
|
[%send-point as=ship point=ship to=address]
|
|
==
|
|
::
|
|
++ prep-result
|
|
$% [%nonce nonce=@ud]
|
|
==
|
|
--
|