Varga-Somogyi Ákos

Results 7 comments of Varga-Somogyi Ákos

You can make it work even when splitting nodes, here is a basic example that works for me: ``` saveSelection = () => { this.editor.savedSelection = this.editor.selection; }; render ()...

@bumblefudge If I understand the spec correctly, the `SolanaTransactionVersion` and `SolanaTransactionCommitment` fields are locked to a specific value for the whole dApp wallet session. I don't think that declaring a...

@bumblefudge If the idea is to be fully compatible with the Wallet Standard, I think `SolanaTransactionVersion` (or some alternative name) should be a list of available versions, just like in...

@bumblefudge The commitment definitely matters, but I would not limit it in any way. Wallets should support everything the blockchain itself supports. After all, it's just an enum/string that gets...

I might be late to the discussion but IMO wallets will not and should not convert the dApp's message to an OCMSF message (at least for foreseeable future), because as...

For me it still makes sense to keep the wallet side as-is (sign the whole payload and return the signature), basically this: > A given app makes changes to supports...

Wallets don't have the luxury to do breaking changes in external facing APIs. They have to be backwards compatible, otherwise apps will break and none of us wants that. >...