ryanc414

Results 10 comments of ryanc414

FYI, in case it helps, I figured out a good way to put together a python package with all the JS, HTML, CSS etc. files related to a web app...

I don't think you should need to manually remove any `node_modules` if you specify the path to the build outputs in MANIFEST.in, node_modules are in a separate directory.

Got this same issue from using the Openzeppelin ERC721 library contract. It seems odd that slither is reporting errors in my dependencies - is this intentional? Is there any way...

> > Got this same issue from using the Openzeppelin ERC721 library contract. It seems odd that slither is reporting errors in my dependencies - is this intentional? Is there...

+1 to this issue - I need to convert a firestore event into the expected JSON format for a dataflow pipeline, it would be great if there was a library...

I hit this issue recently as well. It's not at all intuitive when the SubscribeFilterLogs takes the same ethereum.FilterQuery type as the FilterLogs call, in spite of the FromBlock being...

Another thing I would be curious to understand is what is the behaviour of the SubscribeFilterLogs method during chain reorgs? Will we get the logs from the new canonical chain...

> See the Removed field from https://pkg.go.dev/github.com/ethereum/go-ethereum/core/types#Log @ryanc414. OK great thanks. So if I only want events that are in the main canonical chain I should drop events with Removed...

> Not really! Depending on your application, you may need to apply some logic to process removed logs. > > For example, if you were tracking balances of a token...

Ah great I didn't know you could do that, thanks.