Spencer Corwin

Results 41 comments of Spencer Corwin

Would this be for smart contracts? It would probably make more sense to have a `RANDOM_ADDRESS` API since every NEO•ONE user could potentially be using this API.

Make sure that we are serializing and deserializing the manifest correctly as well

See `neo-one/cli/src/cmd/console.ts`. We have a REPL console but need more documentation.

See #2095 for potentially helpful info

Note from call with DiCarlo on 07/28/20: optimizing the compiler does NOT necessarily mean using the existing (or new) VM instructions to perform the same logic with less instructions. It...

More ideas from me while working on Neo3 compiler upgrade: - Keep track of scope with other stack? Like the try stack? - Stack abstraction in an array of stack...

https://www.lihaoyi.com/post/HowanOptimizingCompilerWorks.html

Look at how we use interfaces as generics in `SmartContract.for()` in the compiler to do something similar with notifications. If the user knows what a notification's structure will be when...

For the `AssetDescriptor` this is actually a bit trickier than implementing the AssetDescriptor class like they do. This is because we split up node logic and client logic into separate...

See #2412 for how and why the CreateMapIterator helper was created. Then see the problem that this created in the description of #2413. #2413 began the process of removing this...