2017-04-23 06:13:14 +03:00
|
|
|
!: :: /van/jael
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: %reference/0
|
|
|
|
!? 150
|
|
|
|
::
|
|
|
|
::
|
|
|
|
:: %jael: secrets and promises.
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
:: todo:
|
|
|
|
::
|
2016-11-24 07:25:07 +03:00
|
|
|
:: - communication with other vanes:
|
|
|
|
:: - actually use %behn for expiring secrets
|
|
|
|
:: - report %ames propagation errors to user
|
|
|
|
::
|
|
|
|
:: - nice features:
|
|
|
|
:: - scry namespace
|
|
|
|
:: - task for converting invites to tickets
|
|
|
|
::
|
|
|
|
|= pit/vase
|
2016-12-07 06:13:33 +03:00
|
|
|
=, pki:jael
|
|
|
|
=, rights:jael
|
2016-12-10 03:47:21 +03:00
|
|
|
=, able:jael
|
2016-12-02 22:34:07 +03:00
|
|
|
=, title
|
|
|
|
=, crypto
|
2016-11-24 07:25:07 +03:00
|
|
|
=, jael
|
2018-05-16 00:16:29 +03:00
|
|
|
=, ethe
|
|
|
|
=, constitution:ethe
|
|
|
|
=, ethereum
|
|
|
|
=, constitution:ethereum
|
2016-11-24 07:25:07 +03:00
|
|
|
:: ::::
|
|
|
|
:::: # models :: data structures
|
|
|
|
:: ::::
|
|
|
|
:: the %jael state comes in two parts: absolute
|
|
|
|
:: and relative.
|
|
|
|
::
|
|
|
|
:: ++state-absolute is objective -- defined without
|
|
|
|
:: reference to our ship. if you steal someone else's
|
|
|
|
:: private keys, we have a place to put them. when
|
|
|
|
:: others make promises to us, we store them in the
|
|
|
|
:: same structures we use to make promises to others.
|
|
|
|
::
|
|
|
|
:: ++state-relative is subjective, denormalized and
|
|
|
|
:: derived. it consists of all the state we need to
|
|
|
|
:: manage subscriptions efficiently.
|
|
|
|
::
|
|
|
|
=> |%
|
|
|
|
++ state :: all vane state
|
2016-12-16 09:34:01 +03:00
|
|
|
$: ver/$0 :: vane version
|
2016-11-24 07:25:07 +03:00
|
|
|
yen/(set duct) :: raw observers
|
|
|
|
urb/state-absolute :: all absolute state
|
|
|
|
sub/state-relative :: all relative state
|
2018-05-16 00:16:29 +03:00
|
|
|
eth=state-ethereum :: eth-specific state
|
2016-11-24 07:25:07 +03:00
|
|
|
== ::
|
|
|
|
++ state-relative :: urbit metadata
|
|
|
|
$: $= car :: secure channels
|
|
|
|
%+ map ship :: partner
|
|
|
|
$: yen/(set duct) :: trackers
|
|
|
|
== ::
|
|
|
|
$= bal :: balance sheet
|
|
|
|
$: yen/(set duct) :: trackers
|
2016-12-16 09:34:01 +03:00
|
|
|
== ::
|
2016-11-24 07:25:07 +03:00
|
|
|
$= own :: vault
|
|
|
|
$: yen/(set duct) :: trackers
|
|
|
|
lyf/life :: version
|
|
|
|
jaw/(map life ring) :: private keys
|
|
|
|
== ::
|
2016-12-16 09:34:01 +03:00
|
|
|
== ::
|
2016-11-24 07:25:07 +03:00
|
|
|
++ state-absolute :: absolute urbit
|
2018-05-23 02:35:16 +03:00
|
|
|
$: pry/(map ship (map ship safe)) :: promises
|
2016-11-24 07:25:07 +03:00
|
|
|
== ::
|
2018-05-16 00:16:29 +03:00
|
|
|
++ state-ethereum :: known ethereum
|
2018-05-16 21:48:20 +03:00
|
|
|
$: ships=fleet :: ship states
|
|
|
|
dns=dnses :: dns states
|
|
|
|
:: :: meta
|
|
|
|
listeners=(set duct) :: subscribers
|
2018-05-16 00:16:29 +03:00
|
|
|
heard=events :: processed events
|
|
|
|
latest-block=@ud :: last heard block
|
|
|
|
filter-id=@ud :: current filter
|
|
|
|
checking=(map @p hull) :: verifying
|
|
|
|
== ::
|
2016-11-24 07:25:07 +03:00
|
|
|
:: ::
|
|
|
|
++ message :: p2p message
|
2018-05-23 16:53:41 +03:00
|
|
|
$% [%hail p=remote] :: reset rights
|
2018-05-17 22:48:17 +03:00
|
|
|
[%nuke ~] :: cancel trackers
|
|
|
|
[%vent ~] :: view ethereum state
|
2018-05-22 00:10:27 +03:00
|
|
|
[%vent-result p=update:constitution:ethe] :: tmp workaround
|
2016-11-24 07:25:07 +03:00
|
|
|
== ::
|
|
|
|
++ card :: i/o action
|
2018-05-16 21:48:20 +03:00
|
|
|
(wind note:able gift) ::
|
2016-11-24 07:25:07 +03:00
|
|
|
:: ::
|
|
|
|
++ move :: output
|
|
|
|
{p/duct q/card} ::
|
|
|
|
-- ::
|
|
|
|
:: ::::
|
|
|
|
:::: # data :: static data
|
|
|
|
:: ::::
|
|
|
|
=> |%
|
|
|
|
:: :: ++zeno
|
|
|
|
++ zeno :: boot fingerprints
|
|
|
|
::
|
|
|
|
:: in ++zeno we hardcode the fingerprints of galaxies
|
2016-12-16 09:34:01 +03:00
|
|
|
:: and the identities of their owners. if the
|
2016-11-24 07:25:07 +03:00
|
|
|
:: fingerprint is 0, the galaxy can't be created.
|
|
|
|
::
|
|
|
|
:: we'll probably move at least the identity data
|
|
|
|
:: into urbit as it becomes more stable, but keeping
|
|
|
|
:: it in the source makes it very resilient.
|
|
|
|
::
|
|
|
|
|= who/ship
|
|
|
|
^- @
|
|
|
|
%+ snag who
|
|
|
|
^- (list @uw)
|
|
|
|
:~ 0w0 :: 0, ~zod, urbit.org
|
|
|
|
0w0 :: 1, ~nec, Curtis Yarvin
|
|
|
|
0w0 :: 2, ~bud, Tlon Investor 1
|
|
|
|
0w0 :: 3, ~wes, Tlon Investor 2
|
|
|
|
0w0 :: 4, ~sev, Tlon Investor 2
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 5, ~per, Tlon Investor 3
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 6, ~sut, Tlon Investor 4
|
|
|
|
0w0 :: 7, ~let, Tlon Investor 4
|
|
|
|
0w0 :: 8, ~ful, Tlon Investor 4
|
|
|
|
0w0 :: 9, ~pen, Tlon Investor 4
|
|
|
|
0w0 :: 10, ~syt, Tlon Investor 4
|
|
|
|
0w0 :: 11, ~dur, Tlon Investor 4
|
|
|
|
0w0 :: 12, ~wep, Sam Putman
|
|
|
|
0w0 :: 13, ~ser, Tlon Investor 5
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 14, ~wyl, Zimran Ahmed
|
|
|
|
0w0 :: 15, ~sun, Colin Smith
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 16, ~ryp, Tlon Investor 6
|
|
|
|
0w0 :: 17, ~syx, Tlon Investor 6
|
|
|
|
0w0 :: 18, ~dyr, Tlon Investor 6
|
|
|
|
0w0 :: 19, ~nup, Tlon Investor 6
|
|
|
|
0w0 :: 20, ~heb, Tlon Investor 6
|
|
|
|
0w0 :: 21, ~peg, Tlon Investor 6
|
|
|
|
0w0 :: 22, ~lup, Tlon Investor 6
|
|
|
|
0w0 :: 23, ~dep, Tlon Investor 6
|
|
|
|
0w0 :: 24, ~dys, Mike Gogulski
|
|
|
|
0w0 :: 25, ~put, Tlon Investor 7
|
|
|
|
0w0 :: 26, ~lug, Tlon Investor 8
|
|
|
|
0w0 :: 27, ~hec, Tlon Investor 8
|
|
|
|
0w0 :: 28, ~ryt, Tlon Investor 8
|
|
|
|
0w0 :: 29, ~tyv, Tlon Investor 8
|
2017-09-09 03:42:36 +03:00
|
|
|
0w0 :: 30, ~syd, Curtis Yarvin
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 31, ~nex, Prakhar Goel
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 32, ~lun, Tlon Investor 9
|
|
|
|
0w0 :: 33, ~mep, Tlon Investor 9
|
|
|
|
0w0 :: 34, ~lut, Tlon Investor 9
|
|
|
|
0w0 :: 35, ~sep, Tlon Investor 9
|
2017-09-09 03:42:36 +03:00
|
|
|
0w0 :: 36, ~pes, Curtis Yarvin
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 37, ~del, Kingdon Barrett
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 38, ~sul, John Burnham
|
|
|
|
0w0 :: 39, ~ped, Jeremy Wall
|
|
|
|
0w0 :: 40, ~tem, Tlon Investor 10
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 41, ~led, Nick Caruso
|
2017-09-09 03:42:36 +03:00
|
|
|
0w0 :: 42, ~tul, Curtis Yarvin
|
|
|
|
0w0 :: 43, ~met, Curtis Yarvin
|
|
|
|
0w0 :: 44, ~wen, Curtis Yarvin
|
|
|
|
0w0 :: 45, ~byn, Curtis Yarvin
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 46, ~hex, James Torre
|
|
|
|
0w0 :: 47, ~feb, urbit.org
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 48, ~pyl, Michael Hartl
|
2017-09-09 03:44:46 +03:00
|
|
|
0w0 :: 49, ~dul, Galen Wolfe-Pauly
|
|
|
|
0w0 :: 50, ~het, Galen Wolfe-Pauly
|
2017-09-09 03:42:36 +03:00
|
|
|
0w0 :: 51, ~mev, Curtis Yarvin
|
|
|
|
0w0 :: 52, ~rut, Curtis Yarvin
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 53, ~tyl, Tlon Investor 11
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 54, ~wyd, Curtis Yarvin
|
2017-09-09 03:42:36 +03:00
|
|
|
0w0 :: 55, ~tep, Curtis Yarvin
|
|
|
|
0w0 :: 56, ~bes, Curtis Yarvin
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 57, ~dex, Jared Hance
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 58, ~sef, Owen Rescher
|
|
|
|
0w0 :: 59, ~wyc, Galen Wolfe-Pauly
|
|
|
|
0w0 :: 60, ~bur, Galen Wolfe-Pauly
|
|
|
|
0w0 :: 61, ~der, Galen Wolfe-Pauly
|
|
|
|
0w0 :: 62, ~nep, Galen Wolfe-Pauly
|
2017-09-17 21:38:07 +03:00
|
|
|
0w0 :: 63, ~pur, Paul Driver
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 64, ~rys, Charlie Cummings
|
2017-09-09 03:42:36 +03:00
|
|
|
0w0 :: 65, ~reb, Curtis Yarvin
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 66, ~den, Michael Hartl
|
2017-09-09 03:42:36 +03:00
|
|
|
0w0 :: 67, ~nut, Curtis Yarvin
|
|
|
|
0w0 :: 68, ~sub, Curtis Yarvin
|
|
|
|
0w0 :: 69, ~pet, Curtis Yarvin
|
|
|
|
0w0 :: 70, ~rul, Curtis Yarvin
|
2017-09-09 03:45:27 +03:00
|
|
|
0w0 :: 71, ~syn, Pantera
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 72, ~reg, Henry Ault
|
|
|
|
0w0 :: 73, ~tyd, Henry Ault
|
|
|
|
0w0 :: 74, ~sup, Henry Ault
|
|
|
|
0w0 :: 75, ~sem, Michael Livshin
|
|
|
|
0w0 :: 76, ~wyn, Anton Dyudin
|
|
|
|
0w0 :: 77, ~rec, Anton Dyudin
|
|
|
|
0w0 :: 78, ~meg, Anton Dyudin
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 79, ~net, Anthony Martinez
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 80, ~sec, Curtis Yarvin
|
|
|
|
0w0 :: 81, ~mul, Curtis Yarvin
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 82, ~nym, Max Greer
|
2017-09-09 03:42:36 +03:00
|
|
|
0w0 :: 83, ~tev, Curtis Yarvin
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 84, ~web, Ar Vicco
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 85, ~sum, Philip Monk
|
|
|
|
0w0 :: 86, ~mut, Philip Monk
|
|
|
|
0w0 :: 87, ~nyx, Philip Monk
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 88, ~rex, Tlon Investor 12
|
2017-09-09 03:43:31 +03:00
|
|
|
0w0 :: 89, ~teb, Michael Vassar
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 90, ~fus, Tlon Corporation
|
|
|
|
0w0 :: 91, ~hep, urbit.org
|
|
|
|
0w0 :: 92, ~ben, urbit.org
|
|
|
|
0w0 :: 93, ~mus, urbit.org
|
|
|
|
0w0 :: 94, ~wyx, urbit.org
|
|
|
|
0w0 :: 95, ~sym, urbit.org
|
|
|
|
0w0 :: 96, ~sel, urbit.org
|
|
|
|
0w0 :: 97, ~ruc, urbit.org
|
|
|
|
0w0 :: 98, ~dec, urbit.org
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 99, ~wex, Pax Dickinson
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 100, ~syr, urbit.org
|
|
|
|
0w0 :: 101, ~wet, urbit.org
|
|
|
|
0w0 :: 102, ~dyl, urbit.org
|
|
|
|
0w0 :: 103, ~myn, urbit.org
|
|
|
|
0w0 :: 104, ~mes, urbit.org
|
|
|
|
0w0 :: 105, ~det, urbit.org
|
|
|
|
0w0 :: 106, ~bet, urbit.org
|
|
|
|
0w0 :: 107, ~bel, urbit.org
|
|
|
|
0w0 :: 108, ~tux, Tlon Investor 13
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 109, ~tug, Philip Monk
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 110, ~myr, urbit.org
|
|
|
|
0w0 :: 111, ~pel, urbit.org
|
|
|
|
0w0 :: 112, ~syp, urbit.org
|
|
|
|
0w0 :: 113, ~ter, urbit.org
|
|
|
|
0w0 :: 114, ~meb, urbit.org
|
|
|
|
0w0 :: 115, ~set, urbit.org
|
|
|
|
0w0 :: 116, ~dut, urbit.org
|
|
|
|
0w0 :: 117, ~deg, urbit.org
|
|
|
|
0w0 :: 118, ~tex, urbit.org
|
|
|
|
0w0 :: 119, ~sur, urbit.org
|
|
|
|
0w0 :: 120, ~fel, urbit.org
|
|
|
|
0w0 :: 121, ~tud, urbit.org
|
|
|
|
0w0 :: 122, ~nux, urbit.org
|
|
|
|
0w0 :: 123, ~rux, urbit.org
|
|
|
|
0w0 :: 124, ~ren, urbit.org
|
|
|
|
0w0 :: 125, ~wyt, urbit.org
|
|
|
|
0w0 :: 126, ~nub, urbit.org
|
|
|
|
0w0 :: 127, ~med, urbit.org
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 128, ~lyt, Arthur Breitman
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 129, ~dus, urbit.org
|
|
|
|
0w0 :: 130, ~neb, urbit.org
|
|
|
|
0w0 :: 131, ~rum, urbit.org
|
|
|
|
0w0 :: 132, ~tyn, urbit.org
|
|
|
|
0w0 :: 133, ~seg, urbit.org
|
|
|
|
0w0 :: 134, ~lyx, urbit.org
|
|
|
|
0w0 :: 135, ~pun, urbit.org
|
|
|
|
0w0 :: 136, ~res, urbit.org
|
|
|
|
0w0 :: 137, ~red, Alex Kravets
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 138, ~fun, Aaron Beckerman
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 139, ~rev, urbit.org
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 140, ~ref, Matt Brubeck
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 141, ~mec, urbit.org
|
|
|
|
0w0 :: 142, ~ted, urbit.org
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 143, ~rus, Stephen Burnham
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 144, ~bex, urbit.org
|
|
|
|
0w0 :: 145, ~leb, Justin LeBlanc
|
|
|
|
0w0 :: 146, ~dux, urbit.org
|
|
|
|
0w0 :: 147, ~ryn, urbit.org
|
|
|
|
0w0 :: 148, ~num, Tlon
|
|
|
|
0w0 :: 149, ~pyx, Katherine McFall
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 150, ~ryg, Dan Haffey
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 151, ~ryx, Tlon
|
|
|
|
0w0 :: 152, ~fep, Tlon
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 153, ~tyr, Steve Dee
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 154, ~tus, Tlon
|
|
|
|
0w0 :: 155, ~tyc, Tlon
|
|
|
|
0w0 :: 156, ~leg, Tlon
|
2017-09-22 21:48:37 +03:00
|
|
|
0w0 :: 157, ~nem, Jeremy Tunnell
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 158, ~fer, Tlon
|
|
|
|
0w0 :: 159, ~mer, Tlon
|
|
|
|
0w0 :: 160, ~ten, Tlon
|
|
|
|
0w0 :: 161, ~lus, Tlon
|
|
|
|
0w0 :: 162, ~nus, Tlon
|
|
|
|
0w0 :: 163, ~syl, Tlon
|
|
|
|
0w0 :: 164, ~tec, Tlon
|
|
|
|
0w0 :: 165, ~mex, Tlon
|
|
|
|
0w0 :: 166, ~pub, Tlon
|
|
|
|
0w0 :: 167, ~rym, Tlon
|
|
|
|
0w0 :: 168, ~tuc, Tlon
|
|
|
|
0w0 :: 169, ~fyl, Tlon
|
|
|
|
0w0 :: 170, ~lep, Tlon
|
|
|
|
0w0 :: 171, ~deb, Tlon
|
|
|
|
0w0 :: 172, ~ber, Tlon
|
|
|
|
0w0 :: 173, ~mug, Tlon
|
|
|
|
0w0 :: 174, ~hut, Tlon
|
|
|
|
0w0 :: 175, ~tun, Tlon
|
|
|
|
0w0 :: 176, ~byl, Tlon
|
|
|
|
0w0 :: 177, ~sud, Tlon
|
|
|
|
0w0 :: 178, ~pem, Tlon
|
|
|
|
0w0 :: 179, ~dev, Tlon
|
|
|
|
0w0 :: 180, ~lur, Tlon
|
|
|
|
0w0 :: 181, ~def, Tlon
|
|
|
|
0w0 :: 182, ~bus, Tlon
|
|
|
|
0w0 :: 183, ~bep, Tlon
|
|
|
|
0w0 :: 184, ~run, Tlon
|
|
|
|
0w0 :: 185, ~mel, Tlon
|
|
|
|
0w0 :: 186, ~pex, Tlon
|
|
|
|
0w0 :: 187, ~dyt, Tlon
|
|
|
|
0w0 :: 188, ~byt, Tlon
|
|
|
|
0w0 :: 189, ~typ, Tlon
|
|
|
|
0w0 :: 190, ~lev, Tlon
|
|
|
|
0w0 :: 191, ~myl, Tlon
|
|
|
|
0w0 :: 192, ~wed, Tlon
|
|
|
|
0w0 :: 193, ~duc, Tlon
|
|
|
|
0w0 :: 194, ~fur, Tlon
|
|
|
|
0w0 :: 195, ~fex, Tlon
|
2017-10-17 02:32:36 +03:00
|
|
|
0w0 :: 196, ~nul, Matthew Liston
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 197, ~luc, Tlon
|
|
|
|
0w0 :: 198, ~len, Tlon
|
|
|
|
0w0 :: 199, ~ner, Tlon
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 200, ~lex, Michael Hartl
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 201, ~rup, Owen Rescher
|
|
|
|
0w0 :: 202, ~ned, Tlon
|
|
|
|
0w0 :: 203, ~lec, Tlon
|
|
|
|
0w0 :: 204, ~ryd, Tlon
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 205, ~lyd, Adam Bliss
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 206, ~fen, Tlon
|
|
|
|
0w0 :: 207, ~wel, Tlon
|
|
|
|
0w0 :: 208, ~nyd, Tlon
|
|
|
|
0w0 :: 209, ~hus, Tlon
|
|
|
|
0w0 :: 210, ~rel, Tlon
|
|
|
|
0w0 :: 211, ~rud, Tlon
|
|
|
|
0w0 :: 212, ~nes, Tlon
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 213, ~hes, Tlon Investor 14
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 214, ~fet, Tlon
|
|
|
|
0w0 :: 215, ~des, Tlon
|
|
|
|
0w0 :: 216, ~ret, Tlon
|
|
|
|
0w0 :: 217, ~dun, Tlon
|
|
|
|
0w0 :: 218, ~ler, Tlon
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 219, ~nyr, Ivan Matosevic
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 220, ~seb, Tlon
|
|
|
|
0w0 :: 221, ~hul, Tlon
|
|
|
|
0w0 :: 222, ~ryl, Tlon
|
|
|
|
0w0 :: 223, ~lud, Tlon
|
|
|
|
0w0 :: 224, ~rem, Tlon
|
|
|
|
0w0 :: 225, ~lys, Tlon
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 226, ~fyn, Stephen Burnham
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 227, ~wer, Tlon
|
|
|
|
0w0 :: 228, ~ryc, Tlon
|
|
|
|
0w0 :: 229, ~sug, Tlon
|
|
|
|
0w0 :: 230, ~nys, Tlon
|
|
|
|
0w0 :: 231, ~nyl, Tlon
|
|
|
|
0w0 :: 232, ~lyn, Tlon
|
|
|
|
0w0 :: 233, ~dyn, Tlon
|
|
|
|
0w0 :: 234, ~dem, Tlon
|
|
|
|
0w0 :: 235, ~lux, Tlon Investor 15
|
2017-03-20 20:33:11 +03:00
|
|
|
0w0 :: 236, ~fed, Iceman
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 237, ~sed, Tlon
|
|
|
|
0w0 :: 238, ~bec, Tlon
|
|
|
|
0w0 :: 239, ~mun, Tlon
|
|
|
|
0w0 :: 240, ~lyr, Tlon
|
|
|
|
0w0 :: 241, ~tes, Tlon
|
|
|
|
0w0 :: 242, ~mud, Ian Rowan
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 243, ~nyt, Byrne Hobart
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 244, ~byr, Tlon
|
|
|
|
0w0 :: 245, ~sen, Tlon
|
|
|
|
0w0 :: 246, ~weg, Tlon
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 247, ~fyr, Anton Dyudin
|
2016-11-24 07:25:07 +03:00
|
|
|
0w0 :: 248, ~mur, Tlon
|
|
|
|
0w0 :: 249, ~tel, Tlon
|
|
|
|
0w0 :: 250, ~rep, Raymond Pasco
|
|
|
|
0w0 :: 251, ~teg, Tlon
|
|
|
|
0w0 :: 252, ~pec, Tlon
|
|
|
|
0w0 :: 253, ~nel, Tlon
|
|
|
|
0w0 :: 254, ~nev, Tlon
|
2016-12-16 09:34:01 +03:00
|
|
|
0w0 :: 255, ~fes, John Burnham
|
2016-11-24 07:25:07 +03:00
|
|
|
==
|
|
|
|
-- ::
|
|
|
|
:: ::::
|
|
|
|
:::: # light :: light cores
|
|
|
|
:: ::::
|
|
|
|
=> |%
|
|
|
|
:: :: ++py
|
|
|
|
:::: ## sparse/light :: sparse range
|
|
|
|
:: ::::
|
2016-12-16 09:34:01 +03:00
|
|
|
++ py
|
2016-11-24 07:25:07 +03:00
|
|
|
:: because when you're a star with 2^16 unissued
|
|
|
|
:: planets, a (set) is kind of lame...
|
|
|
|
::
|
|
|
|
|_ a/pile
|
|
|
|
:: :: ++dif:py
|
|
|
|
++ dif :: add/remove a->b
|
2016-12-16 09:34:01 +03:00
|
|
|
|= b/pile
|
2016-11-24 07:25:07 +03:00
|
|
|
^- (pair pile pile)
|
|
|
|
[(sub(a b) a) (sub b)]
|
|
|
|
:: :: ++div:py
|
|
|
|
++ div :: allocate
|
|
|
|
|= b/@ud
|
|
|
|
^- (unit (pair pile pile))
|
2018-03-19 06:54:47 +03:00
|
|
|
=< ?-(- %& [~ p], %| ~)
|
2016-11-24 07:25:07 +03:00
|
|
|
|- ^- (each (pair pile pile) @u)
|
2016-12-16 09:34:01 +03:00
|
|
|
?: =(0 b)
|
2016-11-24 07:25:07 +03:00
|
|
|
[%& ~ a]
|
|
|
|
?~ a [%| 0]
|
|
|
|
=/ al $(a l.a)
|
|
|
|
?- -.al
|
2018-03-19 06:54:47 +03:00
|
|
|
%& [%& p.p.al a(l q.p.al)]
|
|
|
|
%|
|
2016-12-16 09:34:01 +03:00
|
|
|
=. b (^sub b p.al)
|
2016-11-24 07:25:07 +03:00
|
|
|
=/ top +((^sub q.n.a p.n.a))
|
|
|
|
?: =(b top)
|
|
|
|
[%& a(r ~) r.a]
|
|
|
|
?: (lth b top)
|
|
|
|
:+ %& a(r ~, q.n (add p.n.a (dec b)))
|
|
|
|
=. p.n.a (add p.n.a b)
|
|
|
|
(uni(a r.a) [n.a ~ ~])
|
|
|
|
=/ ar $(a r.a, b (^sub b top))
|
|
|
|
?- -.ar
|
2018-03-19 06:54:47 +03:00
|
|
|
%& [%& a(r p.p.ar) q.p.ar]
|
|
|
|
%| [%| :(add top p.al p.ar)]
|
2016-11-24 07:25:07 +03:00
|
|
|
==
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ gas :: ++gas:py
|
2018-05-14 23:17:21 +03:00
|
|
|
|= b/(list @) ^- pile :: insert list
|
2016-11-24 07:25:07 +03:00
|
|
|
?~ b a
|
|
|
|
$(b t.b, a (put i.b))
|
|
|
|
:: :: ++gud:py
|
|
|
|
++ gud :: validate
|
2018-05-14 23:17:21 +03:00
|
|
|
=| {bot/(unit @) top/(unit @)}
|
2016-11-24 07:25:07 +03:00
|
|
|
|- ^- ?
|
|
|
|
?~ a &
|
|
|
|
?& (lte p.n.a q.n.a)
|
|
|
|
?~(top & (lth +(q.n.a) u.top))
|
|
|
|
?~(bot & (gth p.n.a +(u.bot)))
|
|
|
|
::
|
|
|
|
?~(l.a & (vor p.n.a p.n.l.a))
|
|
|
|
$(a l.a, top `p.n.a)
|
|
|
|
::
|
|
|
|
?~(l.a & (vor p.n.a p.n.l.a))
|
|
|
|
$(a r.a, bot `q.n.a)
|
|
|
|
==
|
|
|
|
:: :: ++int:py
|
|
|
|
++ int :: intersection
|
|
|
|
|= b/pile ^- pile
|
|
|
|
?~ a ~
|
|
|
|
?~ b ~
|
|
|
|
?. (vor p.n.a p.n.b) $(a b, b a)
|
2016-12-16 09:34:01 +03:00
|
|
|
?: (gth p.n.a q.n.b)
|
2016-11-24 07:25:07 +03:00
|
|
|
(uni(a $(b r.b)) $(a l.a, r.b ~))
|
|
|
|
?: (lth q.n.a p.n.b)
|
|
|
|
(uni(a $(b l.b)) $(a r.a, l.b ~))
|
|
|
|
?: (gte p.n.a p.n.b)
|
|
|
|
?: (lte q.n.a q.n.b)
|
|
|
|
[n.a $(a l.a, r.b ~) $(a r.a, l.b ~)]
|
|
|
|
[n.a(q q.n.b) $(a l.a, r.b ~) $(l.a ~, b r.b)]
|
|
|
|
%- uni(a $(r.a ~, b l.b))
|
|
|
|
?: (lte q.n.a q.n.b)
|
|
|
|
%- uni(a $(l.b ~, a r.a))
|
|
|
|
[n.b(q q.n.a) ~ ~]
|
|
|
|
%- uni(a $(l.a ~, b r.b))
|
|
|
|
[n.b ~ ~]
|
|
|
|
:: :: ++put:py
|
|
|
|
++ put :: insert
|
2018-05-14 23:17:21 +03:00
|
|
|
|= b/@ ^- pile
|
2016-11-24 07:25:07 +03:00
|
|
|
(uni [b b] ~ ~)
|
|
|
|
:: :: ++sub:py
|
|
|
|
++ sub :: subtract
|
|
|
|
|= b/pile ^- pile
|
|
|
|
?~ b a
|
|
|
|
?~ a a
|
|
|
|
?: (gth p.n.a q.n.b)
|
|
|
|
$(b r.b, l.a $(a l.a, r.b ~))
|
|
|
|
?: (lth q.n.a p.n.b)
|
|
|
|
$(b l.b, r.a $(a r.a, l.b ~))
|
|
|
|
%- uni(a $(a l.a, r.b ~))
|
|
|
|
%- uni(a $(a r.a, l.b ~))
|
|
|
|
?: (gte p.n.a p.n.b)
|
|
|
|
?: (lte q.n.a q.n.b)
|
|
|
|
~
|
|
|
|
$(b r.b, a [[+(q.n.b) q.n.a] ~ ~])
|
|
|
|
?: (lte q.n.a q.n.b)
|
|
|
|
$(b l.b, a [[n.a(q (min q.n.a (dec p.n.b)))] ~ ~])
|
|
|
|
%- uni(a $(b r.b, a [[+(q.n.b) q.n.a] ~ ~]))
|
|
|
|
$(b l.b, a [[n.a(q (min q.n.a (dec p.n.b)))] ~ ~])
|
2018-05-14 23:17:21 +03:00
|
|
|
:: :: ++tap:py
|
|
|
|
++ tap :: into full list
|
|
|
|
=| out/(list @)
|
2016-11-24 07:25:07 +03:00
|
|
|
|- ^+ out
|
|
|
|
?~ a out
|
2018-05-14 23:17:21 +03:00
|
|
|
$(a l.a, out (welp (gulf n.a) $(a r.a)))
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++uni:py
|
|
|
|
++ uni :: merge two piles
|
2016-12-16 09:34:01 +03:00
|
|
|
|= b/pile
|
2016-11-24 07:25:07 +03:00
|
|
|
^- pile
|
|
|
|
?~ b a
|
|
|
|
?~ a b
|
|
|
|
?. (vor p.n.a p.n.b) $(a b, b a)
|
|
|
|
?: (lth +(q.n.b) p.n.a)
|
|
|
|
$(b r.b, l.a $(a l.a, r.b ~))
|
|
|
|
?: (lth +(q.n.a) p.n.b)
|
|
|
|
$(b l.b, r.a $(a r.a, l.b ~))
|
|
|
|
?: =(n.a n.b) [n.a $(a l.a, b l.b) $(a r.a, b r.b)]
|
|
|
|
?: (lth p.n.a p.n.b)
|
|
|
|
?: (gth q.n.a q.n.b)
|
|
|
|
$(b l.b, a $(b r.b))
|
|
|
|
$(b l.b, a $(b r.b, a $(b r.a, r.a ~, q.n.a q.n.b)))
|
|
|
|
?: (gth q.n.a q.n.b)
|
|
|
|
$(a l.a, b $(a r.a, b $(a r.b, r.b ~, q.n.b q.n.a)))
|
|
|
|
$(a l.a, b $(a r.a))
|
|
|
|
-- ::py
|
|
|
|
:: :: ++ry
|
|
|
|
:::: ## rights/light :: rights algebra
|
|
|
|
:: ::::
|
|
|
|
++ ry
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
:: we need to be able to combine rights, and
|
|
|
|
:: track changes by taking differences between them.
|
|
|
|
::
|
2016-11-24 07:25:07 +03:00
|
|
|
:: ++ry must always crash when you try to make it
|
2016-12-16 09:34:01 +03:00
|
|
|
:: do something that makes no sense.
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
:: language compromises: the type system can't enforce
|
2016-11-24 07:25:07 +03:00
|
|
|
:: that lef and ryt match, hence the asserts.
|
|
|
|
::
|
2016-12-10 03:47:21 +03:00
|
|
|
=< |_ $: :: lef: old right
|
|
|
|
:: ryt: new right
|
|
|
|
::
|
|
|
|
lef/rite
|
|
|
|
ryt/rite
|
|
|
|
==
|
|
|
|
:: :: ++uni:ry
|
|
|
|
++ uni ~(sum +> lef ryt) :: add rights
|
|
|
|
:: :: ++dif:ry
|
|
|
|
++ dif :: r->l: {add remove}
|
|
|
|
^- (pair (unit rite) (unit rite))
|
|
|
|
[~(dif +> ryt lef) ~(dif +> lef ryt)]
|
|
|
|
:: :: ++sub:ry
|
|
|
|
++ sub :: l - r
|
|
|
|
^- (unit rite)
|
|
|
|
=/ vid dif
|
|
|
|
~| vid
|
|
|
|
?>(?=($~ q.vid) p.vid)
|
|
|
|
--
|
2016-11-24 07:25:07 +03:00
|
|
|
|_ $: :: lef: old right
|
|
|
|
:: ryt: new right
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
lef/rite
|
2016-11-24 07:25:07 +03:00
|
|
|
ryt/rite
|
|
|
|
==
|
2016-12-10 03:47:21 +03:00
|
|
|
:: :: ++sub-by:py
|
|
|
|
++ sub-by :: subtract elements
|
|
|
|
|* {new/(map) old/(map) sub/$-(^ *)} ^+ new
|
|
|
|
%- ~(rep by new)
|
|
|
|
|* {{key/* val/*} acc/_^+(new ~)}
|
|
|
|
=> .(+<- [key val]=+<-)
|
|
|
|
=/ var (~(get by old) key)
|
|
|
|
=. val ?~(var val (sub val u.var))
|
|
|
|
?~ val acc
|
|
|
|
(~(put by ,.acc) key val)
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++dif:ry
|
2016-12-10 03:47:21 +03:00
|
|
|
++ dif :: in r and not l
|
|
|
|
^- (unit rite)
|
2016-11-24 07:25:07 +03:00
|
|
|
|^ ?- -.lef
|
|
|
|
$apple ?>(?=($apple -.ryt) (table %apple p.lef p.ryt))
|
2016-12-10 03:47:21 +03:00
|
|
|
$block ?>(?=($block -.ryt) ~)
|
2016-11-24 07:25:07 +03:00
|
|
|
$email ?>(?=($email -.ryt) (sable %email p.lef p.ryt))
|
2017-10-26 23:59:49 +03:00
|
|
|
$final ?>(?=($final -.ryt) (table %final p.lef p.ryt))
|
2016-11-24 07:25:07 +03:00
|
|
|
$fungi ?>(?=($fungi -.ryt) (noble %fungi p.lef p.ryt))
|
2016-12-10 03:47:21 +03:00
|
|
|
$guest ?>(?=($guest -.ryt) ~)
|
2016-11-24 07:25:07 +03:00
|
|
|
$hotel ?>(?=($hotel -.ryt) (bible %hotel p.lef p.ryt))
|
|
|
|
$jewel ?>(?=($jewel -.ryt) (table %jewel p.lef p.ryt))
|
|
|
|
$login ?>(?=($login -.ryt) (sable %login p.lef p.ryt))
|
|
|
|
$pword ?>(?=($pword -.ryt) (ruble %pword p.lef p.ryt))
|
|
|
|
$token ?>(?=($token -.ryt) (ruble %token p.lef p.ryt))
|
|
|
|
$urban ?>(?=($urban -.ryt) (table %urban p.lef p.ryt))
|
|
|
|
==
|
2016-12-10 03:47:21 +03:00
|
|
|
:: :: ++cable:dif:ry
|
|
|
|
++ cable :: diff atom
|
|
|
|
|* {nut/@tas new/@ old/@}
|
|
|
|
^- (unit rite)
|
|
|
|
?: =(new old) ~
|
|
|
|
`[nut new]
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++bible:dif:ry
|
|
|
|
++ bible :: diff pile
|
2016-12-10 03:47:21 +03:00
|
|
|
|* {nut/@tas old/(map dorm pile) new/(map dorm pile)}
|
|
|
|
^- (unit rite)
|
|
|
|
=; mor/_new
|
|
|
|
?~(mor ~ `[nut mor])
|
|
|
|
%^ sub-by new old
|
|
|
|
|=({a/pile b/pile} (~(sub py a) b))
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++noble:dif:ry
|
|
|
|
++ noble :: diff map of @ud
|
2016-12-10 03:47:21 +03:00
|
|
|
|* {nut/@tas old/(map * @ud) new/(map * @ud)}
|
|
|
|
^- (unit rite)
|
|
|
|
=; mor/_new
|
|
|
|
?~(mor ~ `[nut mor])
|
|
|
|
%^ sub-by new old
|
|
|
|
|=({a/@u b/@u} (sub a (min a b)))
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++ruble:dif:ry
|
|
|
|
++ ruble :: diff map of maps
|
2016-12-10 03:47:21 +03:00
|
|
|
|* {nut/@tas old/(map * (map)) new/(map * (map))}
|
|
|
|
^- (unit rite)
|
|
|
|
=; mor/_new
|
|
|
|
?~(mor ~ `[nut mor])
|
|
|
|
%^ sub-by new old
|
|
|
|
=* valu (~(got by new))
|
|
|
|
|= {a/_^+(valu ~) b/_^+(valu ~)} ^+ a
|
|
|
|
(sub-by a b |*({a2/* b2/*} a2))
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++sable:dif:ry
|
|
|
|
++ sable :: diff set
|
2016-12-10 03:47:21 +03:00
|
|
|
|* {nut/@tas old/(set) new/(set)}
|
|
|
|
^- (unit rite)
|
|
|
|
=; mor ?~(mor ~ `[nut mor])
|
|
|
|
(~(dif in new) old)
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++table:dif:ry
|
|
|
|
++ table :: diff map
|
2016-12-10 03:47:21 +03:00
|
|
|
|* {nut/@tas old/(map) new/(map)}
|
|
|
|
^- (unit rite)
|
|
|
|
=; mor ?~(mor ~ `[nut mor])
|
|
|
|
~! [old new]
|
|
|
|
(sub-by new old |*({a/* b/*} a))
|
2016-11-24 07:25:07 +03:00
|
|
|
-- ::dif
|
2016-12-10 03:47:21 +03:00
|
|
|
:: :: ++sum:ry
|
|
|
|
++ sum :: lef new, ryt old
|
2016-11-24 07:25:07 +03:00
|
|
|
^- rite
|
|
|
|
|^ ?- -.lef
|
|
|
|
$apple ?>(?=($apple -.ryt) [%apple (table p.lef p.ryt)])
|
|
|
|
$block ?>(?=($block -.ryt) [%block ~])
|
|
|
|
$email ?>(?=($email -.ryt) [%email (sable p.lef p.ryt)])
|
2017-10-26 23:59:49 +03:00
|
|
|
$final ?>(?=($final -.ryt) [%final (table p.lef p.ryt)])
|
2016-11-24 07:25:07 +03:00
|
|
|
$fungi ?>(?=($fungi -.ryt) [%fungi (noble p.lef p.ryt)])
|
|
|
|
$guest ?>(?=($guest -.ryt) [%guest ~])
|
|
|
|
$hotel ?>(?=($hotel -.ryt) [%hotel (bible p.lef p.ryt)])
|
|
|
|
$jewel ?>(?=($jewel -.ryt) [%jewel (table p.lef p.ryt)])
|
|
|
|
$login ?>(?=($login -.ryt) [%login (sable p.lef p.ryt)])
|
|
|
|
$pword ?>(?=($pword -.ryt) [%pword (ruble p.lef p.ryt)])
|
|
|
|
$token ?>(?=($token -.ryt) [%token (ruble p.lef p.ryt)])
|
|
|
|
$urban ?>(?=($urban -.ryt) [%urban (table p.lef p.ryt)])
|
|
|
|
==
|
|
|
|
:: :: ++bible:uni:ry
|
|
|
|
++ bible :: union pile
|
|
|
|
|= {new/(map dorm pile) old/(map dorm pile)}
|
|
|
|
^+ new
|
|
|
|
%- (~(uno by old) new)
|
|
|
|
|= (trel dorm pile pile)
|
|
|
|
(~(uni py q) r)
|
|
|
|
:: :: ++noble:uni:ry
|
|
|
|
++ noble :: union map of @ud
|
|
|
|
|= {new/(map term @ud) old/(map term @ud)}
|
|
|
|
^+ new
|
|
|
|
%- (~(uno by old) new)
|
|
|
|
|= (trel term @ud @ud)
|
|
|
|
(add q r)
|
|
|
|
:: :: ++ruble:uni:ry
|
|
|
|
++ ruble :: union map of maps
|
|
|
|
|= {new/(map site (map @t @t)) old/(map site (map @t @t))}
|
|
|
|
^+ new
|
|
|
|
%- (~(uno by old) new)
|
|
|
|
|= (trel site (map @t @t) (map @t @t))
|
|
|
|
%- (~(uno by q) r)
|
|
|
|
|= (trel @t @t @t)
|
|
|
|
?>(=(q r) r)
|
|
|
|
:: :: ++sable:uni:ry
|
|
|
|
++ sable :: union set
|
|
|
|
|* {new/(set) old/(set)}
|
|
|
|
^+ new
|
|
|
|
(~(uni in old) new)
|
|
|
|
:: :: ++table:uni:ry
|
|
|
|
++ table :: union map
|
2018-05-10 02:42:37 +03:00
|
|
|
|* {new/(map) old/(map)}
|
|
|
|
^+ new
|
|
|
|
%- (~(uno by old) new)
|
|
|
|
|= (trel _p.-<.new _q.->.new _q.->.new)
|
|
|
|
?>(=(q r) r)
|
2016-11-24 07:25:07 +03:00
|
|
|
-- ::uni
|
|
|
|
-- ::ry
|
|
|
|
:: :: ++up
|
|
|
|
:::: ## wallet^light :: wallet algebra
|
|
|
|
:: ::::
|
|
|
|
++ up
|
|
|
|
:: a set of rites is stored as a tree (++safe), sorted
|
|
|
|
:: by ++gor on the stem, balanced by ++vor on the stem.
|
|
|
|
:: (this is essentially a ++map with stem as key, but
|
|
|
|
:: ++map doesn't know how to link stem and bulb types.)
|
|
|
|
:: the goal of the design is to make it easy to add new
|
|
|
|
:: kinds of rite without a state adapter.
|
|
|
|
::
|
|
|
|
:: wallet operations always crash if impossible;
|
|
|
|
:: %jael has no concept of negative rights.
|
|
|
|
::
|
|
|
|
:: performance issues: ++differ and ++splice, naive.
|
2016-12-16 09:34:01 +03:00
|
|
|
::
|
2016-11-24 07:25:07 +03:00
|
|
|
:: external issues: much copy and paste from ++by. it
|
|
|
|
:: would be nice to resolve this somehow, but not urgent.
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
:: language issues: if hoon had an equality test
|
|
|
|
:: that informed inference, ++expose could be
|
2016-11-24 07:25:07 +03:00
|
|
|
:: properly inferred, eliminating the ?>.
|
|
|
|
::
|
|
|
|
|_ pig/safe
|
|
|
|
:: :: ++delete:up
|
|
|
|
++ delete :: delete right
|
|
|
|
|= ryt/rite
|
|
|
|
^- safe
|
|
|
|
?~ pig
|
2017-10-26 23:59:49 +03:00
|
|
|
~
|
2016-11-24 07:25:07 +03:00
|
|
|
?. =(-.ryt -.n.pig)
|
|
|
|
?: (gor -.ryt -.n.pig)
|
|
|
|
[n.pig $(pig l.pig) r.pig]
|
|
|
|
[n.pig l.pig $(pig r.pig)]
|
|
|
|
=/ dub ~(sub ry n.pig ryt)
|
|
|
|
?^ dub [u.dub l.pig r.pig]
|
|
|
|
|- ^- safe
|
|
|
|
?~ l.pig r.pig
|
|
|
|
?~ r.pig l.pig
|
|
|
|
?: (vor -.n.l.pig -.n.r.pig)
|
|
|
|
[n.l.pig l.l.pig $(l.pig r.l.pig)]
|
|
|
|
[n.r.pig $(r.pig l.r.pig) r.r.pig]
|
|
|
|
:: :: ++differ:up
|
|
|
|
++ differ :: delta pig->gob
|
|
|
|
|= gob/safe
|
|
|
|
^- bump
|
|
|
|
|^ [way way(pig gob, gob pig)]
|
|
|
|
++ way
|
2016-12-16 09:34:01 +03:00
|
|
|
%- intern(pig ~)
|
|
|
|
%+ skip linear(pig gob)
|
2016-11-24 07:25:07 +03:00
|
|
|
|=(rite (~(has in pig) +<))
|
|
|
|
--
|
|
|
|
:: :: ++exists:up
|
|
|
|
++ exists :: test presence
|
|
|
|
|= tag/@tas
|
|
|
|
!=(~ (expose tag))
|
|
|
|
:: :: ++expose:up
|
|
|
|
++ expose :: typed extract
|
|
|
|
|= tag/@tas
|
|
|
|
^- (unit rite)
|
|
|
|
?~ pig ~
|
|
|
|
?: =(tag -.n.pig)
|
|
|
|
[~ u=n.pig]
|
|
|
|
?:((gor tag -.n.pig) $(pig l.pig) $(pig r.pig))
|
|
|
|
:: :: ++insert:up
|
|
|
|
++ insert :: insert item
|
|
|
|
|= ryt/rite
|
|
|
|
^- safe
|
|
|
|
?~ pig
|
|
|
|
[ryt ~ ~]
|
|
|
|
?: =(-.ryt -.n.pig)
|
|
|
|
[~(uni ry ryt n.pig) l.pig r.pig]
|
|
|
|
?: (gor -.ryt -.n.pig)
|
2016-12-13 23:22:21 +03:00
|
|
|
=. l.pig $(pig l.pig)
|
2016-11-24 07:25:07 +03:00
|
|
|
?> ?=(^ l.pig)
|
|
|
|
?: (vor -.n.pig -.n.l.pig)
|
|
|
|
[n.pig l.pig r.pig]
|
|
|
|
[n.l.pig l.l.pig [n.pig r.l.pig r.pig]]
|
2016-12-13 23:22:21 +03:00
|
|
|
=. r.pig $(pig r.pig)
|
2016-11-24 07:25:07 +03:00
|
|
|
?> ?=(^ r.pig)
|
|
|
|
?: (vor -.n.pig -.n.r.pig)
|
|
|
|
[n.pig l.pig r.pig]
|
|
|
|
[n.r.pig [n.pig l.pig l.r.pig] r.r.pig]
|
|
|
|
:: :: ++intern:up
|
|
|
|
++ intern :: insert list
|
|
|
|
|= lin/(list rite)
|
|
|
|
^- safe
|
|
|
|
?~ lin pig
|
|
|
|
=. pig $(lin t.lin)
|
|
|
|
(insert i.lin)
|
|
|
|
:: :: ++linear:up
|
|
|
|
++ linear :: convert to list
|
|
|
|
=| lin/(list rite)
|
|
|
|
|- ^+ lin
|
|
|
|
?~ pig ~
|
|
|
|
$(pig r.pig, lin [n.pig $(pig l.pig)])
|
|
|
|
:: :: ++redact:up
|
|
|
|
++ redact :: conceal secrets
|
|
|
|
|- ^- safe
|
|
|
|
?~ pig ~
|
|
|
|
:_ [$(pig l.pig) $(pig r.pig)]
|
|
|
|
=* rys n.pig
|
|
|
|
^- rite
|
|
|
|
?+ -.rys rys
|
|
|
|
$apple
|
2018-05-24 00:24:37 +03:00
|
|
|
[%apple (~(run by p.rys) |=(@ (shax +<)))]
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
$final
|
2018-05-24 00:24:37 +03:00
|
|
|
[%final (~(run by p.rys) |=(@ (shax +<)))]
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
$login
|
|
|
|
[%login ~]
|
|
|
|
::
|
|
|
|
$pword
|
2016-12-16 09:34:01 +03:00
|
|
|
:- %pword
|
|
|
|
%- ~(run by p.rys)
|
|
|
|
|= (map @ta @t)
|
2016-11-24 07:25:07 +03:00
|
|
|
(~(run by +<) |=(@t (fil 3 (met 3 +<) '*')))
|
|
|
|
::
|
|
|
|
$jewel
|
2018-05-24 00:24:37 +03:00
|
|
|
[%jewel (~(run by p.rys) |=(@ (shax +<)))]
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
$token
|
2016-12-16 09:34:01 +03:00
|
|
|
:- %token
|
|
|
|
%- ~(run by p.rys)
|
2018-05-24 00:24:37 +03:00
|
|
|
|=((map @ta @) (~(run by +<) |=(@ (shax +<))))
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
$urban
|
2018-05-24 00:24:37 +03:00
|
|
|
[%urban (~(run by p.rys) |=({@da code:ames} [+<- (shax +<+)]))]
|
2016-11-24 07:25:07 +03:00
|
|
|
==
|
|
|
|
:: :: ++remove:up
|
|
|
|
++ remove :: pig minus gob
|
|
|
|
|= gob/safe
|
|
|
|
^- safe
|
2017-02-13 23:43:18 +03:00
|
|
|
=/ buv ~(tap by gob)
|
2016-11-24 07:25:07 +03:00
|
|
|
|- ?~ buv pig
|
|
|
|
$(buv t.buv, pig (delete i.buv))
|
|
|
|
:: :: ++splice:up
|
|
|
|
++ splice :: pig plus gob
|
|
|
|
|= gob/safe
|
|
|
|
^- safe
|
2017-02-13 23:43:18 +03:00
|
|
|
=/ buv ~(tap by gob)
|
2016-11-24 07:25:07 +03:00
|
|
|
|- ?~ buv pig
|
|
|
|
$(buv t.buv, pig (insert i.buv))
|
|
|
|
:: :: ++update:up
|
|
|
|
++ update :: arbitrary change
|
|
|
|
|= del/bump
|
|
|
|
^- safe
|
|
|
|
(splice(pig (remove les.del)) mor.del)
|
2016-12-16 09:34:01 +03:00
|
|
|
--
|
2016-11-24 07:25:07 +03:00
|
|
|
--
|
|
|
|
:: ::::
|
|
|
|
:::: # heavy :: heavy engines
|
|
|
|
:: ::::
|
|
|
|
=> |%
|
|
|
|
:: :: ++of
|
|
|
|
:::: ## main^heavy :: main engine
|
|
|
|
:: ::::
|
|
|
|
++ of
|
|
|
|
:: this core handles all top-level %jael semantics,
|
|
|
|
:: changing state and recording moves.
|
|
|
|
::
|
|
|
|
:: logically we could nest the ++su and ++ur cores
|
|
|
|
:: within it, but we keep them separated for clarity.
|
|
|
|
:: the ++curd and ++cure arms complete relative and
|
|
|
|
:: absolute effects, respectively, at the top level.
|
|
|
|
::
|
|
|
|
:: a general pattern here is that we use the ++ur core
|
2016-12-16 09:34:01 +03:00
|
|
|
:: to generate absolute effects (++change), then invoke
|
2016-11-24 07:25:07 +03:00
|
|
|
:: ++su to calculate the derived effect of these changes.
|
|
|
|
::
|
|
|
|
:: arvo issues: should be merged with the top-level
|
|
|
|
:: vane interface when that gets cleaned up a bit.
|
|
|
|
::
|
|
|
|
=| moz/(list move)
|
|
|
|
=| $: :: sys: system context
|
|
|
|
::
|
|
|
|
$= sys
|
|
|
|
$: :: now: current time
|
|
|
|
:: eny: unique entropy
|
|
|
|
::
|
|
|
|
now/@da
|
|
|
|
eny/@e
|
|
|
|
==
|
|
|
|
:: all vane state
|
|
|
|
::
|
|
|
|
state
|
|
|
|
==
|
|
|
|
:: lex: all durable state
|
|
|
|
:: moz: pending actions
|
|
|
|
::
|
|
|
|
=* lex ->
|
|
|
|
|%
|
|
|
|
:: :: ++abet:of
|
|
|
|
++ abet :: resolve
|
|
|
|
[(flop moz) lex]
|
|
|
|
:: :: ++burb:of
|
|
|
|
++ burb :: per ship
|
|
|
|
|= who/ship
|
|
|
|
~(able ~(ex ur urb) who)
|
2016-12-13 22:02:38 +03:00
|
|
|
:: :: ++scry:of
|
|
|
|
++ scry :: read
|
|
|
|
|= {syd/@tas pax/path} ^- (unit gilt)
|
|
|
|
=^ mar pax =/(a (flop pax) [-.a (flop t.+.a)])
|
|
|
|
?> ?=(_-:*gilt mar)
|
|
|
|
=- (biff - (flit |=(a/gilt =(-.a mar))))
|
|
|
|
~ ::TODO
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++call:of
|
|
|
|
++ call :: invoke
|
|
|
|
|= $: :: hen: event cause
|
|
|
|
:: tac: event data
|
|
|
|
::
|
|
|
|
hen/duct
|
|
|
|
tac/task
|
|
|
|
==
|
|
|
|
^+ +>
|
|
|
|
?- -.tac
|
|
|
|
::
|
|
|
|
:: destroy promises
|
2017-12-22 00:44:17 +03:00
|
|
|
:: {$burn p/ship q/safe}
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
2017-12-22 00:44:17 +03:00
|
|
|
$burn
|
2018-05-09 18:23:25 +03:00
|
|
|
%+ cure our.tac
|
|
|
|
abet:abet:(deal:(burb our.tac) p.tac [~ q.tac])
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
:: remote update
|
|
|
|
:: {$hail p/ship q/remote}
|
|
|
|
::
|
|
|
|
$hail
|
2018-05-09 18:23:25 +03:00
|
|
|
%+ cure our.tac
|
2018-05-23 16:53:41 +03:00
|
|
|
abet:abet:(hail:(burb our.tac) p.tac q.tac)
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
:: initialize vane
|
2018-05-23 02:35:16 +03:00
|
|
|
:: [%init our=ship]
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
$init
|
2018-05-18 00:09:20 +03:00
|
|
|
=^ mos eth.lex
|
|
|
|
abet:(~(init et /init now.sys eth.lex) our.tac)
|
2018-05-23 02:35:16 +03:00
|
|
|
+>.$(moz (weld moz (flop mos)))
|
|
|
|
:: %+ cure(moz (weld moz (flop mos))) our.tac
|
|
|
|
:: abet:(make:(burb our.tac) our.tac now.sys eny.sys p.tac q.tac)
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
2018-05-16 00:16:29 +03:00
|
|
|
:: set ethereum source
|
|
|
|
:: [%look p=(each ship purl)]
|
|
|
|
::
|
|
|
|
%look
|
|
|
|
!! ::TODO
|
|
|
|
::
|
2016-11-24 07:25:07 +03:00
|
|
|
:: create promises
|
|
|
|
:: {$mint p/ship q/safe}
|
|
|
|
::
|
|
|
|
$mint
|
2018-05-09 18:23:25 +03:00
|
|
|
%+ cure our.tac
|
|
|
|
abet:abet:(deal:(burb our.tac) p.tac [q.tac ~])
|
2018-05-23 02:35:16 +03:00
|
|
|
::
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
:: move promises
|
|
|
|
:: {$move p/ship q/ship r/safe}
|
|
|
|
::
|
|
|
|
$move
|
2018-05-09 18:23:25 +03:00
|
|
|
=. +>
|
|
|
|
%+ cure our.tac
|
|
|
|
abet:abet:(deal:(burb our.tac) p.tac [~ r.tac])
|
|
|
|
=. +>
|
|
|
|
%+ cure our.tac
|
|
|
|
abet:abet:(deal:(burb our.tac) q.tac [r.tac ~])
|
2016-11-24 07:25:07 +03:00
|
|
|
+>
|
|
|
|
::
|
|
|
|
:: cancel all trackers from duct
|
|
|
|
:: {$nuke $~}
|
|
|
|
::
|
|
|
|
$nuke
|
|
|
|
%_ +>
|
|
|
|
yen (~(del in yen) hen)
|
|
|
|
yen.bal.sub (~(del in yen.bal.sub) hen)
|
|
|
|
yen.own.sub (~(del in yen.own.sub) hen)
|
|
|
|
car.sub %- ~(run by car.sub)
|
2018-05-23 02:35:16 +03:00
|
|
|
|= yen=(set duct)
|
|
|
|
(~(del in yen) hen)
|
2018-05-17 22:48:17 +03:00
|
|
|
listeners.eth (~(del in listeners.eth) hen)
|
2016-11-24 07:25:07 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
:: watch private keys
|
|
|
|
:: {$vein $~}
|
|
|
|
::
|
|
|
|
$vein
|
2018-05-09 18:23:25 +03:00
|
|
|
(curd abet:~(vein ~(feed su our.tac urb sub) hen))
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
2018-05-17 22:48:17 +03:00
|
|
|
:: watch ethereum state
|
|
|
|
:: [%vent ~]
|
|
|
|
::
|
|
|
|
%vent
|
|
|
|
=^ mos eth.lex
|
|
|
|
abet:(~(vent-to et /vent now.sys eth.lex) hen)
|
2018-05-22 00:10:27 +03:00
|
|
|
=. mos [[hen %give %mack ~] mos]
|
|
|
|
+>.$(moz (weld moz (flop mos)))
|
|
|
|
::
|
|
|
|
%vent-result
|
|
|
|
=^ mos eth.lex
|
|
|
|
abet:(~(hear-vent et /vent-result now.sys eth.lex) p.tac)
|
|
|
|
=. mos [[hen %give %mack ~] mos]
|
2018-05-17 22:48:17 +03:00
|
|
|
+>.$(moz (weld moz (flop mos)))
|
|
|
|
::
|
2016-11-24 07:25:07 +03:00
|
|
|
:: monitor assets
|
|
|
|
:: {$vest $~}
|
|
|
|
::
|
|
|
|
$vest
|
2018-05-09 18:23:25 +03:00
|
|
|
(curd abet:~(vest ~(feed su our.tac urb sub) hen))
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
:: monitor all
|
2016-11-24 07:25:07 +03:00
|
|
|
:: {$vine $~}
|
|
|
|
::
|
|
|
|
$vine
|
|
|
|
+>(yen (~(put in yen) hen))
|
|
|
|
::
|
|
|
|
:: authenticated remote request
|
|
|
|
:: {$west p/ship q/path r/*}
|
|
|
|
::
|
|
|
|
$west
|
|
|
|
=+ mes=((hard message) r.tac)
|
|
|
|
?- -.mes
|
|
|
|
::
|
|
|
|
:: reset remote rights
|
2018-05-23 16:53:41 +03:00
|
|
|
:: [%hail p=remote]
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
2018-05-23 16:53:41 +03:00
|
|
|
%hail
|
2018-05-18 22:12:46 +03:00
|
|
|
%+ cure p.p.tac
|
2018-05-23 16:53:41 +03:00
|
|
|
abet:abet:(hail:(burb p.p.tac) q.p.tac p.mes)
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
2018-05-17 22:48:17 +03:00
|
|
|
:: cancel trackers
|
|
|
|
:: [%nuke ~]
|
|
|
|
::
|
|
|
|
%nuke
|
|
|
|
$(tac mes)
|
|
|
|
::
|
|
|
|
:: view ethereum state
|
|
|
|
:: [%vent ~]
|
2018-05-16 00:16:29 +03:00
|
|
|
::
|
|
|
|
%vent
|
2018-05-17 22:48:17 +03:00
|
|
|
$(tac mes)
|
2018-05-22 00:10:27 +03:00
|
|
|
::
|
|
|
|
::
|
|
|
|
%vent-result
|
|
|
|
$(tac mes)
|
2016-11-24 07:25:07 +03:00
|
|
|
==
|
|
|
|
==
|
|
|
|
:: :: ++curd:of
|
|
|
|
++ curd :: relative moves
|
|
|
|
|= {moz/(list move) sub/state-relative}
|
|
|
|
+>(sub sub, moz (weld (flop moz) ^moz))
|
|
|
|
:: :: ++cure:of
|
|
|
|
++ cure :: absolute edits
|
2018-05-09 18:23:25 +03:00
|
|
|
|= {our/ship hab/(list change) urb/state-absolute}
|
2016-11-24 07:25:07 +03:00
|
|
|
^+ +>
|
2018-05-09 18:23:25 +03:00
|
|
|
(curd(urb urb) abet:(~(apex su our urb sub) hab))
|
2016-11-24 07:25:07 +03:00
|
|
|
--
|
|
|
|
:: :: ++su
|
|
|
|
:::: ## relative^heavy :: subjective engine
|
|
|
|
:: ::::
|
|
|
|
++ su
|
2016-12-16 09:34:01 +03:00
|
|
|
:: the ++su core handles all derived state,
|
2016-11-24 07:25:07 +03:00
|
|
|
:: subscriptions, and actions.
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
:: ++feed:su registers subscriptions, and also
|
2016-11-24 07:25:07 +03:00
|
|
|
:: drives certificate propagation when a %veil
|
|
|
|
:: (secure channel) subscription is created.
|
|
|
|
::
|
|
|
|
:: ++feel:su checks if a ++change should notify
|
|
|
|
:: any subscribers.
|
|
|
|
::
|
|
|
|
:: ++fire:su generates outgoing network messages.
|
|
|
|
::
|
|
|
|
:: ++form:su generates the actual report data.
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
=| moz/(list move)
|
2018-05-09 18:23:25 +03:00
|
|
|
=| $: our/ship
|
|
|
|
state-absolute
|
2016-11-24 07:25:07 +03:00
|
|
|
state-relative
|
|
|
|
==
|
|
|
|
:: moz: moves in reverse order
|
|
|
|
:: urb: absolute urbit state
|
|
|
|
:: sub: relative urbit state
|
|
|
|
::
|
2018-05-09 18:23:25 +03:00
|
|
|
=* urb ->-
|
|
|
|
=* sub ->+
|
2016-11-24 07:25:07 +03:00
|
|
|
|%
|
|
|
|
:: :: ++abet:su
|
|
|
|
++ abet :: resolve
|
|
|
|
[(flop moz) sub]
|
|
|
|
:: :: ++apex:su
|
|
|
|
++ apex :: apply changes
|
|
|
|
|= hab/(list change)
|
|
|
|
^+ +>
|
|
|
|
?~ hab +>
|
|
|
|
%= $
|
|
|
|
hab t.hab
|
|
|
|
+>
|
|
|
|
?- -.i.hab
|
|
|
|
$rite (paid +.i.hab)
|
|
|
|
==
|
|
|
|
==
|
|
|
|
:: :: ++exec:su
|
|
|
|
++ exec :: mass gift
|
|
|
|
|= {yen/(set duct) cad/card}
|
2017-02-13 22:58:49 +03:00
|
|
|
=/ noy ~(tap in yen)
|
2016-11-24 07:25:07 +03:00
|
|
|
|- ^+ ..exec
|
|
|
|
?~ noy ..exec
|
|
|
|
$(noy t.noy, moz [[i.noy cad] moz])
|
|
|
|
:: :: ++feed:su
|
|
|
|
++ feed :: subscribe to view
|
|
|
|
|_ :: hen: subscription source
|
|
|
|
::
|
|
|
|
hen/duct
|
|
|
|
:: :: ++vein:feed:su
|
|
|
|
++ vein :: private keys
|
|
|
|
%_ ..feed
|
|
|
|
moz [[hen %give %vein [lyf jaw]:own] moz]
|
|
|
|
yen.own (~(put in yen.own) hen)
|
|
|
|
==
|
|
|
|
:: :: ++vest:feed:su
|
|
|
|
++ vest :: balance
|
|
|
|
%_ ..feed
|
|
|
|
moz [[hen %give %vest %& vest:form] moz]
|
|
|
|
yen.bal (~(put in yen.bal) hen)
|
|
|
|
==
|
|
|
|
--
|
|
|
|
:: :: ++feel:su
|
|
|
|
++ feel :: update tracker
|
2016-12-16 09:34:01 +03:00
|
|
|
|%
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++vein:feel:su
|
|
|
|
++ vein :: kick private keys
|
|
|
|
^+ ..feel
|
|
|
|
=/ yam vein:form
|
|
|
|
?: =(yam +.own) ..feel
|
|
|
|
(exec(+.own yam) yen.own [%give %vein +.own])
|
|
|
|
:: :: ++vest:feel:su
|
|
|
|
++ vest :: kick balance
|
|
|
|
|= hug/action
|
|
|
|
^+ ..feel
|
|
|
|
?: =([~ ~] +.q.hug) ..feel
|
|
|
|
::
|
|
|
|
:: notify all local listeners
|
|
|
|
::
|
|
|
|
=. ..feel (exec yen.bal [%give %vest %| p.hug q.hug])
|
|
|
|
::
|
|
|
|
:: pig: purse report for partner
|
|
|
|
::
|
2018-03-19 06:54:47 +03:00
|
|
|
?. ?=(%| -.q.hug) ..feel
|
2016-11-24 07:25:07 +03:00
|
|
|
=* pig (~(lawn ur urb) our p.hug)
|
|
|
|
%_ ..feel
|
|
|
|
moz
|
|
|
|
:_ moz
|
2018-05-23 16:53:41 +03:00
|
|
|
:^ *duct %pass /vest/(scot %p p.hug)
|
|
|
|
:+ %a %want
|
|
|
|
:+ [our p.hug] /j
|
|
|
|
^- message
|
|
|
|
[%hail |+pig]
|
2016-12-16 09:34:01 +03:00
|
|
|
==
|
2016-11-24 07:25:07 +03:00
|
|
|
--
|
|
|
|
:: :: ++form:su
|
|
|
|
++ form :: generate reports
|
|
|
|
|%
|
|
|
|
:: :: ++vein:form:su
|
|
|
|
++ vein :: private key report
|
|
|
|
^- (pair life (map life ring))
|
|
|
|
(~(lean ur urb) our)
|
|
|
|
:: :: ++vest:form:su
|
|
|
|
++ vest :: balance report
|
|
|
|
^- balance
|
|
|
|
:- ::
|
|
|
|
:: raw: all our liabilities by ship
|
|
|
|
:: dud: delete liabilities to self
|
|
|
|
:: cul: mask secrets
|
|
|
|
::
|
|
|
|
=* raw =-(?~(- ~ u.-) (~(get by pry.urb) our))
|
|
|
|
=* dud (~(del by raw) our)
|
|
|
|
=* cul (~(run by dud) |=(safe ~(redact up +<)))
|
|
|
|
cul
|
|
|
|
::
|
|
|
|
:: fub: all assets by ship
|
|
|
|
:: veg: all nontrivial assets, secrets masked
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
=/ fub
|
2016-11-24 07:25:07 +03:00
|
|
|
^- (list (pair ship (unit safe)))
|
|
|
|
%+ turn
|
2017-02-13 23:43:18 +03:00
|
|
|
~(tap by pry.urb)
|
2016-11-24 07:25:07 +03:00
|
|
|
|= (pair ship (map ship safe))
|
|
|
|
[p (~(get by q) our)]
|
|
|
|
=* veg
|
|
|
|
|- ^- (list (pair ship safe))
|
|
|
|
?~ fub ~
|
|
|
|
=+ $(fub t.fub)
|
|
|
|
?~(q.i.fub - [[p.i.fub ~(redact up u.q.i.fub)] -])
|
|
|
|
::
|
|
|
|
(~(gas by *(map ship safe)) veg)
|
|
|
|
--
|
|
|
|
:: :: ++paid:su
|
|
|
|
++ paid :: track asset change
|
|
|
|
|= $: :: rex: promise from
|
|
|
|
:: pal: promise to
|
|
|
|
:: del: change to existing
|
|
|
|
:: bur: changes to symmetric keys
|
|
|
|
::
|
|
|
|
rex/ship
|
|
|
|
pal/ship
|
|
|
|
del/bump
|
|
|
|
==
|
|
|
|
^+ +>
|
2016-12-16 09:34:01 +03:00
|
|
|
=* bur ?| (~(exists up mor.del) %urban)
|
2016-11-24 07:25:07 +03:00
|
|
|
(~(exists up les.del) %urban)
|
|
|
|
==
|
|
|
|
:: ignore empty delta; keep secrets out of metadata
|
|
|
|
::
|
|
|
|
?: =([~ ~] del) +>
|
|
|
|
=. del [~(redact up mor.del) ~(redact up les.del)]
|
|
|
|
?. =(our pal)
|
|
|
|
::
|
|
|
|
:: track promises we made to others
|
|
|
|
::
|
|
|
|
?. =(our rex) +>
|
|
|
|
::
|
|
|
|
:: track liabilities
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
=. +> (vest:feel pal %& del)
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
:: track secure channels
|
|
|
|
::
|
|
|
|
?. bur +>
|
2018-05-23 02:35:16 +03:00
|
|
|
::TODO ???
|
|
|
|
!! :: (veil:feel pal)
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
:: track private keys
|
|
|
|
::
|
2016-12-11 03:46:13 +03:00
|
|
|
=? +> (~(exists up mor.del) %jewel)
|
2016-11-24 07:25:07 +03:00
|
|
|
vein:feel
|
|
|
|
::
|
|
|
|
:: track changes in secure channels
|
|
|
|
::
|
|
|
|
?. bur +>
|
2018-05-23 02:35:16 +03:00
|
|
|
::TODO ???
|
|
|
|
!! :: (veil:feel rex)
|
2016-11-24 07:25:07 +03:00
|
|
|
--
|
|
|
|
:: :: ++ur
|
|
|
|
:::: ## absolute^heavy :: objective engine
|
|
|
|
:: ::::
|
|
|
|
++ ur
|
|
|
|
:: the ++ur core handles primary, absolute state.
|
|
|
|
:: it is the best reference for the semantics of
|
|
|
|
:: the urbit pki.
|
|
|
|
::
|
|
|
|
:: it is absolutely verboten to use [our] in ++ur.
|
|
|
|
::
|
|
|
|
=| hab/(list change)
|
2016-12-16 09:34:01 +03:00
|
|
|
=| state-absolute
|
2016-11-24 07:25:07 +03:00
|
|
|
::
|
|
|
|
:: hab: side effects, reversed
|
|
|
|
:: urb: all urbit state
|
|
|
|
::
|
|
|
|
=* urb -
|
|
|
|
|%
|
|
|
|
:: :: ++abet:ur
|
|
|
|
++ abet :: resolve
|
|
|
|
[(flop hab) `state-absolute`urb]
|
2018-05-23 02:35:16 +03:00
|
|
|
:: :: ++lawn:ur
|
|
|
|
++ lawn :: debts, rex to pal
|
|
|
|
|= {rex/ship pal/ship}
|
2016-11-24 07:25:07 +03:00
|
|
|
^- safe
|
|
|
|
(lawn:~(able ex rex) pal)
|
|
|
|
:: :: ++lean:ur
|
|
|
|
++ lean :: private keys
|
|
|
|
|= rex/ship
|
|
|
|
^- (pair life (map life ring))
|
|
|
|
lean:~(able ex rex)
|
|
|
|
:: :: ++ex:ur
|
|
|
|
++ ex :: server engine
|
|
|
|
:: shy: private state
|
|
|
|
:: rug: domestic will
|
|
|
|
::
|
|
|
|
=| $: shy/(map ship safe)
|
|
|
|
==
|
|
|
|
=| :: rex: server ship
|
|
|
|
::
|
|
|
|
rex/ship
|
|
|
|
|%
|
|
|
|
:: :: ++abet:ex:ur
|
|
|
|
++ abet :: resolve
|
|
|
|
%_ ..ex
|
|
|
|
pry (~(put by pry) rex shy)
|
|
|
|
==
|
|
|
|
:: :: ++able:ex:ur
|
|
|
|
++ able :: initialize
|
|
|
|
%_ .
|
|
|
|
shy (fall (~(get by pry) rex) *(map ship safe))
|
|
|
|
==
|
|
|
|
:: :: ++deal:ex:ur
|
|
|
|
++ deal :: alter rights
|
|
|
|
|= {pal/ship del/bump}
|
|
|
|
^+ +>
|
|
|
|
=/ gob (fall (~(get by shy) pal) *safe)
|
|
|
|
=* hep (~(update up gob) del)
|
|
|
|
%_ +>.$
|
|
|
|
shy (~(put by shy) pal hep)
|
|
|
|
hab [[%rite rex pal del] hab]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ hail :: ++hail:ex:ur
|
|
|
|
|= {pal/ship rem/remote} :: report rights
|
|
|
|
^+ +>
|
|
|
|
=/ gob (fall (~(get by shy) pal) *safe)
|
|
|
|
=/ yer ^- (pair bump safe)
|
|
|
|
?- -.rem
|
2018-03-19 06:54:47 +03:00
|
|
|
%& [[p.rem ~] (~(splice up gob) p.rem)]
|
|
|
|
%| [(~(differ up gob) p.rem) p.rem]
|
2016-11-24 07:25:07 +03:00
|
|
|
==
|
|
|
|
%_ +>.$
|
|
|
|
shy (~(put by shy) pal q.yer)
|
|
|
|
hab [[%rite rex pal p.yer] hab]
|
|
|
|
==
|
|
|
|
:: :: ++lean:ex:ur
|
|
|
|
++ lean :: private keys
|
|
|
|
^- (pair life (map life ring))
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
:: lyf: latest life of
|
2016-11-24 07:25:07 +03:00
|
|
|
:: par: promises by rex, to rex
|
|
|
|
:: jel: %jewel rights
|
|
|
|
::
|
2018-05-23 02:35:16 +03:00
|
|
|
:: =/ lyf `life`(fall ~(current we rug) 1)
|
|
|
|
:: =* par (~(got by shy) rex)
|
|
|
|
:: =/ jel `rite`(need (~(expose up par) %jewel))
|
|
|
|
:: ?> ?=($jewel -.jel)
|
|
|
|
:: [lyf p.jel]
|
|
|
|
[0 ~] ::TODO
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++lawn:ex:ur
|
|
|
|
++ lawn :: liabilities to pal
|
|
|
|
|= pal/ship
|
|
|
|
^- safe
|
|
|
|
=-(?~(- ~ u.-) (~(get by shy) pal))
|
2017-04-23 06:13:14 +03:00
|
|
|
--
|
2018-05-23 02:35:16 +03:00
|
|
|
--
|
2018-05-16 00:16:29 +03:00
|
|
|
:: :: ++et
|
|
|
|
:::: ## ethereum^heavy :: ethereum engine
|
|
|
|
:: ::::
|
|
|
|
++ et
|
|
|
|
:: the ++et core handles ethereum-based state
|
|
|
|
:: and all network requests necessary to
|
|
|
|
:: maintain it.
|
|
|
|
::
|
|
|
|
::TODO more words
|
|
|
|
=| moves=(list move)
|
|
|
|
=| changes=(jar [@ud @ud] diff-constitution)
|
|
|
|
=| requests=(jar wire (pair (unit @t) request))
|
|
|
|
|_ $: cuz=wire
|
2018-05-16 21:48:20 +03:00
|
|
|
now=@da
|
2018-05-16 00:16:29 +03:00
|
|
|
state-ethereum
|
|
|
|
==
|
2018-05-16 21:48:20 +03:00
|
|
|
+* eth +<+>
|
2018-05-16 00:16:29 +03:00
|
|
|
::
|
|
|
|
++ abet
|
|
|
|
^- [(list move) state-ethereum]
|
2018-05-16 21:48:20 +03:00
|
|
|
=- [(weld - (flop moves)) eth]
|
2018-05-16 00:16:29 +03:00
|
|
|
%+ weld
|
|
|
|
^- (list move)
|
|
|
|
%+ turn ~(tap by requests)
|
|
|
|
|= [w=wire r=(list (pair (unit @t) request))]
|
2018-05-16 21:48:20 +03:00
|
|
|
%+ rpc-hiss w
|
2018-05-16 00:16:29 +03:00
|
|
|
a+(turn (flop r) request-to-json)
|
|
|
|
^- (list move)
|
2018-05-22 20:32:22 +03:00
|
|
|
?: =(0 ~(wyt by changes)) ~
|
|
|
|
%+ update-to-all %difs
|
|
|
|
%+ sort ~(tap by changes)
|
|
|
|
:: sort by block number, then by event log number,
|
|
|
|
::TODO then by diff priority.
|
|
|
|
|= [[[b1=@ud l1=@ud] *] [[b2=@ud l2=@ud] *]]
|
|
|
|
?. =(b1 b2) (lth b1 b2)
|
|
|
|
?. =(l1 l2) (lth l1 l2)
|
|
|
|
&
|
2018-05-16 21:48:20 +03:00
|
|
|
::
|
|
|
|
++ put-move
|
|
|
|
|= mov=move
|
|
|
|
%_(+> moves [mov moves])
|
|
|
|
::
|
|
|
|
++ put-moves
|
|
|
|
|= mos=(list move)
|
|
|
|
%_(+> moves (weld (flop mos) moves))
|
|
|
|
::
|
|
|
|
++ make-change
|
|
|
|
|= [cause=[@ud @ud] dif=diff-constitution]
|
|
|
|
(da(changes (~(add ja changes) cause dif)) cause [dif]~)
|
|
|
|
::
|
|
|
|
++ make-changes
|
|
|
|
|= [cause=[@ud @ud] dis=(list diff-constitution)]
|
|
|
|
=- (da(changes -) cause dis)
|
|
|
|
%+ ~(put by changes) cause
|
|
|
|
(weld (flop dis) (~(get ja changes) cause))
|
|
|
|
::
|
|
|
|
++ put-request
|
|
|
|
|= [wir=wire id=(unit @t) req=request]
|
|
|
|
%_(+> requests (~(add ja requests) wir id req))
|
|
|
|
::
|
2018-05-17 17:40:55 +03:00
|
|
|
++ put-individual-request
|
|
|
|
|= [wir=wire id=(unit @t) req=request]
|
|
|
|
(put-move (rpc-hiss wir (request-to-json id req)))
|
|
|
|
::
|
2018-05-16 21:48:20 +03:00
|
|
|
::
|
|
|
|
++ wrap-note
|
|
|
|
|= [wir=wire not=note:able]
|
2018-05-16 00:16:29 +03:00
|
|
|
^- move
|
2018-05-22 00:10:27 +03:00
|
|
|
[[/jael/eth-logic ~ ~] %pass wir not]
|
2018-05-16 00:16:29 +03:00
|
|
|
::
|
2018-05-16 21:48:20 +03:00
|
|
|
++ rpc-hiss
|
|
|
|
|= [wir=wire jon=json]
|
|
|
|
^- move
|
|
|
|
%+ wrap-note wir
|
2018-05-16 00:16:29 +03:00
|
|
|
:^ %e %hiss ~
|
2018-05-16 21:48:20 +03:00
|
|
|
:+ %json-rpc-response %hiss
|
2018-05-16 00:16:29 +03:00
|
|
|
=+ (need (de-purl:html 'http://localhost:8545'))
|
2018-05-16 23:14:46 +03:00
|
|
|
!> (json-request -(p.p |) jon)
|
2018-05-16 21:48:20 +03:00
|
|
|
::
|
|
|
|
++ update-to-all
|
|
|
|
|= upd=update
|
|
|
|
^- (list move)
|
|
|
|
%+ turn ~(tap in listeners)
|
|
|
|
|= d=duct
|
2018-05-22 00:10:27 +03:00
|
|
|
:: [d %give %vent upd]
|
|
|
|
::NOTE we do a %pass instead of a %give because ames is bad
|
|
|
|
?> ?=([[%a @ @ *] *] d)
|
|
|
|
=+ our=(slav %p i.t.i.d)
|
|
|
|
=+ who=(slav %p i.t.t.i.d)
|
|
|
|
%+ wrap-note /vent-result
|
|
|
|
[%a %want [our who] /j/vent-result %vent-result upd]
|
2018-05-16 21:48:20 +03:00
|
|
|
::
|
|
|
|
++ subscribe-to
|
2018-05-18 22:12:46 +03:00
|
|
|
|= [our=ship who=ship]
|
2018-05-17 22:48:17 +03:00
|
|
|
%+ wrap-note /vent/(scot %p who)
|
2018-05-18 22:12:46 +03:00
|
|
|
[%a %want [our who] /j/vent `*`[%vent ~]]
|
2018-05-16 21:48:20 +03:00
|
|
|
::
|
|
|
|
++ unsubscribe-from
|
2018-05-18 22:12:46 +03:00
|
|
|
|= [our=ship who=ship]
|
2018-05-17 22:48:17 +03:00
|
|
|
%+ wrap-note /vent/(scot %p who)
|
2018-05-18 22:12:46 +03:00
|
|
|
[%a %want [our who] /j/vent `*`[%nuke ~]]
|
2018-05-16 21:48:20 +03:00
|
|
|
::
|
|
|
|
::
|
|
|
|
++ read
|
|
|
|
|= [wir=wire cal=ships:function]
|
|
|
|
=+ (ships:function-to-call cal)
|
|
|
|
%^ put-request wir `id
|
|
|
|
:+ %eth-call
|
|
|
|
[~ ships:contracts ~ ~ ~ (encode-call dat)]
|
|
|
|
::NOTE we can't make read calls to not the latest block. however,
|
|
|
|
:: you risk getting data that filter polling hasn't yet seen,
|
|
|
|
:: so probably poll the filter before doing any important reads.
|
|
|
|
[%label %latest]
|
|
|
|
::
|
|
|
|
++ read-ships
|
|
|
|
|= [wir=wire who=(list @p)]
|
|
|
|
?~ who +>
|
|
|
|
=. +> (read wir %ships i.who)
|
|
|
|
$(who t.who)
|
|
|
|
::
|
|
|
|
++ read-dns
|
|
|
|
|= wir=wire
|
|
|
|
=+ inx=(gulf 0 2)
|
|
|
|
|-
|
|
|
|
?~ inx +>.^$
|
|
|
|
=. +>.^$ (read wir %dns-domains i.inx)
|
|
|
|
$(inx t.inx)
|
|
|
|
::
|
|
|
|
::
|
|
|
|
++ new-filter
|
2018-05-17 17:40:55 +03:00
|
|
|
%- put-individual-request
|
2018-05-16 21:48:20 +03:00
|
|
|
:+ /filter/new `'new filter'
|
|
|
|
:* %eth-new-filter
|
|
|
|
`[%number +(latest-block)] ::TODO or Ships origin block when 0
|
|
|
|
~ ::TODO we should probably chunck these, maybe?
|
|
|
|
:: https://stackoverflow.com/q/49339489
|
|
|
|
~[ships:contracts]
|
|
|
|
~
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ read-filter
|
2018-05-17 17:40:55 +03:00
|
|
|
%- put-individual-request
|
|
|
|
:+ /filter/logs `'filter logs'
|
2018-05-16 21:48:20 +03:00
|
|
|
[%eth-get-filter-logs filter-id]
|
|
|
|
::
|
|
|
|
++ poll-filter
|
2018-05-17 17:40:55 +03:00
|
|
|
%- put-individual-request
|
|
|
|
:+ /filter/changes `'poll filter'
|
2018-05-16 21:48:20 +03:00
|
|
|
[%eth-get-filter-changes filter-id]
|
|
|
|
::
|
|
|
|
++ wait-poll
|
|
|
|
%- put-move
|
|
|
|
%+ wrap-note /poll
|
|
|
|
[%b %wait (add now ~m4)]
|
|
|
|
::
|
|
|
|
::
|
|
|
|
++ init
|
2018-05-18 00:09:20 +03:00
|
|
|
|= our=ship
|
|
|
|
::TODO ship or node as sample?
|
|
|
|
::TODO set default polling time in config
|
|
|
|
=+ bos=(sein:title our)
|
|
|
|
?. =(our bos)
|
2018-05-16 21:48:20 +03:00
|
|
|
::TODO set bos as source in config
|
2018-05-18 22:12:46 +03:00
|
|
|
(put-move (subscribe-to our bos))
|
2018-05-16 21:48:20 +03:00
|
|
|
::TODO set localhost as source in config
|
|
|
|
new-filter
|
|
|
|
::
|
|
|
|
++ run-check
|
|
|
|
|= save=?
|
|
|
|
=+ wir=(weld /read ?:(save /reset /verify))
|
|
|
|
=. +>.$ (read-dns wir)
|
|
|
|
(read-ships wir (gulf ~zod ~nec)) ::TODO ~fes
|
|
|
|
::
|
|
|
|
::
|
2018-05-17 22:48:17 +03:00
|
|
|
++ vent-to
|
2018-05-16 21:48:20 +03:00
|
|
|
|= duc=duct
|
2018-05-22 00:10:27 +03:00
|
|
|
::TODO check if we already know duc
|
2018-05-16 21:48:20 +03:00
|
|
|
%- put-move(listeners (~(put in listeners) duc))
|
2018-05-22 00:10:27 +03:00
|
|
|
~& [%venting-to duc]
|
|
|
|
:: [duc %give %vent %full ships dns heard]
|
|
|
|
::NOTE we do a %pass instead of a %give because ames is bad
|
|
|
|
?> ?=([[%a @ @ *] *] duc)
|
|
|
|
=+ our=(slav %p i.t.i.duc)
|
|
|
|
=+ who=(slav %p i.t.t.i.duc)
|
|
|
|
%+ wrap-note /vent-result
|
|
|
|
[%a %want [our who] /j/vent-result %vent-result %full ships dns heard]
|
2018-05-16 21:48:20 +03:00
|
|
|
::
|
|
|
|
++ hear-vent
|
|
|
|
|= upd=update
|
2018-05-18 00:49:20 +03:00
|
|
|
^+ +>
|
2018-05-16 21:48:20 +03:00
|
|
|
?- -.upd
|
|
|
|
%full (assume +.upd)
|
2018-05-22 20:32:22 +03:00
|
|
|
::
|
|
|
|
%difs
|
|
|
|
|-
|
|
|
|
?~ dis.upd +>.^$
|
|
|
|
=. +>.^$ (accept i.dis.upd)
|
|
|
|
$(dis.upd t.dis.upd)
|
2018-05-16 21:48:20 +03:00
|
|
|
==
|
|
|
|
::
|
|
|
|
++ assume
|
|
|
|
|= [s=fleet d=dnses h=events]
|
2018-05-18 00:49:20 +03:00
|
|
|
^+ +>
|
2018-05-16 21:48:20 +03:00
|
|
|
?: &(=(s ships) =(d dns) =(h heard)) +>
|
|
|
|
~& [%assume ~(wyt by s) ~(wyt in h)]
|
2018-05-22 00:10:27 +03:00
|
|
|
%- put-moves(ships s, dns d, heard h)
|
|
|
|
(update-to-all %full s d h)
|
2018-05-16 21:48:20 +03:00
|
|
|
::
|
|
|
|
++ accept
|
|
|
|
|= [cause=[@ud @ud] dis=(list diff-constitution)]
|
2018-05-18 00:49:20 +03:00
|
|
|
^+ +>
|
2018-05-16 21:48:20 +03:00
|
|
|
?: &(!=([0 0] cause) (~(has in heard) cause))
|
|
|
|
~& %accept-ignoring-duplicate-event
|
|
|
|
+>.$
|
|
|
|
~& [%accept (lent dis)]
|
|
|
|
(make-changes cause dis)
|
|
|
|
::
|
2018-05-16 00:16:29 +03:00
|
|
|
::
|
2018-05-18 00:09:20 +03:00
|
|
|
++ wake poll-filter
|
|
|
|
::
|
2018-05-16 00:16:29 +03:00
|
|
|
++ sigh
|
|
|
|
|= [mar=mark res=vase]
|
|
|
|
^+ +>
|
2018-05-17 17:40:55 +03:00
|
|
|
?> ?=(%json-rpc-response mar)
|
|
|
|
~| res
|
|
|
|
=+ rep=((hard response:rpc:jstd) q.res)
|
|
|
|
~& rpc+rep
|
|
|
|
?+ cuz !!
|
|
|
|
[%filter %new *]
|
|
|
|
(take-new-filter rep)
|
|
|
|
::
|
|
|
|
[%filter *]
|
|
|
|
(take-filter-results rep)
|
|
|
|
::
|
|
|
|
[%read @ta *]
|
|
|
|
(take-read-results rep ?=(%reset i.t.cuz))
|
2018-05-16 00:16:29 +03:00
|
|
|
==
|
|
|
|
::
|
2018-05-17 17:40:55 +03:00
|
|
|
++ take-new-filter
|
2018-05-16 21:48:20 +03:00
|
|
|
|= rep=response:rpc:jstd
|
|
|
|
^+ +>
|
|
|
|
~| rep
|
|
|
|
?< ?=(%batch -.rep)
|
|
|
|
?: ?=(%error -.rep)
|
|
|
|
~& [%filter-error--retrying message.rep]
|
|
|
|
new-filter
|
|
|
|
=- read-filter(filter-id -)
|
|
|
|
(parse-eth-new-filter-res res.rep)
|
|
|
|
::
|
|
|
|
++ take-filter-results
|
|
|
|
|= rep=response:rpc:jstd
|
|
|
|
^+ +>
|
|
|
|
?< ?=(%batch -.rep)
|
|
|
|
?: ?=(%error -.rep)
|
|
|
|
?. =('filter not found' message.rep)
|
|
|
|
~& [%unhandled-filter-error message.rep]
|
|
|
|
+>
|
|
|
|
~& %filter-timed-out--recreating
|
|
|
|
new-filter
|
2018-05-18 00:09:20 +03:00
|
|
|
=. +> wait-poll ::TODO don't if there's already a timer?
|
2018-05-16 21:48:20 +03:00
|
|
|
?> ?=(%a -.res.rep)
|
|
|
|
=* changes p.res.rep
|
|
|
|
~& [%filter-changes (lent changes)]
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ changes +>.^$
|
|
|
|
=. +>.^$
|
|
|
|
(take-event-log (parse-event-log i.changes))
|
|
|
|
$(changes t.changes)
|
|
|
|
::
|
|
|
|
++ take-event-log
|
|
|
|
|= log=event-log
|
|
|
|
^+ +>
|
|
|
|
?~ mined.log
|
|
|
|
~& %ignoring-unmined-event
|
|
|
|
+>
|
|
|
|
::
|
|
|
|
::TODO if the block number is less than latest, that means we got
|
|
|
|
:: events out of order somehow and should probably reset.
|
|
|
|
::
|
|
|
|
=* place u.mined.log
|
|
|
|
?: (~(has in heard) block-number.place log-index.place)
|
|
|
|
~& %ignoring-duplicate-event
|
|
|
|
+>
|
|
|
|
=+ cuz=[block-number.place log-index.place]
|
|
|
|
::
|
|
|
|
?: =(event.log changed-dns:ships-events)
|
|
|
|
=+ ^- [pri=tape sec=tape ter=tape]
|
|
|
|
(decode-results data.log ~[%string %string %string])
|
|
|
|
=? +>.$ !=(pri.dns (crip pri))
|
|
|
|
(make-change cuz %dns 0 (crip pri))
|
|
|
|
=? +>.$ !=(sec.dns (crip sec))
|
|
|
|
(make-change cuz %dns 1 (crip sec))
|
|
|
|
=? +>.$ !=(ter.dns (crip ter))
|
|
|
|
(make-change cuz %dns 2 (crip ter))
|
|
|
|
+>.$
|
|
|
|
::
|
|
|
|
=+ dis=(event-log-to-hull-diffs log)
|
|
|
|
?~ dis +>.$
|
|
|
|
(make-change cuz %hull i.dis)
|
|
|
|
::
|
|
|
|
::
|
|
|
|
++ take-read-results
|
|
|
|
|= [rep=response:rpc:jstd save=?]
|
|
|
|
^+ +>
|
|
|
|
?> ?=(%batch -.rep)
|
|
|
|
|- ^+ +>.^$
|
|
|
|
?~ bas.rep +>.^$
|
|
|
|
=. +>.^$
|
|
|
|
(take-read-result i.bas.rep save)
|
|
|
|
$(bas.rep t.bas.rep)
|
|
|
|
::
|
|
|
|
::NOTE yes, this is awful
|
|
|
|
++ take-read-result
|
|
|
|
|= [rep=response:rpc:jstd save=?]
|
|
|
|
^+ +>
|
|
|
|
?< ?=(%batch -.rep)
|
|
|
|
?: ?=(%error -.rep)
|
|
|
|
~& [%unhandled-read-error id.rep message.rep]
|
|
|
|
+>
|
|
|
|
=/ cal=ships:function (parse-id id.rep)
|
|
|
|
=+ wir=(weld /read ?:(save /reset /verify))
|
|
|
|
::TODO think about a better way to structure the comparison code below
|
|
|
|
?- -.cal :: ~&([%unhandled-read-result -.cal] +>.$)
|
|
|
|
%ships
|
|
|
|
?> ?=(%s -.res.rep)
|
|
|
|
=/ hul=hull:eth-noun
|
|
|
|
~| [id.rep p.res.rep]
|
|
|
|
(decode-results p.res.rep hull:eth-type)
|
|
|
|
:: ignore inactive ships
|
|
|
|
?. active.hul +>.$
|
|
|
|
:: we store the read data for now, and only compare with state once we
|
|
|
|
:: have completed it by learning the spawned ships.
|
|
|
|
=. checking (~(put by checking) who.cal (hull-from-eth hul))
|
|
|
|
(read wir %get-spawned who.cal)
|
|
|
|
::
|
|
|
|
%get-spawned
|
|
|
|
?> ?=(%s -.res.rep)
|
|
|
|
=+ hul=(~(got by checking) who.cal)
|
|
|
|
=/ kis=(list @p)
|
|
|
|
::TODO can we let this be if we're cool with just @ ?
|
|
|
|
%- (list @p) ::NOTE because arrays are still typeless
|
|
|
|
(decode-results p.res.rep [%array %uint]~)
|
|
|
|
=. hul hul(spawned (~(gas in *(set @p)) kis))
|
|
|
|
::
|
|
|
|
=+ have=(~(get by ships) who.cal)
|
|
|
|
=. +>.$
|
|
|
|
?~ have
|
|
|
|
~& [%completely-missing who.cal]
|
|
|
|
?. save +>.$
|
|
|
|
~& [%storing-chain-version-of who.cal]
|
|
|
|
(make-change [0 0] %hull who.cal %full hul)
|
|
|
|
::
|
|
|
|
=* huv state.u.have
|
|
|
|
?: =(huv hul) +>.$
|
|
|
|
~& [%differs-from-chain-version who.cal]
|
|
|
|
~& [%what %have %chain]
|
|
|
|
::TODO can we maybe re-use some ++redo code to simplify this?
|
|
|
|
~? !=(owner.huv owner.hul)
|
|
|
|
:- %owner-differs
|
|
|
|
[owner.huv owner.hul]
|
|
|
|
~? !=(encryption-key.huv encryption-key.hul)
|
|
|
|
:- %encryption-key-differs
|
|
|
|
[encryption-key.huv encryption-key.hul]
|
|
|
|
~? !=(authentication-key.huv authentication-key.hul)
|
|
|
|
:- %authentication-key-differs
|
|
|
|
[authentication-key.huv authentication-key.hul]
|
|
|
|
~? !=(key-revision.huv key-revision.hul)
|
|
|
|
:- %key-revision-differs
|
|
|
|
[key-revision.huv key-revision.hul]
|
2018-05-22 17:04:58 +03:00
|
|
|
~? !=(continuity-number.huv continuity-number.hul)
|
|
|
|
:- %continuity-number-differs
|
|
|
|
[continuity-number.huv continuity-number.hul]
|
2018-05-16 21:48:20 +03:00
|
|
|
~? !=(spawn-count.huv spawn-count.hul)
|
|
|
|
:- %spawn-count-differs
|
|
|
|
[spawn-count.huv spawn-count.hul]
|
|
|
|
~? !=(spawned.huv spawned.hul)
|
|
|
|
:- %spawned-differs
|
|
|
|
[spawned.huv spawned.hul]
|
|
|
|
~? !=(sponsor.huv sponsor.hul)
|
|
|
|
:- %sponsor-differs
|
|
|
|
[sponsor.huv sponsor.hul]
|
|
|
|
~? !=(escape.huv escape.hul)
|
|
|
|
:- %escape-differs
|
|
|
|
[escape.huv escape.hul]
|
|
|
|
~? !=(spawn-proxy.huv spawn-proxy.hul)
|
|
|
|
:- %spawn-proxy-differs
|
|
|
|
[spawn-proxy.huv spawn-proxy.hul]
|
|
|
|
~? !=(transfer-proxy.huv transfer-proxy.hul)
|
|
|
|
:- %transfer-proxy-differs
|
|
|
|
[transfer-proxy.huv transfer-proxy.hul]
|
|
|
|
::
|
|
|
|
~& %$
|
|
|
|
?. save +>.$
|
|
|
|
~& [%storing-chain-version-of who.cal]
|
|
|
|
(make-change [0 0] %hull who.cal %full hul)
|
|
|
|
::
|
|
|
|
=. checking (~(del by checking) who.cal)
|
|
|
|
(read-ships wir kis)
|
|
|
|
::
|
|
|
|
%dns-domains
|
|
|
|
?> ?=(%s -.res.rep)
|
|
|
|
=+ dom=(crip (decode-results p.res.rep ~[%string]))
|
|
|
|
?: =(0 ind.cal)
|
|
|
|
?: =(pri.dns dom) +>.$
|
|
|
|
~& [%primary-dns-differs pri.dns dom]
|
|
|
|
?. save +>.$
|
|
|
|
(make-change [0 0] %dns 0 dom)
|
|
|
|
?: =(1 ind.cal)
|
|
|
|
?: =(sec.dns dom) +>.$
|
|
|
|
~& [%secondary-dns-differs sec.dns dom]
|
|
|
|
?. save +>.$
|
|
|
|
(make-change [0 0] %dns 1 dom)
|
|
|
|
?: =(2 ind.cal)
|
|
|
|
?: =(ter.dns dom) +>.$
|
|
|
|
~& [%tertiary-dns-differs ter.dns dom]
|
|
|
|
?. save +>.$
|
|
|
|
(make-change [0 0] %dns 2 dom)
|
|
|
|
!!
|
|
|
|
==
|
|
|
|
::
|
|
|
|
::
|
|
|
|
++ da
|
|
|
|
|= [[block=@ud log=@ud] dis=(list diff-constitution)]
|
|
|
|
^+ +>
|
|
|
|
=. heard (~(put in heard) block log)
|
|
|
|
=. latest-block (max latest-block block)
|
|
|
|
|^ ?~ dis +>.^$
|
|
|
|
=. ..da
|
|
|
|
=* dif i.dis
|
|
|
|
?- -.dif
|
|
|
|
%hull (da-hull +.dif)
|
|
|
|
%dns (da-dns +.dif)
|
|
|
|
==
|
|
|
|
$(dis t.dis)
|
|
|
|
::
|
|
|
|
++ da-hull
|
|
|
|
|= [who=@p dif=diff-hull]
|
|
|
|
=- ..da(ships -)
|
|
|
|
:: if new, first dif must be %full
|
|
|
|
?> |((~(has by ships) who) ?=(%full -.dif))
|
|
|
|
=+ old=(fall (~(get by ships) who) *complete-ship)
|
|
|
|
:: catch key changes, store them in the key map
|
|
|
|
=? keys.old ?=(%keys -.dif)
|
|
|
|
~? &((gth rev.dif 0) !(~(has by keys.old) (dec rev.dif)))
|
|
|
|
[%missing-previous-key-rev who (dec rev.dif)]
|
|
|
|
(~(put by keys.old) rev.dif enc.dif aut.dif)
|
|
|
|
:: for full, store the new keys in case we don't have them yet
|
|
|
|
=? keys.old ?=(%full -.dif)
|
|
|
|
=, new.dif
|
|
|
|
~? &((gth key-revision 0) !(~(has by keys.old) (dec key-revision)))
|
|
|
|
[%missing-previous-key-rev who (dec key-revision)]
|
|
|
|
%+ ~(put by keys.old) key-revision
|
|
|
|
[encryption-key authentication-key]
|
|
|
|
=. state.old (apply-hull-diff state.old dif)
|
|
|
|
=. history.old [dif history.old]
|
|
|
|
:: apply dif to ship state
|
|
|
|
(~(put by ships) who old)
|
|
|
|
::
|
|
|
|
++ da-dns
|
|
|
|
|= [ind=@ud new=@t]
|
|
|
|
?: =(0 ind) ..da(pri.dns new)
|
|
|
|
?: =(1 ind) ..da(sec.dns new)
|
|
|
|
?: =(2 ind) ..da(ter.dns new)
|
|
|
|
!!
|
|
|
|
::
|
|
|
|
++ da-heard
|
|
|
|
|= [block=@ud log=@ud]
|
|
|
|
=- ..da(heard har, latest-block las)
|
|
|
|
^- [har=(set (pair @ud @ud)) las=@ud]
|
|
|
|
:- (~(put in heard) block log)
|
|
|
|
(max latest-block block)
|
|
|
|
--
|
2018-05-16 00:16:29 +03:00
|
|
|
--
|
2017-04-23 06:13:14 +03:00
|
|
|
--
|
2016-11-24 07:25:07 +03:00
|
|
|
:: ::::
|
|
|
|
:::: # vane :: interface
|
|
|
|
:: ::::
|
|
|
|
::
|
|
|
|
:: lex: all durable %jael state
|
|
|
|
::
|
|
|
|
=| lex/state
|
2016-12-16 09:34:01 +03:00
|
|
|
|= $: ::
|
2016-11-24 07:25:07 +03:00
|
|
|
:: now: current time
|
|
|
|
:: eny: unique entropy
|
|
|
|
:: ski: namespace resolver
|
|
|
|
::
|
|
|
|
now/@da
|
2016-12-16 09:34:01 +03:00
|
|
|
eny/@e
|
2016-11-24 07:25:07 +03:00
|
|
|
ski/sley
|
|
|
|
==
|
|
|
|
|%
|
|
|
|
:: :: ++call
|
|
|
|
++ call :: request
|
|
|
|
|= $: :: hen: cause of this event
|
|
|
|
:: hic: event data
|
|
|
|
::
|
|
|
|
hen/duct
|
2018-05-22 00:10:27 +03:00
|
|
|
hic/(hypo (hobo task:able))
|
2016-11-24 07:25:07 +03:00
|
|
|
==
|
2018-05-22 00:10:27 +03:00
|
|
|
=> .(q.hic ?.(?=($soft -.q.hic) q.hic ((hard task:able) p.q.hic)))
|
2016-11-24 07:25:07 +03:00
|
|
|
^- {p/(list move) q/_..^$}
|
2018-05-10 02:42:37 +03:00
|
|
|
=^ did lex abet:(~(call of [now eny] lex) hen q.hic)
|
2016-11-24 07:25:07 +03:00
|
|
|
[did ..^$]
|
|
|
|
:: :: ++load
|
|
|
|
++ load :: upgrade
|
|
|
|
|= $: :: old: previous state
|
|
|
|
::
|
|
|
|
old/state
|
|
|
|
==
|
|
|
|
^+ ..^$
|
|
|
|
..^$(lex old)
|
|
|
|
:: :: ++scry
|
|
|
|
++ scry :: inspect
|
|
|
|
|= $: :: fur: event security
|
|
|
|
:: ren: access mode
|
|
|
|
:: why: owner
|
|
|
|
:: syd: desk (branch)
|
|
|
|
:: lot: case (version)
|
|
|
|
:: tyl: rest of path
|
|
|
|
::
|
|
|
|
fur/(unit (set monk))
|
2016-12-16 09:34:01 +03:00
|
|
|
ren/@tas
|
|
|
|
why/shop
|
|
|
|
syd/desk
|
|
|
|
lot/coin
|
2016-11-24 07:25:07 +03:00
|
|
|
tyl/spur
|
|
|
|
==
|
|
|
|
^- (unit (unit cage))
|
2016-12-13 22:02:38 +03:00
|
|
|
:: XX security
|
|
|
|
?. =(lot [%$ %da now]) ~
|
|
|
|
%- some
|
|
|
|
?. =(%$ ren) ~
|
|
|
|
%+ bind (~(scry of [now eny] lex) syd tyl)
|
|
|
|
=- ~! - -
|
|
|
|
|=(a/gilt [-.a (slot `@`3 !>(a))])
|
2016-11-24 07:25:07 +03:00
|
|
|
:: :: ++stay
|
|
|
|
++ stay :: preserve
|
|
|
|
lex
|
|
|
|
:: :: ++take
|
|
|
|
++ take :: accept
|
|
|
|
|= $: :: tea: order
|
|
|
|
:: hen: cause
|
|
|
|
:: hin: result
|
|
|
|
::
|
2016-12-16 09:34:01 +03:00
|
|
|
tea/wire
|
|
|
|
hen/duct
|
2018-05-16 00:16:29 +03:00
|
|
|
hin/(hypo sign)
|
2016-11-24 07:25:07 +03:00
|
|
|
==
|
|
|
|
^- {p/(list move) q/_..^$}
|
2018-05-16 00:16:29 +03:00
|
|
|
=* req q.hin
|
2018-05-18 22:12:46 +03:00
|
|
|
?- req
|
|
|
|
[%a %woot *]
|
|
|
|
?~ q.req ~&(%coop-fine [~ ..^$])
|
|
|
|
?~ u.q.req ~&(%ares-fine [~ ..^$])
|
|
|
|
~& [%woot-bad p.u.u.q.req]
|
|
|
|
~_ q.u.u.q.req
|
|
|
|
[~ ..^$]
|
|
|
|
::
|
2018-05-16 00:16:29 +03:00
|
|
|
[%e %sigh *]
|
|
|
|
~& [%got-sigh p.p.req]
|
2018-05-16 21:48:20 +03:00
|
|
|
=^ moz eth.lex abet:(~(sigh et tea now eth.lex) p.req)
|
2018-05-16 00:16:29 +03:00
|
|
|
[moz ..^$]
|
2018-05-18 00:09:20 +03:00
|
|
|
::
|
|
|
|
[%b %wake ~]
|
|
|
|
=^ moz eth.lex abet:~(wake et tea now eth.lex)
|
|
|
|
[moz ..^$]
|
2018-05-18 00:49:20 +03:00
|
|
|
::
|
|
|
|
[%j %vent *]
|
|
|
|
~& %got-vent
|
|
|
|
=^ moz eth.lex abet:(~(hear-vent et tea now eth.lex) p.req)
|
|
|
|
[moz ..^$]
|
2018-05-16 00:16:29 +03:00
|
|
|
==
|
2016-11-24 07:25:07 +03:00
|
|
|
--
|