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
| u128/i128 | string |`"340282366920938463463374607431768211455", "-2766523308300312711084346401884294402"`|🚫 Strongly discouraged because the JSON type in serde-json-wasm is wrong and will change. See [Dev Note #4: u128/i128 serialization][dev-note-4].|
18
18
| usize/isize | number |`123456`| 🚫 Don't use this type because it has a different size in unit tests (64 bit) and Wasm (32 bit). Also it tends to issue float instructions such that the contracts cannot be uploaded. |
19
19
| String | string |`"foo"`|
20
20
| &str | string |`"foo"`| 🚫 Unsuppored since message types must be owned (DeserializeOwned) |
@@ -41,5 +41,7 @@ Rust types as well as `cosmwasm_std` types and how they are encoded in JSON.
0 commit comments