Lucas Kenji Uezu
Lucas Kenji Uezu
How should the `token_delete_by_name(self, token_name: str)` method be implemented? Currently, the only way to add a token is using `token_add(self, token_hash: UInt160)`.
I tried running the `fromBuffer` method using my NEF file generated with the 3.6.2 compiler and it worked. ```ts const myNef = sc.NEF.fromBuffer( readFileSync( "path\\to\\nef\\file" ) ) ``` Do you...
The problem was occurring because neon-js had a problem when deserializing a compiler that uses all 64 available characters And since the compiler you are using is probably some version...
> * is it only shown when using the default arguments? e.g. `to_bytes(123)` and not when `to_bytes(123, length=4)` It's currently being shown with and without default arguments. Do you think...
> It does not work for `to_bytes` using this contract > it also doesn't work for `to_int` with I hadn't added a validation for keyword arguments. Added in the new...