aboutsummaryrefslogtreecommitdiff
path: root/bin/ak-mempool
blob: b0d6d4b0b6424b3060a00a00a4323d02dca39103 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash
# Assumptions:
# I suppose each ak node is connected to some IP.
# They also run IPFS.
# They also are a part of our swarm.
# So should we ask for our peers?

ipfs swarm peers > tmp_peers


while IFS="" read -r p || [ -n "$p" ]
do
	peer="$(echo "$p" | sed -e 's/^.*\///')"
	echo "Peer $peer found! Examining..."
	ipfs cat /ipns/$peer/zlatest
done < tmp_peers

rm tmp_peers