What address is the receiver of deposit in the stake address registration transaction

I am trying to build a stake address registration transaction.
In the docs there are two tx outs:

# Build
cardano-cli transaction build-raw \
    --tx-in "$INPUT" \
    --tx-out "${FROM}+${CHANGE}" \
    --tx-out "${TO}+${AMOUNT}" \
    --ttl $(expr $(CARDANO_NODE_SOCKET_PATH=/opt/cardano/fnf/sockets/node0.socket ./cardano-cli query tip --mainnet | jq ".slotNo" --raw-output) + 20000) \ --fee "$FEE" \
    --tx-body-file stake-cert-tx

I understand that the first out is the change, but what is the ${TO} address?

check this guide

1 Like

Thank you very much!

1 Like