Tiago Carvalho

Results 11 comments of Tiago Carvalho

I've entertained this idea since the first days of Solnet. We have two possible ways to go about it: - Use some C# front-end for LLVM and compile as BPF....

Well, as of now I'm too busted with work, so I'll have to leave this for the community. I will gladly oversee and review if anyone is up to the...

Not a bug, `Message` doesn't hold signatures, this design is a mirror of web3.js. You only get signatures if you do `TransactionBuilder.Build(....) or Transaction.Build(..)` followed by `Transaction.Deserialize(..) or Transaction.Populate(...)`

Is that payload the entire payload? I tried decoding it and it decodes perfectly as a Message, and all bytes are consumed. The message part is only the contents of...

Ahhh, thats looking better. So, it goes back to my previous comment. The "tx" object in that json is the `Message` contents, and you deserialize with `Message.Deserialize()`. The `txSigned` contains...

This goes back to the problem of the keys orders! I'm going to implement [this fix](https://github.com/bmresearch/Solnet/discussions/396) and ME aren't even following it. If they use that in the future, you...

The problem here is that the library wasn't made with multiple subscriptions of the same object in mind. Ideally, you want to create an abstraction layer that manages account subscriptions...

There's an easy workaround. But the gist of it is that when binding actions (methods) to the UI, if the method doesn't return quickly, the UI dispatcher locks up. However,...

There is already a `ExecuteAsync`. The problem is that everything above it has no *Async version. Wouldn't that be enough? 1- `FlushAsync` that calls `ExecuteAsync` and awaits 2- `AddAsync` that...

More context: https://github.com/solana-labs/wallet-adapter/issues/82