@fluencelabs/aqua-lib
API of protocol-level service (a.k.a builtins)
Releases
You can find the latest releases of aqua-lib on NPM and changelogs are on GitHub
API
The most up-to-date documentation of the API is in the code, please check it out on GitHub
Services
aqua-lib defines a number of services available on peers in the Fluence Network:
Op- short for "Operations". Functions for data transformation.Peer- functions affecting peer's internal stateKademlia- functions to manipulate libp2p KademliaSrv- short for "Service". Functions for service manipulationDist- short for "Distribution". Functions for module and blueprint distributionScript- functions to run and remove scheduled (recurring) scripts
How to use it
In Aqua
Add @fluencelabs/aqua-lib to your dependencies as described in Libraries doc, and then import it in your Aqua script:
import "@fluencelabs/aqua-lib"
-- gather Peer.identify from all nodes in the neighbourhood
func getPeersInfo() -> []Info:
infos: *Info
nodes <- Kademlia.neighborhood(%init_peer_id%, nil, nil)
for node in nodes:
on node:
infos <- Peer.identify()
<- infosIn TypeScript
aqua-lib is meant to be used to write Aqua scripts, and sinceaqua-lib doesn't export any top-level functions, it's not callable directly in the TypeScript.
Patterns
Functions With A Variable Number Of Arguments
Currently, Aqua doesn't allow to define functions with a variable number of arguments. And that limits aqua-lib API. But there's a way around that.
Let's take Op.concat_strings as an example. You can use it to concatenate several strings. aqua-lib provides the following signature:
concat_strings(a: string, b: string) -> stringSometimes that is enough, but sometimes you need to concatenate more than 2 strings at a time. Happily, under the hood concat_strings accepts any number of arguments, so you can redeclare it with the number of arguments that you want:
service MyOp("op"):
concat_strings(a: string, b: string, c: string, d: string) -> stringList of operations with a variable number of arguments
Here's a full list of other Op-s that you can apply this pattern to
Op.concat- can concatenate any number of arraysOp.array- wraps any number of arguments into an arrayOp.concat_string- concatenates any number of strings
Last updated
Was this helpful?