Where to find ADA that should have been returned from decertification

I decertified my pool (“UDAR”). I went to look at my payment address that was part of the decertification process, but the 400 ADA that I was told would be returned was not in that payment address. Where would I find it? Is there a way to query the blockchain to find what address it went to?

You received back (500ADA) as reward so u must withdraw them in order to spend them

I can’t figure out what I am doing wrong with withdrawing the reward. Could you help? Here is the entire script:

export CARDANO_NODE_SOCKET_PATH=/opt/cardano/cnode/sockets/node0.socket

cardano-cli query stake-address-info \
--mainnet \
--address $(cat PeterBoivin.staking.addr)

[
    {
        "address": "stake1u8rpyeug7q3qf20exenfs7xl49stapuqmf5v8h3q3qqc8msh7wmku",
        "rewardAccountBalance": 500000000,
        "delegation": null
    }
]


cardano-cli query utxo \
    --address $(cat PeterBoivin.payment.addr) \
    --mainnet
    
                               TxHash                                 TxIx        Amount
--------------------------------------------------------------------------------------
4833721cfe0e6ca7fd30a1d37738360e38d8844d2b8ad3006da9c9598df156d0     0        19052783 lovelace + TxOutDatumNone

cardano-cli transaction build-raw \
--tx-in 4833721cfe0e6ca7fd30a1d37738360e38d8844d2b8ad3006da9c9598df156d0#0 \
--tx-out $(cat PeterBoivin.payment.addr)+0 \
--withdrawal $(cat PeterBoivin.staking.addr)+500000000 \
--ttl 0 \
--fee 0 \
--out-file withdraw_rewards.raw

cardano-cli transaction calculate-min-fee \
--mainnet \
--tx-body-file withdraw_rewards.raw  \
--tx-in-count 1 \
--tx-out-count 1 \
--witness-count 1 \
--byron-witness-count 0 \
--protocol-params-file protocol.json
172717 Lovelace
cardano@cardano-airgap:~/cnode/keys$ expr 19052783 - 172717
18880066

##Tried a different amounts
cardano-cli transaction calculate-min-fee \
--tx-body-file withdraw_rewards.raw \
--tx-in-count 1 \
--tx-out-count 1 \
--witness-count 2 \
--byron-witness-count 0 \
--mainnet \
--protocol-params-file protocol.json
179317
expr 19052783 - 179317
18873466

cardano@cardano-airgap:~/cnode/keys$ cardano-cli query tip --mainnet --cardano-mode
{
    "epoch": 311,
    "hash": "dca9928e5c65ea5b5f7b14b55980396c09023199f84f25967e42153c69400947",
    "slot": 49085913,
    "block": 6683197,
    "era": "Alonzo",
    "syncProgress": "100.00"
}


cardano-cli transaction build-raw \
--tx-in 4833721cfe0e6ca7fd30a1d37738360e38d8844d2b8ad3006da9c9598df156d0#0 \
--tx-out $(cat PeterBoivin.payment.addr)+18873466 \
--withdrawal $(cat PeterBoivin.staking.addr)+500000000 \
--ttl 49087913 \
--fee 179317 \
--out-file withdraw_rewards.raw  

cardano-cli transaction sign \
--tx-body-file withdraw_rewards.raw \
--signing-key-file PeterBoivin.payment.skey \
--signing-key-file PeterBoivin.staking.skey \
--mainnet \
--out-file withdraw_rewards.signed

cardano-cli transaction submit \
--mainnet \
--tx-file withdraw_rewards.signed

Command failed: transaction submit  Error: Error while submitting tx: ShelleyTxValidationError ShelleyBasedEraAlonzo (ApplyTxError [UtxowFailure (WrappedShelleyEraFailure (UtxoFailure (ValueNotConservedUTxO (Value 519052783 (fromList [])) (Value 19052783 (fromList [])))))])



Check the coincashew guide… u have there steps how to withdraw the rewards…

18.11 Claim your rewards

1 Like

Coincashew worked almost perfectly. There was a small error that threw me for a few minutes. But otherwise wonderful experience. Thank you.

1 Like