2021-05-03 14:35:21 +03:00
|
|
|
:: azimuth-rpc: command parsing and utilities
|
|
|
|
::
|
2021-04-29 12:14:32 +03:00
|
|
|
/- rpc=json-rpc
|
|
|
|
/+ naive
|
|
|
|
::
|
2021-05-03 14:35:21 +03:00
|
|
|
=> :: Utilities
|
|
|
|
::
|
|
|
|
|%
|
|
|
|
++ extract
|
|
|
|
|%
|
|
|
|
++ keys
|
|
|
|
|= params=(map @t json)
|
|
|
|
^- (unit [encrypt=@ auth=@ crypto-suite=@ breach=?])
|
|
|
|
?~ data=(~(get by params) 'data') ~
|
|
|
|
%. u.data
|
2021-05-04 11:08:44 +03:00
|
|
|
=, dejs-soft:format
|
2021-05-03 14:35:21 +03:00
|
|
|
%- ot
|
|
|
|
:~ ['encrypt' so]
|
|
|
|
['auth' so]
|
|
|
|
['crypto-suite' so]
|
|
|
|
['breach' bo]
|
|
|
|
==
|
2021-04-29 12:14:32 +03:00
|
|
|
::
|
2021-05-06 09:22:08 +03:00
|
|
|
++ address-transfer
|
|
|
|
|= params=(map @t json)
|
|
|
|
^- (unit [@ux ?])
|
|
|
|
?~ data=(~(get by params) 'data') ~
|
|
|
|
=; ans=(unit [add=(unit @ux) r=?])
|
|
|
|
?~ ans ~
|
|
|
|
?~ add.u.ans ~
|
|
|
|
(some [u.add.u.ans r.u.ans])
|
|
|
|
%. u.data
|
|
|
|
=, dejs-soft:format
|
|
|
|
%- ot
|
|
|
|
~[['address' (cu to-hex so)] ['reset' bo]]
|
|
|
|
::
|
2021-05-03 14:35:21 +03:00
|
|
|
++ address-ship
|
|
|
|
|= params=(map @t json)
|
2021-05-06 14:20:13 +03:00
|
|
|
^- (unit [@ux @p])
|
2021-05-03 14:35:21 +03:00
|
|
|
?~ data=(~(get by params) 'data') ~
|
2021-05-06 14:20:13 +03:00
|
|
|
=; ans=(unit [add=(unit @ux) ship=@p])
|
2021-05-04 11:08:44 +03:00
|
|
|
?~ ans ~
|
|
|
|
?~ add.u.ans ~
|
|
|
|
(some [u.add.u.ans ship.u.ans])
|
2021-05-03 14:35:21 +03:00
|
|
|
%. u.data
|
2021-05-04 11:08:44 +03:00
|
|
|
=, dejs-soft:format
|
2021-05-03 14:35:21 +03:00
|
|
|
%- ot
|
|
|
|
:~ ['address' (cu to-hex so)]
|
|
|
|
['ship' (su ;~(pfix sig fed:ag))]
|
2021-04-29 12:14:32 +03:00
|
|
|
==
|
|
|
|
::
|
2021-05-03 14:35:21 +03:00
|
|
|
++ address
|
|
|
|
|= params=(map @t json)
|
|
|
|
^- (unit @ux)
|
|
|
|
?~ data=(~(get by params) 'data') ~
|
2021-05-04 11:08:44 +03:00
|
|
|
=; ans=(unit (unit @ux))
|
|
|
|
?~ ans ~
|
|
|
|
?~ u.ans ~
|
|
|
|
(some u.u.ans)
|
|
|
|
=, dejs-soft:format
|
2021-05-03 14:35:21 +03:00
|
|
|
%. u.data
|
|
|
|
(ot ['address' (cu to-hex so)]~)
|
2021-05-06 14:20:13 +03:00
|
|
|
::
|
|
|
|
++ ship
|
|
|
|
|= params=(map @t json)
|
|
|
|
^- (unit @p)
|
|
|
|
?~ data=(~(get by params) 'data') ~
|
|
|
|
=, dejs-soft:format
|
|
|
|
%. u.data
|
|
|
|
(ot ['ship' (su ;~(pfix sig fed:ag))]~)
|
|
|
|
::
|
2021-05-03 14:35:21 +03:00
|
|
|
++ sig
|
|
|
|
|= params=(map @t json)
|
|
|
|
^- (unit @)
|
2021-05-04 11:08:44 +03:00
|
|
|
=, dejs-soft:format
|
2021-05-03 14:35:21 +03:00
|
|
|
?~ sig=(~(get by params) 'sig') ~
|
2021-05-04 11:08:44 +03:00
|
|
|
(so:dejs-soft:format u.sig)
|
2021-05-03 14:35:21 +03:00
|
|
|
::
|
|
|
|
++ from
|
|
|
|
|= params=(map @t json)
|
2021-05-06 14:20:13 +03:00
|
|
|
^- (unit [@p proxy:naive])
|
2021-05-03 14:35:21 +03:00
|
|
|
?~ from=(~(get by params) 'from') ~
|
2021-05-04 11:08:44 +03:00
|
|
|
=, dejs-soft:format
|
2021-05-03 14:35:21 +03:00
|
|
|
%. u.from
|
|
|
|
%- ot
|
|
|
|
:~ ['ship' (su ;~(pfix sig fed:ag))]
|
2021-05-06 09:14:04 +03:00
|
|
|
['proxy' (cu proxy:naive so)]
|
2021-05-03 14:35:21 +03:00
|
|
|
==
|
|
|
|
--
|
2021-04-29 12:14:32 +03:00
|
|
|
::
|
2021-05-06 14:20:13 +03:00
|
|
|
++ pending-to-json
|
|
|
|
|= pending=(list tx:naive)
|
|
|
|
^- json
|
|
|
|
=, enjs:format
|
|
|
|
:- %a
|
|
|
|
%+ turn pending
|
|
|
|
|= =tx:naive
|
|
|
|
^- json
|
|
|
|
|^
|
|
|
|
=, enjs:format
|
|
|
|
%- pairs
|
|
|
|
:~ ['tx' (parse-tx +.tx)]
|
|
|
|
::
|
|
|
|
:- 'from'
|
|
|
|
%- pairs
|
|
|
|
~[['ship' (ship ship.from.tx)] ['proxy' s+proxy.from.tx]]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
++ parse-tx
|
|
|
|
|= tx=skim-tx:naive
|
|
|
|
^- json
|
|
|
|
%- pairs
|
|
|
|
:~ ['type' s+-.tx]
|
|
|
|
::
|
|
|
|
:- 'data'
|
|
|
|
%- pairs
|
|
|
|
?- -.tx
|
|
|
|
%transfer-point (en-transfer +.tx)
|
|
|
|
%spawn (en-spawn +.tx)
|
|
|
|
%configure-keys (en-keys +.tx)
|
|
|
|
%escape ~[(en-ship parent.tx)]
|
|
|
|
%cancel-escape ~[(en-ship parent.tx)]
|
|
|
|
%adopt ~[(en-ship ship.tx)]
|
|
|
|
%reject ~[(en-ship ship.tx)]
|
|
|
|
%detach ~[(en-ship ship.tx)]
|
|
|
|
%set-management-proxy ~[(en-address address.tx)]
|
|
|
|
%set-spawn-proxy ~[(en-address address.tx)]
|
|
|
|
%set-transfer-proxy ~[(en-address address.tx)]
|
|
|
|
== ==
|
|
|
|
::
|
|
|
|
++ en-ship |=(s=@p ship+(ship s))
|
|
|
|
++ en-address |=(a=@ux address+s+(crip "0x{((x-co:co 20) a)}"))
|
|
|
|
++ en-spawn |=([s=@p a=@ux] ~[(en-ship s) (en-address a)])
|
|
|
|
++ en-transfer |=([a=@ux r=?] ~[(en-address a) reset+b+r])
|
|
|
|
++ en-keys
|
|
|
|
|= [encrypt=@ auth=@ crypto-suite=@ breach=?]
|
|
|
|
^- (list [@t json])
|
|
|
|
:~ ['encrypt' (numb encrypt)]
|
|
|
|
['auth' (numb auth)]
|
|
|
|
['crypto-suite' (numb crypto-suite)]
|
|
|
|
['breach' b+breach]
|
|
|
|
==
|
|
|
|
--
|
|
|
|
::
|
2021-05-03 14:35:21 +03:00
|
|
|
++ point-to-json
|
|
|
|
|= =point:naive
|
2021-04-29 12:14:32 +03:00
|
|
|
^- json
|
2021-05-04 11:36:50 +03:00
|
|
|
=, enjs:format
|
2021-05-03 14:35:21 +03:00
|
|
|
|^
|
2021-05-04 11:36:50 +03:00
|
|
|
%- pairs
|
2021-05-03 14:35:21 +03:00
|
|
|
:~ ['dominion' s+dominion.point]
|
|
|
|
::
|
|
|
|
:- 'ownership'
|
2021-05-04 11:36:50 +03:00
|
|
|
%- pairs
|
2021-05-03 14:35:21 +03:00
|
|
|
=* own own.point
|
|
|
|
^- (list [@t json])
|
|
|
|
:~ ['owner' (own-to-json owner.own)]
|
|
|
|
['spawnProxy' (own-to-json spawn-proxy.own)]
|
|
|
|
['managementProxy' (own-to-json management-proxy.own)]
|
|
|
|
['votingProxy' (own-to-json voting-proxy.own)]
|
|
|
|
['transferProxy' (own-to-json transfer-proxy.own)]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
:- 'network'
|
2021-05-04 11:36:50 +03:00
|
|
|
%- pairs
|
2021-05-03 14:35:21 +03:00
|
|
|
=* net net.point
|
|
|
|
:* ['rift' (numb rift.net)]
|
|
|
|
::
|
|
|
|
:- 'keys'
|
2021-05-04 11:36:50 +03:00
|
|
|
%- pairs
|
2021-05-03 14:35:21 +03:00
|
|
|
:~ ['life' (numb life.keys.net)]
|
|
|
|
['suite' (numb suite.keys.net)]
|
|
|
|
['auth' (numb auth.keys.net)]
|
|
|
|
['crypt' (numb crypt.keys.net)]
|
|
|
|
==
|
|
|
|
::
|
|
|
|
['rift' (numb rift.net)]
|
|
|
|
:- 'sponsor'
|
2021-05-04 11:36:50 +03:00
|
|
|
%- pairs
|
2021-05-03 14:35:21 +03:00
|
|
|
~[['has' b+has.sponsor.net] ['who' (ship who.sponsor.net)]]
|
|
|
|
::
|
|
|
|
?~ escape.net ~
|
|
|
|
['escape' (ship u.escape.net)]~
|
|
|
|
== ==
|
|
|
|
::
|
|
|
|
++ own-to-json
|
|
|
|
|= [=address:naive =nonce:naive]
|
|
|
|
^- json
|
2021-05-04 11:36:50 +03:00
|
|
|
%- pairs
|
2021-05-03 14:35:21 +03:00
|
|
|
:~ ['address' s+(crip "0x{((x-co:co 20) address)}")]
|
|
|
|
['nonce' (numb:enjs:format nonce)]
|
|
|
|
==
|
|
|
|
--
|
|
|
|
::
|
2021-05-06 17:47:38 +03:00
|
|
|
++ txs-to-json
|
|
|
|
:: TODO: implement me!
|
|
|
|
::
|
|
|
|
|= txs=(list [tx:naive success=?])
|
|
|
|
^- json
|
|
|
|
~
|
|
|
|
::
|
2021-05-03 14:35:21 +03:00
|
|
|
++ to-hex
|
|
|
|
|= =cord
|
|
|
|
^- (unit @ux)
|
|
|
|
=/ parsed=(unit (pair @ud @ux)) (de:base16:mimes:html cord)
|
|
|
|
?~ parsed
|
|
|
|
::~|(%non-hex-cord !!)
|
|
|
|
~
|
|
|
|
(some q.u.parsed)
|
|
|
|
::
|
|
|
|
++ sponsor-call
|
|
|
|
|= [id=@t params=(map @t json)]
|
2021-05-04 11:08:44 +03:00
|
|
|
^- [(unit cage) response:rpc]
|
|
|
|
?. =((lent ~(tap by params)) 3)
|
|
|
|
[~ ~(params error id)]
|
2021-05-06 14:20:13 +03:00
|
|
|
=/ sig=(unit @) (sig:extract params)
|
|
|
|
=/ from=(unit [@p proxy:naive]) (from:extract params)
|
|
|
|
=/ data=(unit [@ux @p]) (address-ship:extract params)
|
2021-05-04 11:08:44 +03:00
|
|
|
?. &(?=(^ sig) ?=(^ from) ?=(^ data))
|
|
|
|
[~ ~(parse error id)]
|
2021-05-03 14:35:21 +03:00
|
|
|
:_ [%result id s+'ok']
|
|
|
|
%- some
|
|
|
|
noun+!>([u.sig u.from u.data])
|
|
|
|
::
|
|
|
|
++ proxy-call
|
|
|
|
|= [id=@t params=(map @t json)]
|
|
|
|
^- [(unit cage) response:rpc]
|
2021-05-04 11:08:44 +03:00
|
|
|
?. =((lent ~(tap by params)) 3)
|
|
|
|
[~ ~(params error id)]
|
2021-05-06 14:20:13 +03:00
|
|
|
=/ sig=(unit @) (sig:extract params)
|
|
|
|
=/ from=(unit [@p proxy:naive]) (from:extract params)
|
|
|
|
=/ data=(unit @ux) (address:extract params)
|
2021-05-04 11:08:44 +03:00
|
|
|
?. &(?=(^ sig) ?=(^ from) ?=(^ data))
|
|
|
|
[~ ~(parse error id)]
|
2021-05-03 14:35:21 +03:00
|
|
|
:_ [%result id s+'ok']
|
|
|
|
%- some
|
|
|
|
noun+!>([u.sig u.from u.data])
|
2021-05-04 11:08:44 +03:00
|
|
|
::
|
|
|
|
++ error
|
|
|
|
|_ id=@t
|
|
|
|
:: https://www.jsonrpc.org/specification#error_object
|
|
|
|
::
|
2021-05-06 14:20:13 +03:00
|
|
|
++ parse [%error id '-32700' 'Failed to parsed']
|
|
|
|
++ request [%error id '-32600' 'Invalid Request']
|
|
|
|
++ method [%error id '-32601' 'Method not found']
|
|
|
|
++ params [%error id '-32602' 'Invalid params']
|
|
|
|
++ internal [%error id '-32603' 'Internal error']
|
|
|
|
++ not-found [%error id '-32000' 'Resource not found']
|
2021-05-04 11:08:44 +03:00
|
|
|
--
|
2021-04-29 12:14:32 +03:00
|
|
|
--
|
2021-05-03 14:35:21 +03:00
|
|
|
|%
|
|
|
|
++ get-point
|
|
|
|
|= [id=@t params=(map @t json) scry=$-(ship (unit point:naive))]
|
|
|
|
^- response:rpc
|
2021-05-04 11:08:44 +03:00
|
|
|
?. =((lent ~(tap by params)) 1)
|
|
|
|
~(params error id)
|
|
|
|
?~ ship=(~(get by params) 'ship')
|
|
|
|
~(params error id)
|
2021-05-03 14:35:21 +03:00
|
|
|
?~ ship=(rush (so:dejs:format u.ship) ;~(pfix sig fed:ag))
|
2021-05-04 11:08:44 +03:00
|
|
|
~(params error id)
|
|
|
|
?~ point=(scry u.ship)
|
|
|
|
~(params error id)
|
2021-05-03 14:35:21 +03:00
|
|
|
[%result id (point-to-json u.point)]
|
|
|
|
::
|
|
|
|
++ transfer-point
|
|
|
|
|= [id=@t params=(map @t json)]
|
|
|
|
^- [(unit cage) response:rpc]
|
2021-05-04 11:08:44 +03:00
|
|
|
?. =((lent ~(tap by params)) 3)
|
|
|
|
[~ ~(params error id)]
|
|
|
|
=/ sig=(unit @) (sig:extract params)
|
|
|
|
=/ from=(unit [ship @t]) (from:extract params)
|
2021-05-06 09:22:08 +03:00
|
|
|
=/ data=(unit [@ux ?]) (address-transfer:extract params)
|
2021-05-04 11:08:44 +03:00
|
|
|
?: |(?=(~ sig) ?=(~ from) ?=(~ data))
|
|
|
|
[~ ~(parse error id)]
|
2021-05-03 14:35:21 +03:00
|
|
|
:_ [%result id s+'ok']
|
|
|
|
%- some
|
|
|
|
noun+!>([u.sig u.from u.data])
|
|
|
|
::
|
|
|
|
++ configure-keys
|
|
|
|
|= [id=@t params=(map @t json)]
|
|
|
|
^- [(unit cage) response:rpc]
|
2021-05-04 11:08:44 +03:00
|
|
|
?. =((lent ~(tap by params)) 3)
|
|
|
|
[~ ~(params error id)]
|
2021-05-03 14:35:21 +03:00
|
|
|
=/ sig=(unit @) (sig:extract params)
|
|
|
|
=/ from=(unit [ship @t]) (from:extract params)
|
|
|
|
=/ data=(unit [encrypt=@ auth=@ crypto-suite=@ breach=?])
|
|
|
|
(keys:extract params)
|
2021-05-04 11:08:44 +03:00
|
|
|
?. &(?=(^ sig) ?=(^ from) ?=(^ data))
|
|
|
|
[~ ~(parse error id)]
|
2021-05-03 14:35:21 +03:00
|
|
|
:_ [%result id s+'ok']
|
|
|
|
%- some
|
|
|
|
noun+!>([u.sig u.from u.data])
|
|
|
|
::
|
|
|
|
++ spawn sponsor-call
|
|
|
|
++ escape sponsor-call
|
|
|
|
++ cancel-escape sponsor-call
|
|
|
|
++ adopt sponsor-call
|
|
|
|
++ detach sponsor-call
|
|
|
|
++ reject sponsor-call
|
|
|
|
++ management-proxy proxy-call
|
|
|
|
++ spawn-proxy proxy-call
|
|
|
|
++ transfer-proxy proxy-call
|
2021-05-06 14:20:13 +03:00
|
|
|
:: - readNonce(from=[ship proxy]) -> @ :: automatically increment for pending wraps
|
|
|
|
::
|
|
|
|
++ read-nonce
|
|
|
|
|= [id=@t params=(map @t json) scry=$-([ship proxy:naive] (unit @))]
|
|
|
|
^- response:rpc
|
|
|
|
?. =((lent ~(tap by params)) 3)
|
|
|
|
~(params error id)
|
|
|
|
?~ from=(from:extract params)
|
|
|
|
~(parse error id)
|
|
|
|
?~ nonce=(scry u.from)
|
|
|
|
~(params error id)
|
|
|
|
[%result id (numb:enjs:format u.nonce)]
|
|
|
|
::
|
|
|
|
++ pending
|
2021-05-06 17:47:38 +03:00
|
|
|
:: FIXME: send raw-tx (i.e. tx with signature) instead?
|
|
|
|
::
|
|
|
|
|%
|
|
|
|
:: - readPendingRoll() -> (list tx)
|
|
|
|
::
|
|
|
|
++ all
|
|
|
|
|= [id=@t params=(map @t json) pending=(list tx:naive)]
|
|
|
|
^- response:rpc
|
|
|
|
?. =((lent ~(tap by params)) 0)
|
|
|
|
~(params error id)
|
|
|
|
[%result id (pending-to-json pending)]
|
|
|
|
::
|
|
|
|
:: - readPendingByShip(ship) -> (list tx)
|
|
|
|
::
|
|
|
|
++ ship
|
|
|
|
|= [id=@t params=(map @t json) scry=$-(@p (list tx:naive))]
|
|
|
|
^- response:rpc
|
|
|
|
?. =((lent ~(tap by params)) 1)
|
|
|
|
~(params error id)
|
|
|
|
?~ ship=(ship:extract params)
|
|
|
|
~(parse error id)
|
|
|
|
[%result id (pending-to-json (scry u.ship))]
|
|
|
|
::
|
|
|
|
:: - readPendingByAddress(address) -> (list tx)
|
|
|
|
::
|
|
|
|
++ addr
|
|
|
|
|= [id=@t params=(map @t json) scry=$-(@ux (list tx:naive))]
|
|
|
|
^- response:rpc
|
|
|
|
?. =((lent ~(tap by params)) 1)
|
|
|
|
~(params error id)
|
|
|
|
?~ address=(address:extract params)
|
|
|
|
~(parse error id)
|
|
|
|
[%result id (pending-to-json (scry u.address))]
|
|
|
|
--
|
2021-05-06 14:20:13 +03:00
|
|
|
::
|
2021-05-06 17:47:38 +03:00
|
|
|
++ history
|
|
|
|
|= $: id=@t
|
|
|
|
params=(map @t json)
|
|
|
|
:: FIXME: use proper type from aggregator/index
|
|
|
|
::
|
|
|
|
scry=$-([@p proxy:naive] (list [tx:naive success=?]))
|
|
|
|
==
|
2021-05-06 14:20:13 +03:00
|
|
|
^- response:rpc
|
|
|
|
?. =((lent ~(tap by params)) 1)
|
|
|
|
~(params error id)
|
2021-05-06 17:47:38 +03:00
|
|
|
?~ from=(from:extract params)
|
2021-05-06 14:20:13 +03:00
|
|
|
~(parse error id)
|
2021-05-06 17:47:38 +03:00
|
|
|
[%result id (txs-to-json (scry u.from))]
|
2021-05-03 14:35:21 +03:00
|
|
|
--
|