Loading...
Loading...
Execute transaction builds and submits. Manual invoke only—requires explicit confirmation before submit.
npx skill4agent add flux-point-studios/cardano-agent-skills cardano-cli-transactions-operatorOPERATOR SKILL: This skill executes commands including transaction submission. Requires explicit human invocation.
cardano-cli-transactions[ ] Network confirmed: ___________
[ ] Sender address verified
[ ] Recipient address verified (check first/last 8 chars)
[ ] Amount confirmed: ___________ lovelace
[ ] Signing key path confirmed
[ ] UTxO inputs selectedTX_DIR="tx-$(date +%Y%m%d-%H%M%S)"
mkdir -p "$TX_DIR" && cd "$TX_DIR"cardano-cli conway query utxo \
--address <sender-addr> \
--testnet-magic 1 \
--out-file utxos.jsoncardano-cli conway query protocol-parameters \
--testnet-magic 1 \
--out-file pparams.jsoncardano-cli conway transaction build \
--testnet-magic 1 \
--tx-in <utxo>#<index> \
--tx-out <recipient>+<amount> \
--change-address <sender> \
--out-file tx.unsignedecho "=== SIGNING TRANSACTION ==="
echo "Inputs: <utxo>"
echo "Output: <recipient> receives <amount> lovelace"
echo "Change: returns to <sender>"
cardano-cli conway transaction sign \
--tx-file tx.unsigned \
--signing-key-file <payment.skey> \
--testnet-magic 1 \
--out-file tx.signed⚠️ CONFIRM SUBMISSION ⚠️
Network: preprod
Sending: X ADA to addr_test1...
From: addr_test1...
Type 'yes' to submit:cardano-cli conway transaction submit \
--testnet-magic 1 \
--tx-file tx.signed# Get tx hash
cardano-cli conway transaction txid --tx-file tx.signed
# Query recipient UTxO
cardano-cli conway query utxo \
--address <recipient> \
--testnet-magic 1cardano-cli-transactionsshared/PRINCIPLES.md