Community run threat protocol on Solana. Hunters flag malicious wallets, the DAO votes, confirmed threats earn PUSD instantly, no middlemen.
As Web3 adoption scales, a single exploit can permanently destroy user trust and business reputation. PalmShield moves security from a passive audit to an active defense layer via our API.
By integrating our DAO audited threat registry, you can screen wallets before transactions execute, block flagged addresses automatically, and respond to live threats in real time.
We stop fraud at the source, allowing you to scale safely while turning security into your strongest competitive advantage.
// Screen a wallet before a swap const response = await fetch('https://api.palmshield.xyz/v1/screen', { method: 'POST', headers: { 'Authorization': 'Bearer psp_live_••••••••', 'Content-Type': 'application/json', }, body: JSON.stringify({ wallet: '7xKP3mN3qR7dFoL9PmNq4vwQZBJXhsCERA8mVz', chain: 'solana', }), }); const { risk, severity, tags } = await response.json(); // → { risk: 0.94, severity: "critical", tags: ["drain-bot","confirmed"] } if (risk > 0.7) blockTransaction();