Invoke a function

You can invoke a server side function using the invoke method.

const returnValue = await adamite().functions().invoke("someMethod", {
  parameter: "value"
});

Last updated