Niraj Kamdar

Results 34 comments of Niraj Kamdar

How about, ```ts return { "const": "foo", } ``` Does this compile with asc?

@krisbitney Can we get this merge and open issue for the fix for reserved words as a method name?

I didn't like the appending reserved words with `m_` but I really like the `_` append approach. But I have a question: Should users be allowed to create a `_`...

Alternatively we can even use serde but more research is required

Sorry for not explaining clearly. I only meant this for core and internal libs. User-facing lib like client-config can still support Union type if they want.

@Stranger6667 It can compile to wasm if you disable the default-feature and only enable `structopt` in the `Cargo.toml` ``` jsonschema = { version = "=0.15.0", default-features = false, features =...

I have found 2 vaults with the same hash. ```python from itertools import product # Creating the first release makes `latestRelease()` work v1_vault = create_vault(version="1.0.0") for i, j, k in...

Since we want to test for the case when hash collision happens, I have written above script to generate 2 vaults with the same hash. In Vault contract we are...