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

  1. Go to any website, I will use https://ada-anvil.io

  2. Open the Developer Console.

  3. Type the following in the console:

const w = await window.cardano.eternl.enable();
await w.signTx("Your signed Transaction", true);
  1. Eternl will open the signature window and if you have the expected wallet connected you will be able to sign the transaction.

  2. The signature will be printed on the console, it looks like: a100...

  3. You can copy the signature to your local development environment to submit it using anvil API.

Last updated

Was this helpful?