mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-06-25 14:11:36 +00:00
7 lines
269 B
TypeScript
7 lines
269 B
TypeScript
import {FluenceClient} from "@fluencelabs/fluence";
|
|
import {getTwoResults} from "../compiled/examples/foldJoin";
|
|
|
|
export async function foldJoinCall(client: FluenceClient): Promise<number[]> {
|
|
return await getTwoResults(client, client.relayPeerId!, {ttl: 10000})
|
|
}
|