ixje
ixje
I just noticed that the sample ABI doesn't follow [NEP3](https://github.com/neo-project/proposals/blob/master/nep-3.mediawiki) sample ABI: ``` Events: Void transfer(ByteArray arg1, ByteArray arg2, Integer arg3); ``` NEP3 suggestion ``` { "hash": "0x746d6cc63dacd7b275bb3a3a06d54859661591a6", "entrypoint": "main",...
> the code breaks because none of the `metadata` is available in the new method You mean the transaction history page? The information in `addressTransactions` differs slightly in the sense...
> Specifically, I was looking for the name of the invocation which we use often to describe the transaction. For example, above you see the screen shot of "CompoundingNeo |...
@jseagrave21 So I've been looking at the address provided and I've identified some differences in the data returned between the `/v1` and `/v2` API endpoints. Some are known (e.g. `/v2`...
`address transactions` does not exist on the `v1` API. On the `v2` API it is really just an alias for `tx_addressfull` (which was poorly named imo). Therefore, it is not...
Is the connection negotiation really that slow? I always had the feeling it was the actual public key grabbing on the device. I will actually test it. fyi; I like...
I did some testing with the Python lib but should be reflective for JS * Acquiring USB conn - 00:079 seconds * Acquiring 1 public key - 01:238 seconds
The format of the NEF hasn't changed with that commit. It seems to only change the allowed size of the `script` field from `512*1024` (as defined by `MaxScriptLength`) to `ushort.max...
Can you please share the code snippet used that caused the error and also what you now use that works? The checksum in the file seems correct, so this is...
The `neonjs` code is loading a different file (`\Neo3ContractTest.nef`) than what the C# code is loading (`SampleHelloWorld`, [link](https://github.com/Tobeyw/TestN3/blob/b0ce2e9d23194e953143f128349fa48321e0bc99/main.cs#L115C32-L115C48)). You previously shared `SampleHelloWorld` and that file is correct. I can't say...