Leon Prouger

Results 28 comments of Leon Prouger

@pubkey @nivida running `npm ls | grep bn.js` you can see that most of the dependencies are deduped (not duplicated). But there are some dependencies that define a strict version...

Different but related thing I would like to ponder about is how to make the `web3` library more slim by reducing `web3` packages I don't use. For example probably you...

@pubkey ok, for now the webpack is not working at all - https://github.com/ethereum/web3.js/issues/1969. After this issue will be fixed we can get a look how the tree shaking is working....

Thanks, now it's working :+1: The values are just for example, I understand they're impossibly low

@raulk Hello, any update :eyes:? I've got over the codebase and graphql docs, so I think I can handle this.

@ceresstation @raulk thanks guys. Started working, you can view my progress [here](https://github.com/leonprou/ethql/tree/erc165_erc721_cryptokitties). For now I've implemented the ERC165 plugin (though I've done this using a simple resolver). Also I added...

@gitcoinbot sure :) @elie222 Yes I understand the ERC's. My question was more about code structuring.

Yes, I'm in DevCon now so didn't have time to work on this issue. Will work on this at the weekend. That's my WIP [PR](https://github.com/ConsenSys/ethql/pull/116) Yeah I have an obstacle...

@raulk @ceresstation Hey, I'm finishing with the ERC721 plugin. Fun part: technically Cryptokitties isn't ERC721 token. It's missing some ERC721 methods and got a different signature for `supportsInterface function. So...

@elie222 yeah, this what I though about too. Anyway, I've done the implementation of ERC721. Actually, I don't think it's so convenient to use right now, because: - NFT's are...