zink
zink copied to clipboard
Passing complex types in function arguments
Describe the feature
WASM only has number types i32, i64, f32, f64, however, we need at least support passing bytes to functions, which will be passing ptr and offset of memory in the compiled WASM code
need a solution about how to translate the code when we meet bytes in the compiler
also requires an optimized type for U256
Solution
No response