-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy_en.html
More file actions
108 lines (101 loc) · 4.03 KB
/
privacy_en.html
File metadata and controls
108 lines (101 loc) · 4.03 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
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - Alter</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f8f9fa;
}
.container {
background: white;
padding: 40px;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
}
h2 {
color: #34495e;
margin-top: 30px;
}
.last-updated {
font-style: italic;
color: #666;
margin-bottom: 30px;
}
.language-switch {
text-align: right;
margin-bottom: 20px;
}
.language-switch span {
font-weight: 600;
}
a {
color: #1d4ed8;
font-weight: 500;
text-decoration: underline;
}
a:hover {
color: #1e3a8a;
}
ul {
margin-left: 20px;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p class="last-updated">Last updated: 4 October 2025</p>
<div class="language-switch">
<a href="privacy.html">FR</a> | <span>EN</span> | <a href="privacy_es.html">ES</a>
</div>
<h2>Data Controller</h2>
<p>
VISIALIS, SAS with share capital of €200,000, registered with the Paris Trade Register under number 478 885 122,<br>
59 rue de Ponthieu, 75008 Paris, France.
</p>
<h2>General Principles</h2>
<ul>
<li>Alter does not collect, store or transmit any personally identifiable data.</li>
<li>The application relies exclusively on public data available through EVM-compatible RPC endpoints.</li>
<li>No account, identifier or subscription is required. When a user connects a wallet and signs to prove ownership of an EVM address, the cryptographic proof is stored locally on the device and never sent to VISIALIS or any third party.</li>
</ul>
<p>For contractual obligations, please review the <a href="terms_en.html">Terms of Use</a>.</p>
<h2>Network Connections</h2>
<p>
Outbound traffic is limited to public RPC endpoints configured by default or added by the user. VISIALIS does not operate proprietary servers to intercept or enrich these requests. Should VISIALIS offer its own RPC endpoint in the future, this will be clearly indicated in the application and documentation.
</p>
<p>
The web version of Alter is delivered as a static application: all interactions remain within the user’s browser. No data related to the addresses viewed or wallet signatures is sent back to the hosting server.
</p>
<h2>Cookies and Local Storage</h2>
<p>
The web version may store technical preferences locally (such as the status of an information banner). These data stay on the user’s device and are never transmitted to VISIALIS.
</p>
<h2>Security</h2>
<p>
VISIALIS recommends using trusted RPC endpoints only. If there is any doubt about a third-party endpoint, users should remove it from the configuration.
</p>
<h2>User Rights</h2>
<p>
As no personal data is collected, there is no data enabling rights of access, rectification or erasure. For any question, please contact: <a href="mailto:contact@visialis.fr">contact@visialis.fr</a>.
</p>
<h2>Changes</h2>
<p>
This policy may be updated to reflect service or legal developments.
</p>
</div>
</body>
</html>