Clay Risser

Results 301 comments of Clay Risser

I created an example project and reproduced the issue exactly. I set it up exactly how the instructions say. You can find the example at the link below. https://github.com/codejamninja/react-example ![2019-11-19-220259_grim](https://user-images.githubusercontent.com/6234038/69208238-76e41080-0b18-11ea-9652-fb9c0aca67c9.png)...

Is this related to the fact that emacs keeps hanging on me with he message "_. . . so watching the Repo may slow emacs down. Do you want to...

I've already ported over a lot of it into the `nestjs-crud-prisma` package. https://github.com/silicon-hills/nestjs-crud-prisma https://www.npmjs.com/package/nestjs-crud-prisma If anyone has any feedback, that would be great.

Yeah I can definitely submit a PR. Give me a week to get things together for it.

Here's an implementation I wrote that works exactly like the JavaScript `ethers.utils.verifyMessage(message, signature)` and `ethers.utils.recoverAddress(digest, signature)` methods. _EthersUtils.java_ ```java import java.math.BigInteger; import java.nio.charset.StandardCharsets; import java.util.Arrays; import org.web3j.crypto.ECDSASignature; import org.web3j.crypto.Hash; import...

Yes, prisma generates the types, but they are different than loopback's types

I thinks some kind of type shim would need to be created to make it integrate better.

Photon might be the answer for easily shimming the prisma types with loopback 4. https://photonjs.prisma.io

Prisma 2 does not really allow business logic. It's more or less an ORM over a rest/graphql api.