Results 11 comments of KJ

Are you saying call `storage.getIdsForKey` and then batch `multiGet` in smaller amounts?

Unfortunately `window.localStorage` does not have that same `multiGet` function which would break the cross platform compatibility of this library. Any other ideas?

Not currently but this would be a great addition to the library. Would love to see a PR.

Hmm I'm not sure why this would happen. Which version of React Native are you using? You ran `react-native link` and verified it was added to the project correctly?

This library only reads external keyboard events (like bluetooth connected keyboards). Are you using the on-screen phone keyboard?

I don't have one to try it but I would assume it would work. If anyone can confirm please post!

I may have found the issue. I just pushed a README change with code needed for my project to compile (https://github.com/kevinejohn/react-native-keyevent/commit/8fb355b291a603dce6bde2ead418a7cb8d206e92). I'm not sure why it would be crashing on...

I just added a REGTEST ticker for the network magic const https://github.com/kevinejohn/bsv-p2p/blob/b55e925bbe22bd17e8b4f4fb67869bccccc55826/src/config.ts#L7 I also just pushed a change that may fix the block event issue you're having. Try out v1.1.4+...

If there isn't a ticker match for version or user_agent then it defaults to this below. You can also set it yourself in the constructor. https://github.com/kevinejohn/bsv-p2p/blob/312dc97084193c2e1208ebb4fc25da6d8cd899c6/src/config.ts#L17 It is possible that...

All the magic const's use the "Sent over wire as" format which if you used the `ticker = 'REGTEST'` it should have worked: https://en.bitcoin.it/wiki/Protocol_documentation#Message_structure The 'block' event is only called...