A flutter/dart wrapper for Aries-vcx #669
-
I'm working to create a flutter/dart wrapper for My plan is to:
I would like to get an expert opinion on the above steps. Just to make sure that I am not going in the wrong direction. I am also trying to understand the difference between aries_vcx vs libvcx - which one should I use for the FFI bindings? Cheers. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 6 replies
-
Hi @dinbtechit great questions! :-) I'll start with context on
As for the question Perhaps @gmulhearn-anonyome might have some more thoughts on this. |
Beta Was this translation helpful? Give feedback.
-
Hi @dinbtechit If you want to build flutter wrapper, you can try it on top of the As I mentioned, alternative to building a new wrapper on top of |
Beta Was this translation helpful? Give feedback.
Hi @dinbtechit
libvcx
has now been split in 2 modulesapi_c
andapi_vcx
https://github.com/hyperledger/aries-vcx/tree/main/libvcx/src
If you want to build flutter wrapper, you can try it on top of the
api_vcx
layer. For inspiration you can take a look at new node wrapper we are building withnapi-rs
#665 (not yet merged but mostly done at this point)As I mentioned, alternative to building a new wrapper on top of
libvcx/api_vcx
would be building it directly on top ofaries_vcx
. You need to consider ifapi_vcx
brings you some benefits (freeing memory, accessing objects via numeric references).