Nick Poulden

Results 27 comments of Nick Poulden

@matthewliu agree that partner dapps should use notifications and reminders to get buyers to finalize. But if there's no financial incentive, why would they want to bother their users with...

Seems like we should switch to 10.x before October if that's the new LTS but if there's a dependency holding that up then 8.x is probably fine for now. My...

I added a few deployment related helper scripts here: https://github.com/OriginProtocol/identity-playground/tree/master/scripts The actual deployment is just a web3 call: https://github.com/OriginProtocol/identity-playground/blob/master/test/_helper.js#L116-L151 Once the deploy script is called, we can put the returned...

I'm not sure what heavy lifting truffle is actually doing... apart from deploying contracts and putting a wrapper around the contract api. The contract wrapper ties us to web3 0.2...

Watchable tests have been a feature request since [September 2016](https://github.com/trufflesuite/truffle/issues/269) - if it was easy I think someone would have added it by now. Truffle is still using web3 0.2.x...

I had to do these 3 things together (using webpack-dev-server running on port 8080): Add this to webpack config: devServer: { headers: { 'Access-Control-Allow-Origin': '*' } } use `cheap-module-source-map` (cheap-module-**eval**-source-map...

Importing components individually instead of via `@react-email/components` (including Tailwind) fixed the issue for me ```js import { Section } from '@react-email/section' import { Body } from '@react-email/body' import { Container...