Nick Johnson
Nick Johnson
It'd be nice if it were possible to mine addresses for CREATE2. CREATE2 computes addresses based on `keccak256(0xff + creator_address + salt + keccak256(initcode))`, which means it doesn't require any...
Does Open Zeppelin have any interest in integrating a library for string manipulation? I created the most widely used one [here](https://github.com/Arachnid/solidity-stringutils) nearly three years ago, but lack the time to...
It would be nice if Fe-Fi put a notification in the status bar when it is listening for images from the Eye-Fi card. This would serve two main purposes: 1)...
(Now confirmed to pass all unit tests!) This PR replaces the use of `for..of` with `punycode.ucs2.decode` an `punycode.ucs2.encode`, removing the dependency on ES6, and therefore making it more browser-friendly.
We're using this dependency (transitively) in an ES6 app, and the use of a `for..of` loop [here](https://github.com/jcranmer/idna-uts46/blob/master/uts46.js#L16) causes problems for transpilation and browsers. Since this seems to be the only...
- [x] I have searched the [issues](https://github.com/brocaar/chirpstack-gateway-os/issues) of this repository and believe that this is not a duplicate. ## Summary I see recent commits mentioning support for running on RAK7268v2....
**Describe the bug** When running the op devnet, the latest block proposal on L1 falls farther and farther behind the L2 head. **To Reproduce** Steps to reproduce the behavior: 1....
Suppose our schema looks like this: ``` type Account @entity { id: ID! } type Thing @entity { id: ID! account: Account! } ``` and we write a query: ```...
Presently, it's possible to query entities using a `where` clause, but this uses offsets from start or end, which likely won't scale well if paging over a large dataset. It'd...