-
I'm following the docs to create a transaction (https://github.com/kadena-community/kadena.js/tree/main/packages/libs/client#building-a-simple-transaction-from-the-contract). I can see such a transaction can be signed using Chainweaver or WalletConnect. Can I also use the output (an unsigned transaction) of Pact.builder and sign it manually with Ecko wallet (or Koala wallet)? It doesn't seem to work for me (the wallet probably needs the command in a different format).
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Adding a screen recording of what happens in ecko wallet when ecko.mov |
Beta Was this translation helpful? Give feedback.
-
Ecko expects a signing request, not an
If you prefer to do it in the way you've shown, take a look at the pactCommandToSigningRequest function. |
Beta Was this translation helpful? Give feedback.
Ecko expects a signing request, not an
ICommand
. You have to convert your command to a signing request before sending it to Ecko. An easier way to get this working is using the signWithEckoWallet function:If you prefer to do it in the way you…