-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathterms.html
More file actions
102 lines (89 loc) · 4.91 KB
/
Copy pathterms.html
File metadata and controls
102 lines (89 loc) · 4.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Terms of Service — ShadowDrop</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #0a0900; color: #fff8e7; font-family: Georgia, serif; line-height: 1.7; }
nav { display: flex; justify-content: space-between; align-items: center; padding: 24px 48px; border-bottom: 1px solid rgba(255,215,0,0.1); }
.logo { font-size: 22px; font-weight: 700; color: #ffd700; text-decoration: none; }
.container { max-width: 800px; margin: 0 auto; padding: 60px 24px; }
h1 { font-size: 42px; color: #ffd700; margin-bottom: 8px; }
.date { color: #5a4a2a; font-size: 14px; margin-bottom: 48px; }
h2 { font-size: 22px; color: #c9a227; margin: 40px 0 12px; }
p { color: #8a7a4a; margin-bottom: 16px; font-size: 16px; }
ul { color: #8a7a4a; padding-left: 24px; margin-bottom: 16px; }
ul li { margin-bottom: 8px; }
a { color: #ffd700; }
.warning { background: rgba(255,215,0,0.05); border-left: 3px solid #c9a227; padding: 16px 20px; border-radius: 4px; margin: 16px 0; }
footer { text-align: center; padding: 32px; border-top: 1px solid rgba(255,215,0,0.1); color: #5a4a2a; font-size: 13px; }
</style>
</head>
<body>
<nav>
<a href="index.html" class="logo">💚 ShadowDrop</a>
</nav>
<div class="container">
<h1>Terms of Service</h1>
<p class="date">Last updated: June 5, 2026</p>
<h2>1. Acceptance of Terms</h2>
<p>By downloading, installing, or using ShadowDrop ("the App"), you agree to be bound by these Terms of Service. If you do not agree, do not use the App.</p>
<h2>2. Description of Service</h2>
<p>ShadowDrop is a decentralized application (dApp) that enables users to send SOL and USDC on the Solana blockchain via anonymous claim links and QR codes. The App operates on the Solana mainnet blockchain.</p>
<h2>3. Eligibility</h2>
<ul>
<li>You must be at least 18 years old to use this App</li>
<li>You must own a Seeker phone with a valid Solana wallet</li>
<li>You must comply with all applicable laws in your jurisdiction</li>
</ul>
<h2>4. User Responsibilities</h2>
<p>You are solely responsible for:</p>
<ul>
<li>The security of your wallet and private keys</li>
<li>Verifying recipient claim links before sharing</li>
<li>Ensuring you have sufficient SOL to cover transaction fees and rent</li>
<li>All transactions you initiate — blockchain transactions are irreversible</li>
<li>Complying with tax obligations in your jurisdiction</li>
</ul>
<div class="warning">
<strong style="color:#ffd700">⚠️ Important:</strong> Claim links contain the private key to the ephemeral wallet. Anyone with access to the link can claim the funds. Share links only with intended recipients.
</div>
<h2>5. Fees</h2>
<ul>
<li>Claims under $100 USD equivalent: no fee</li>
<li>Claims of $100 USD equivalent or more: 1% fee deducted at time of claim</li>
<li>USDC drops require ~0.004 SOL rent deposit, returned upon claim or cancellation</li>
<li>Standard Solana network fees apply to all transactions (~0.000065 SOL)</li>
</ul>
<h2>6. Prohibited Uses</h2>
<p>You may not use ShadowDrop for:</p>
<ul>
<li>Money laundering or financing of illegal activities</li>
<li>Fraud, scams, or deceptive practices</li>
<li>Sanctions evasion</li>
<li>Any activity that violates applicable laws or regulations</li>
</ul>
<h2>7. Disclaimers</h2>
<p>ShadowDrop is provided "as is" without warranties of any kind. We do not guarantee:</p>
<ul>
<li>Uninterrupted or error-free operation</li>
<li>Recovery of lost funds due to lost claim links</li>
<li>Protection against exploits or vulnerabilities in third-party smart contracts</li>
<li>Accuracy of USD price estimates shown in the App</li>
</ul>
<h2>8. Limitation of Liability</h2>
<p>To the maximum extent permitted by law, ShadowDrop and its developers shall not be liable for any indirect, incidental, special, or consequential damages, including loss of funds, arising from your use of the App.</p>
<h2>9. Blockchain Risks</h2>
<p>Cryptocurrency transactions carry inherent risks including but not limited to: price volatility, network congestion, smart contract bugs, and regulatory changes. By using ShadowDrop you acknowledge and accept these risks.</p>
<h2>10. Modifications</h2>
<p>We reserve the right to modify these Terms at any time. Continued use of the App after changes constitutes acceptance of the new Terms.</p>
<h2>11. Governing Law</h2>
<p>These Terms shall be governed by and construed in accordance with applicable international laws regarding decentralized applications and cryptocurrency.</p>
<h2>12. Contact</h2>
<p>For questions regarding these Terms: <a href="mailto:support@shadowdrop.app">support@shadowdrop.app</a></p>
</div>
<footer>© 2026 ShadowDrop. Built for Seeker on Solana.</footer>
</body>
</html>