Checks if a multiaddr is a relay address
bool isRelayAddress(MultiAddr addr) { try { addr.valueForProtocol('p2p-circuit'); return true; } catch (_) { return false; } }