How to return deposit fee 500A

hello.
I corrected metadata… It is shown in pooltool.io but it is not shown in yoroi yet…
I changed IP to public… (my big mistakes)

As for topologypdater.sh…
I still face “one request per hour please.”

can u paste the pool certificate created here?

did u used?:

IP based relays, 1 entry per IP address

--pool-relay-port 6000 \
--pool-relay-ipv4 <your first relay node public IP address> \

I still see the error for your relay…
Error checking nodes: queryA ENOTFOUND 172.31.39.210

  • u will need to register the public IP, not the private one

  • also u pledged 500 ADA but inside the wallet u have only 7 ADA.

hello. it seems block produces and metadata were solved. new ticker is found in Yoroi.
Pledge was increased by me. I will check IP… thanks

1 Like

Pledge (500A) was increased by me. At present Live stake is 502 A sent by me via payment.addr…
It will be no problem in coming epoch??

no, should be no problems…

Error checking nodes: queryA ENOTFOUND 15.165.119.78 even though I changed to Public relay IP.

yeah but I told you many times, inside the pool certificate you will need to use

--pool-relay-port 6000 \
--pool-relay-ipv4 <your first relay node public IP address> \

I believe u used:

--single-host-pool-relay <relaynode1.myadapoolnamerocks.com> \
--pool-relay-port 6000 \

and because of this the IP was added to the DNS filed (wrong) instead IP field as you can see bellow

15.165.119.78 is public IP address ← I used it recently.
172.31.39.210 that I used before is private IP…

can u paste here the pool certificate used?

what is this?
I mean the pool certificate when you set the pledge, pool info, etc…

cardano-cli stake-pool registration-certificate
–cold-verification-key-file $HOME/cold-keys/node.vkey
–vrf-verification-key-file vrf.vkey
–pool-pledge 500000000
–pool-cost 340000000
–pool-margin 0.01
–pool-reward-account-verification-key-file stake.vkey
–pool-owner-stake-verification-key-file stake.vkey
–mainnet
–single-host-pool-relay 15.165.119.78
–pool-relay-port 6000
–metadata-url https://url.kr/2bej1c
–metadata-hash $(cat poolMetaDataHash.txt)
–out-file pool.cert

this is wrong as I told you many times…

should be like this

--pool-relay-port 6000 \
--pool-relay-ipv4 15.165.119.78 \

thanks. my mistake.
But unfortunately, i face cardano-cli: Network.Socket.connect: <socket: 11>: does not exist (No such file or directory) again,

how is the glive?
the node crashed? can u check the uptime?

crashed. should I need to wait??

most are 0…

uptime 00:23:22

what is the server hardware configuration? the crashes are usually generated by not enough RAM
type free -m

16Gb RAM, 4 cores 150Gb Hard… AWS… t2.xlarge

total used free shared buff/cache available
Mem: 16000 292 149 0 15558 15404
Swap: 0 0 0

ok, try to configure the swap file

next command will alocate 5G for SWAP file (you can configure what value you want - just replace 5G with your needs)

sudo fallocate -l 5G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile

now to make it permanently type
sudo nano /etc/fstab

and add to the end, as a new line
/swapfile swap swap defaults 0 0
save the file (Ctrl + x then Y then ENTER)

check if the configuration was successfully

free -m