Aqua CLI (DEPRECATED)
NOTE: Use Fluence CLI for Aqua compilation and network management
Aqua CLI allows you to manage all aspects of Aqua development and includes:
- Compiler
- Client Peer
- Utilities
To install the Aqua CLI package:
sh
npm install -g @fluencelabs/aqua
sh
npm install -g @fluencelabs/aqua
Compiler
The compiler turns high-level Aqua code into either JS/TS handlers wrapping AIR, the default, or pure AIR.
The quickest way to compile Aqua code is to take all .aqua
files from the specified input directory, e.g., src/aqua
, and place the generated JavaScript code in some output directory of your choosing, e.g. src/generated
. Please note that if the specified output directory does not exist, the CLI creates it for you:
sh
aqua --input src/aqua --output src/generated
sh
aqua --input src/aqua --output src/generated
Of course, we can be more specific and name a filename:
sh
aqua --input src/aqua/some_file.aqua --output src/generated
sh
aqua --input src/aqua/some_file.aqua --output src/generated
As mentioned in the intro, the Aqua compiler generates .js
with .d.ts
TypeScript files by default. Output files will contain functions exported from .aqua
files and methods for registering defined services. You can read more about calling functions and service registration in the Fluence JS Client documentation.
Additional compiler options are:
--js
flag, which generates only.js
files--air
or-a
flag, which generates pure AIR code--scheduled
, which generates AIR code suitable for script storage
Use aqua --help
for a complete listing of available flags, subcommands and explanations.
Subcommands
The CLI provides additional features and utilities via subcommands.
Run
The aqua run
command creates a one-shot client peer over the compiled Aqua code specified allowing you to quickly and effectively test Aqua code against deployed services on the network.
sh
aqua run --addr <relay multiaddress> --input <your aqua filepath> --func '<function name>(<args>)'
sh
aqua run --addr <relay multiaddress> --input <your aqua filepath> --func '<function name>(<args>)'
For the following Aqua script:
aqua
-- some-dir/hello.aquaservice Hello("service_id"):hello(name:string) -> stringfunc hello(name: string, node:string, sid: string) -> string:on node:Hello sidres <- Hello.hello(name)<- res
aqua
-- some-dir/hello.aquaservice Hello("service_id"):hello(name:string) -> stringfunc hello(name: string, node:string, sid: string) -> string:on node:Hello sidres <- Hello.hello(name)<- res
We instantiate our aqua client peer:
sh
aqua run --addr /dns4/.../wss/p2p/12D3 ...aoHI --input some-dir/hello.aqua --func 'hello("reader", "peer id", ["service id1", "service id2"])'
sh
aqua run --addr /dns4/.../wss/p2p/12D3 ...aoHI --input some-dir/hello.aqua --func 'hello("reader", "peer id", ["service id1", "service id2"])'
The aqua run
command provides additional features such as:
--sk
or-s
allows you to provide your secret key (sk) in base64--addr
or-a
allows you to specify a relay in multiaddr format, e.g.,/dns4/kras-04.fluence.dev/tcp/19001/wss/p2p/12D3KooWFEwNWcHqi9rtsmDhsYcDbRUCDXH84RC4FW6UfsFWaoHi
. Theaqua config default_peers <krasnodar, testnet, stage>
command enumerates you the respective network multiaddresses of available Fluence nodes.
--import
or -m
allows you to import functionality from one or more source folders by using the flag repeatedly
--data
or-d
allows you to specify data arguments as a json map:shaqua run --addr /dns4/.../wss/p2p/12D3 ... oHI --input my_code.aqua --func 'my_aqua_func(a, b)' --data '{"a": "some_string", "b": 123}'shaqua run --addr /dns4/.../wss/p2p/12D3 ... oHI --input my_code.aqua --func 'my_aqua_func(a, b)' --data '{"a": "some_string", "b": 123}'--data-path
orp
allows you to specify data arguments, see--data
, as a file. Note that--data
and--data-path
are mutually exclusive.--json-service
or-j
allows you to describe a service that will return a JSON. This service must be described in Aqua. There can be multiple functions strictly without any arguments. Also, you can use this flag multiple times targeting multiple services in different files. There is an example of a service description in Aqua and JSON:
aqua
-- aqua filedata SomeResult:field1: stringnum2: i32service ServiceName("some id"):funcName: -> SomeResult
aqua
-- aqua filedata SomeResult:field1: stringnum2: i32service ServiceName("some id"):funcName: -> SomeResult
json
{"name": "ServiceName","serviceId": "some id","functions": [{"name": "funcName","result": {"field1": "result 1","num2": 5}}]}
json
{"name": "ServiceName","serviceId": "some id","functions": [{"name": "funcName","result": {"field1": "result 1","num2": 5}}]}
Use aqua run --help
for a complete listing of available flags and explanations.
Create key pair
The aqua key create
utility allows you to create an ed25519-based key pair in base64:
sh
aqua key create
sh
aqua key create
And produces the following json document:
json
{"peerId": "12D3KooWMC6picJQNruwFMFWqP62FWLtbM94TGYEzCsthsKa46CQ","secretKey": "QG3Ot2i1kD4Mpw0RpsKtUjbA/0XjZ0WP7dajDBwLQi0=","publicKey": "CAESIKkB+6eYhFDsEZhn0u+xwIKVhE+1xvgJoV5/csc+CS6R"}
json
{"peerId": "12D3KooWMC6picJQNruwFMFWqP62FWLtbM94TGYEzCsthsKa46CQ","secretKey": "QG3Ot2i1kD4Mpw0RpsKtUjbA/0XjZ0WP7dajDBwLQi0=","publicKey": "CAESIKkB+6eYhFDsEZhn0u+xwIKVhE+1xvgJoV5/csc+CS6R"}
Module Distribution
A critical step is to get our WASm modules and service configuration files to our target hosts. The Aqua cli provides the capability to upload and configure our assets into hosted services under the aqua remote
namespace:
sh
aqua remote --helpUsage:...aqua remote deploy_serviceaqua remote remove_service...Subcommands:...deploy_serviceDeploy service from WASM modulesremove_serviceRemove service...
sh
aqua remote --helpUsage:...aqua remote deploy_serviceaqua remote remove_service...Subcommands:...deploy_serviceDeploy service from WASM modulesremove_serviceRemove service...
See the service management section for details and examples.
Environments Listing
The aqua config default_peers
utility shows a list of peers in multiaddr format for a specific Fluence network. Currently, there are three environments: krasnodar
, the default network,stage
and testnet
.
sh
aqua config default_peers testnet
sh
aqua config default_peers testnet
shows a list of testnet
peers:
/dns4/net01.fluence.dev/tcp/19001/wss/p2p/12D3KooWEXNUbCXooUwHrHBbrmjsrpHXoEphPwbjQXEGyzbqKnE9/dns4/net01.fluence.dev/tcp/19990/wss/p2p/12D3KooWMhVpgfQxBLkQkJed8VFNvgN4iE6MD7xCybb1ZYWW2Gtz/dns4/net02.fluence.dev/tcp/19001/wss/p2p/12D3KooWHk9BjDQBUqnavciRPhAYFvqKBe4ZiPPvde7vDaqgn5er/dns4/net03.fluence.dev/tcp/19001/wss/p2p/12D3KooWBUJifCTgaxAUrcM9JysqCcS4CS8tiYH5hExbdWCAoNwb/dns4/net04.fluence.dev/tcp/19001/wss/p2p/12D3KooWJbJFaZ3k5sNd8DjQgg3aERoKtBAnirEvPV8yp76kEXHB/dns4/net05.fluence.dev/tcp/19001/wss/p2p/12D3KooWCKCeqLPSgMnDjyFsJuWqREDtKNHx1JEBiwaMXhCLNTRb/dns4/net06.fluence.dev/tcp/19001/wss/p2p/12D3KooWKnRcsTpYx9axkJ6d69LPfpPXrkVLe96skuPTAo76LLVH/dns4/net07.fluence.dev/tcp/19001/wss/p2p/12D3KooWBSdm6TkqnEFrgBuSkpVE3dR1kr6952DsWQRNwJZjFZBv/dns4/net08.fluence.dev/tcp/19001/wss/p2p/12D3KooWGzNvhSDsgFoHwpWHAyPf1kcTYCGeRBPfznL8J6qdyu2H/dns4/net09.fluence.dev/tcp/19001/wss/p2p/12D3KooWF7gjXhQ4LaKj6j7ntxsPpGk34psdQicN2KNfBi9bFKXg/dns4/net10.fluence.dev/tcp/19001/wss/p2p/12D3KooWB9P1xmV3c7ZPpBemovbwCiRRTKd3Kq2jsVPQN4ZukDf
/dns4/net01.fluence.dev/tcp/19001/wss/p2p/12D3KooWEXNUbCXooUwHrHBbrmjsrpHXoEphPwbjQXEGyzbqKnE9/dns4/net01.fluence.dev/tcp/19990/wss/p2p/12D3KooWMhVpgfQxBLkQkJed8VFNvgN4iE6MD7xCybb1ZYWW2Gtz/dns4/net02.fluence.dev/tcp/19001/wss/p2p/12D3KooWHk9BjDQBUqnavciRPhAYFvqKBe4ZiPPvde7vDaqgn5er/dns4/net03.fluence.dev/tcp/19001/wss/p2p/12D3KooWBUJifCTgaxAUrcM9JysqCcS4CS8tiYH5hExbdWCAoNwb/dns4/net04.fluence.dev/tcp/19001/wss/p2p/12D3KooWJbJFaZ3k5sNd8DjQgg3aERoKtBAnirEvPV8yp76kEXHB/dns4/net05.fluence.dev/tcp/19001/wss/p2p/12D3KooWCKCeqLPSgMnDjyFsJuWqREDtKNHx1JEBiwaMXhCLNTRb/dns4/net06.fluence.dev/tcp/19001/wss/p2p/12D3KooWKnRcsTpYx9axkJ6d69LPfpPXrkVLe96skuPTAo76LLVH/dns4/net07.fluence.dev/tcp/19001/wss/p2p/12D3KooWBSdm6TkqnEFrgBuSkpVE3dR1kr6952DsWQRNwJZjFZBv/dns4/net08.fluence.dev/tcp/19001/wss/p2p/12D3KooWGzNvhSDsgFoHwpWHAyPf1kcTYCGeRBPfznL8J6qdyu2H/dns4/net09.fluence.dev/tcp/19001/wss/p2p/12D3KooWF7gjXhQ4LaKj6j7ntxsPpGk34psdQicN2KNfBi9bFKXg/dns4/net10.fluence.dev/tcp/19001/wss/p2p/12D3KooWB9P1xmV3c7ZPpBemovbwCiRRTKd3Kq2jsVPQN4ZukDf