Reputation: 573
I have a WASM function that I want to use in my near-sdk
Rust project that targets WASM. How can I call this function inside my Rust code?
Upvotes: 3
Views: 375
Reputation: 8484
You haven't really told enough about your situation to give a detailed answer. (Where does that WASM function come from? What environment are you using, if not JS?) But I can tell you the general three approaches you have:
Upvotes: 3