Paul
Paul
**Currently** From built-in definitions in aqua: ``` service Srv("srv"): -- ... -- Retrieves the functional interface of a service running -- on the node specified in the service call --...
I think the api should better have the following interface (debatable): ``` alias ServiceId: string data ServiceInfo: id: ServiceId blueprint_id: string owner_id: string interface: Interface service Srv("srv"): -- ... --...
When compiling code into js\ts reserved words (e.g this, interface, class) should be renamed to avoid compilation errors in host language
Currently nested statements are indented by 1 space everywhere the air used. That makes reading and debugging the scripts difficult (I always indent everything to 4 spaces before starting to...
If would be nice to have logical expressions inside if statement. For example: ``` func ifElseNumCall(condition1: u32, condition2: u32): if condition1 == 1 and condition2 == 2: Println.print("it is 1...
`FluencePeer` should seamlessly handle low and no connectivity situations. Including 1. The peer should continue to operate if the networks connections is down (particles should not be lost) 2. When...
It would be nice to have the ability to connect to multiple relays because it could increase the applications reliability. Research topics: How to handle multiple connections at once? Is...