You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optimized wasm size for v3.0.0 is already 661 KB which will soon reach max gas. We need to hand pick unnecessary stuffs out of existing code base to reduce the code size or find other strategy for it.
bloated mostly comes from enum deserialization code gen from serde
so we can actually deserialize msg as json::Value(Map<K,V>) and go from there to avoid serde derive for other type
there are macros that can be replaced with function, esp ensure_admin_authority
The text was updated successfully, but these errors were encountered:
Optimized wasm size for
v3.0.0
is already 661 KB which will soon reach max gas. We need to hand pick unnecessary stuffs out of existing code base to reduce the code size or find other strategy for it.json::Value(Map<K,V>)
and go from there to avoid serde derive for other typeensure_admin_authority
The text was updated successfully, but these errors were encountered: