Is there a method similar to ic_cdk's api ::call::call(canisterId,method,args) in motoko?

When I use rust, I can use ic_cdk::api::call::call(canister,method,args) to call other canisters. Is there a similar way in motoko?

1 Like

In Motoko you’d create an actor instance with a signature matching the method you want to call and then call its method, similar to this:

1 Like

Thanks for your reply.
The low-level call is what I want, but it doesn’t seem to be implemented at the moment

This needs a road map posts. :slight_smile: @diegop

1 Like