Updating Stake Pool Information

OK, so I’m ready to update my stake pool info. Change the pledge too. And I’m following the instructions on Coincashew

coincashew.com

Updating Stake Pool Information

Within there it states " Reminder : There is no requirement to pay the 500 ADA stake pool deposit again."

But the instructions seem identical to the instructions that I first went through in order to get things working.
Is this step below the step that determines that fee (the deposit fee)? If so, should I skip this part? And the following step because it seems to use the fee variable?


fee=$(cardano-cli transaction calculate-min-fee
–tx-body-file tx.tmp
–tx-in-count ${txcnt}
–tx-out-count 1
–mainnet
–witness-count 3
–byron-witness-count 0
–protocol-params-file params.json | awk ‘{ print $1 }’)
echo fee: $fee


txOut=$((${total_balance}-${fee}))
echo txOut: ${txOut}

Just follow the steps and everything should be fine

1 Like

You need to calculate the transaction fee each time you build a manual transaction like this. It’s just part of the process.

But the deposit fee is a one off.