We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cca9d7f commit b1ddb79Copy full SHA for b1ddb79
packages/go-gen/src/schema.rs
@@ -286,8 +286,12 @@ pub fn custom_type_of(ty: &str) -> Option<&str> {
286
match ty {
287
"Uint64" => Some("Uint64"),
288
"Uint128" => Some("string"),
289
+ "Uint256" => Some("string"),
290
+ "Uint512" => Some("string"),
291
"Int64" => Some("Int64"),
292
"Int128" => Some("string"),
293
+ "Int256" => Some("string"),
294
+ "Int512" => Some("string"),
295
"Binary" => Some("[]byte"),
296
"HexBinary" => Some("string"),
297
"ReplyOn" => Some("replyOn"),
0 commit comments