Is there a minimum ADA or LOVELACE to be sent?

Hello! I currently have 1 ADA in a TxHash. I am trying to send it back to my actual wallet :sweat_smile:

1,000,000 LOVELACE (1 ADA)
Fee: 175,181
After fees: 824,819 LOVELACE

But then, I get…

Command failed: transaction submit  Error: Error while submitting tx: ShelleyTxValidationError ShelleyBasedEraAlonzo (ApplyTxError [UtxowFailure (WrappedShelleyEraFailure (UtxoFailure (OutputTooSmallUTxO [(Addr Mainnet (KeyHashObj (KeyHash "ce504498a6fg56745fa7004c2183a276d56379bafas72c74255b4b97d0474886")) StakeRefNull,Value 19 (fromList []),SNothing)])))])

Is the error related to the amount I’m trying to send?

I’m following this doc: Create Simple Transaction | Cardano Developer Portal

Thank you!

1 ADA, after fees (not before fees).

1 Like

Ah I see bummer. Thanks for the response! Is there any way to combine these two TxHashes into a new one?

                           TxHash                                 TxIx        Amount
--------------------------------------------------------------------------------------
5863ba2575a52ce38df41411aecd57d21111e64b09e317807e38bd33be5afe7d     0        4000000 lovelace + TxOutDatumHashNone
be4cff20cebf5e914496af09ff0387d10cc36253ffb95876fc4ff9eb5aaf65dd     0        1000000 lovelace + TxOutDatumHashNone

I tried sending more from my wallet and it created a new TxHash. I’m starting to understand how this whole thing works slowly. I’m also going through the courses and learning. Thank you for your time.

Yes, just include two --tx-in arguments. That will make the transaction consume both UTxOs and give it 5 ADA of input.

cardano-cli transaction build \
  --tx-in 5863ba2575a52ce38df41411aecd57d21111e64b09e317807e38bd33be5afe7d#0 \
  --tx-in be4cff20cebf5e914496af09ff0387d10cc36253ffb95876fc4ff9eb5aaf65dd#0 \
  etc.
1 Like

Whoa! Thank you so much. This solidified some concepts I was having difficulty with (UTXO / eUTXO).

1 Like