gnolang / gnonative

Develop for Gno using your app's native language
Apache License 2.0
9 stars 9 forks source link

feat: Secure React Native gRPC connections #113

Closed D4ryl00 closed 4 months ago

D4ryl00 commented 5 months ago

To secure the React Native gRPC connection, we implement a transport that uses native calls to make the gRPC calls instead of a TCP connection. Only the server streaming is implemented in this PR (we don't need the client streaming).

Flow: React-Native gRPC client <-> native (Android/iOS) <-> golang gRPC client (UDS) <-> golang gRPC server

fixes https://github.com/gnolang/gnonative/issues/20

jefft0 commented 4 months ago

Does this PR resolve issue #20?