Sign Transaction
Signing Transaction
Easiest way to sign a transaction
We recommend using our Weld library to sign transaction in your browser. You need to develop a frontend, you can refer to weld examples to see how easy it is to get started with it.
Using Chrome Developer console
Go to any website, I will use
https://ada-anvil.io
Open the Developer Console.
Type the following in the console:
const w = await window.cardano.eternl.enable();
await w.signTx("Your signed Transaction", true);
Eternl will open the signature window and if you have the expected wallet connected you will be able to sign the transaction.
The signature will be printed on the console, it looks like:
a100...
You can copy the signature to your local development environment to submit it using anvil API.
Last updated
Was this helpful?