mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-06-22 14:41:49 +00:00
8 lines
302 B
TypeScript
8 lines
302 B
TypeScript
![]() |
import {FluenceClient} from "@fluencelabs/fluence";
|
||
|
import {passFunctionAsArg} from "../compiled/examples/callArrow";
|
||
|
import {doSmth} from "../compiled/examples/assignment";
|
||
|
|
||
|
export async function assignmentCall(client: FluenceClient): Promise<string> {
|
||
|
return await doSmth(client, {value: "abc"})
|
||
|
}
|