@taker007/crypto-guardian-snap 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/assets/Crypto Guardian.svg +30 -0
- package/assets/icon.svg +23 -51
- package/package.json +1 -1
- package/snap.manifest.json +2 -2
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<svg width="256" height="256" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
|
|
3
|
+
<!-- Background -->
|
|
4
|
+
<rect width="256" height="256" fill="#0B1220"></rect>
|
|
5
|
+
|
|
6
|
+
<!-- Shield outline -->
|
|
7
|
+
<path d="M128 20
|
|
8
|
+
L200 60
|
|
9
|
+
L200 130
|
|
10
|
+
C200 180 165 215 128 236
|
|
11
|
+
C91 215 56 180 56 130
|
|
12
|
+
L56 60
|
|
13
|
+
Z" fill="none" stroke="#3B82F6" stroke-width="8"></path>
|
|
14
|
+
|
|
15
|
+
<!-- Network nodes -->
|
|
16
|
+
<circle cx="128" cy="95" r="8" fill="#3B82F6"></circle>
|
|
17
|
+
<circle cx="90" cy="135" r="6" fill="#3B82F6"></circle>
|
|
18
|
+
<circle cx="166" cy="135" r="6" fill="#3B82F6"></circle>
|
|
19
|
+
<circle cx="128" cy="165" r="6" fill="#3B82F6"></circle>
|
|
20
|
+
|
|
21
|
+
<!-- Network lines -->
|
|
22
|
+
<line x1="128" y1="95" x2="90" y2="135" stroke="#3B82F6" stroke-width="4"></line>
|
|
23
|
+
<line x1="128" y1="95" x2="166" y2="135" stroke="#3B82F6" stroke-width="4"></line>
|
|
24
|
+
<line x1="90" y1="135" x2="128" y2="165" stroke="#3B82F6" stroke-width="4"></line>
|
|
25
|
+
<line x1="166" y1="135" x2="128" y2="165" stroke="#3B82F6" stroke-width="4"></line>
|
|
26
|
+
|
|
27
|
+
<!-- Checkmark -->
|
|
28
|
+
<path d="M105 135 L120 150 L150 115" fill="none" stroke="#22C55E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
29
|
+
|
|
30
|
+
</svg>
|
package/assets/icon.svg
CHANGED
|
@@ -1,58 +1,30 @@
|
|
|
1
|
-
<svg
|
|
2
|
-
<defs>
|
|
3
|
-
<linearGradient id="shieldFace" x1="0" y1="0" x2="1" y2="1">
|
|
4
|
-
<stop offset="0%" stop-color="#C9A24E"/>
|
|
5
|
-
<stop offset="35%" stop-color="#A67C32"/>
|
|
6
|
-
<stop offset="65%" stop-color="#7A5A1E"/>
|
|
7
|
-
<stop offset="100%" stop-color="#5C4116"/>
|
|
8
|
-
</linearGradient>
|
|
9
|
-
<linearGradient id="shieldRim" x1="0" y1="0" x2="0" y2="1">
|
|
10
|
-
<stop offset="0%" stop-color="#E8D48B"/>
|
|
11
|
-
<stop offset="50%" stop-color="#B8912A"/>
|
|
12
|
-
<stop offset="100%" stop-color="#8B6914"/>
|
|
13
|
-
</linearGradient>
|
|
14
|
-
<radialGradient id="forgeGlow" cx="0.4" cy="0.35" r="0.6">
|
|
15
|
-
<stop offset="0%" stop-color="#DABB6A" stop-opacity="0.4"/>
|
|
16
|
-
<stop offset="100%" stop-color="#7A5A1E" stop-opacity="0"/>
|
|
17
|
-
</radialGradient>
|
|
18
|
-
<linearGradient id="letterMetal" x1="0" y1="0" x2="0" y2="1">
|
|
19
|
-
<stop offset="0%" stop-color="#FFF5D4"/>
|
|
20
|
-
<stop offset="30%" stop-color="#E8D48B"/>
|
|
21
|
-
<stop offset="70%" stop-color="#C9A24E"/>
|
|
22
|
-
<stop offset="100%" stop-color="#F0E0A0"/>
|
|
23
|
-
</linearGradient>
|
|
24
|
-
<filter id="shadow" x="-5%" y="-5%" width="115%" height="120%">
|
|
25
|
-
<feDropShadow dx="0" dy="4" stdDeviation="8" flood-color="#2A1A00" flood-opacity="0.5"/>
|
|
26
|
-
</filter>
|
|
27
|
-
</defs>
|
|
1
|
+
<svg width="256" height="256" viewBox="0 0 256 256" xmlns="http://www.w3.org/2000/svg">
|
|
28
2
|
|
|
29
|
-
<!--
|
|
30
|
-
<
|
|
31
|
-
fill="url(#shieldRim)" filter="url(#shadow)"/>
|
|
3
|
+
<!-- Background -->
|
|
4
|
+
<rect width="256" height="256" fill="#0B1220"></rect>
|
|
32
5
|
|
|
33
|
-
<!--
|
|
34
|
-
<path d="
|
|
35
|
-
|
|
6
|
+
<!-- Shield outline -->
|
|
7
|
+
<path d="M128 20
|
|
8
|
+
L200 60
|
|
9
|
+
L200 130
|
|
10
|
+
C200 180 165 215 128 236
|
|
11
|
+
C91 215 56 180 56 130
|
|
12
|
+
L56 60
|
|
13
|
+
Z" fill="none" stroke="#3B82F6" stroke-width="8"></path>
|
|
36
14
|
|
|
37
|
-
<!--
|
|
38
|
-
<
|
|
39
|
-
|
|
15
|
+
<!-- Network nodes -->
|
|
16
|
+
<circle cx="128" cy="95" r="8" fill="#3B82F6"></circle>
|
|
17
|
+
<circle cx="90" cy="135" r="6" fill="#3B82F6"></circle>
|
|
18
|
+
<circle cx="166" cy="135" r="6" fill="#3B82F6"></circle>
|
|
19
|
+
<circle cx="128" cy="165" r="6" fill="#3B82F6"></circle>
|
|
40
20
|
|
|
41
|
-
<!--
|
|
42
|
-
<
|
|
43
|
-
<
|
|
21
|
+
<!-- Network lines -->
|
|
22
|
+
<line x1="128" y1="95" x2="90" y2="135" stroke="#3B82F6" stroke-width="4"></line>
|
|
23
|
+
<line x1="128" y1="95" x2="166" y2="135" stroke="#3B82F6" stroke-width="4"></line>
|
|
24
|
+
<line x1="90" y1="135" x2="128" y2="165" stroke="#3B82F6" stroke-width="4"></line>
|
|
25
|
+
<line x1="166" y1="135" x2="128" y2="165" stroke="#3B82F6" stroke-width="4"></line>
|
|
44
26
|
|
|
45
|
-
<!--
|
|
46
|
-
<
|
|
47
|
-
<circle cx="382" cy="102" r="7" fill="#B8912A" stroke="#8B6914" stroke-width="2"/>
|
|
48
|
-
<circle cx="142" cy="280" r="7" fill="#B8912A" stroke="#8B6914" stroke-width="2"/>
|
|
49
|
-
<circle cx="370" cy="280" r="7" fill="#B8912A" stroke="#8B6914" stroke-width="2"/>
|
|
27
|
+
<!-- Checkmark -->
|
|
28
|
+
<path d="M105 135 L120 150 L150 115" fill="none" stroke="#22C55E" stroke-width="8" stroke-linecap="round" stroke-linejoin="round"></path>
|
|
50
29
|
|
|
51
|
-
<!-- Letter G as path (serif, forged metal) -->
|
|
52
|
-
<path d="M296 248L296 272L260 272L260 310L296 310L296 296L320 296L320 330
|
|
53
|
-
C306 348 280 360 256 360C208 360 170 320 170 256C170 192 208 152 256 152
|
|
54
|
-
C284 152 308 164 324 184L302 204C290 190 274 180 256 180
|
|
55
|
-
C226 180 200 210 200 256C200 302 226 332 256 332
|
|
56
|
-
C272 332 286 326 296 316L296 280L260 280L260 248Z"
|
|
57
|
-
fill="url(#letterMetal)" stroke="#5C4116" stroke-width="4" stroke-linejoin="round"/>
|
|
58
30
|
</svg>
|
package/package.json
CHANGED
package/snap.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.
|
|
2
|
+
"version": "1.0.3",
|
|
3
3
|
"description": "Crypto Guardian provides risk signals for Ethereum tokens. Advisory only — does not block transactions.",
|
|
4
4
|
"proposedName": "Crypto Guardian",
|
|
5
5
|
"repository": {
|
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
"url": "https://github.com/taker007/crypto-guardian.git"
|
|
8
8
|
},
|
|
9
9
|
"source": {
|
|
10
|
-
"shasum": "
|
|
10
|
+
"shasum": "KPXLQWhecGVmc7Cid9FA7EXjs61XVcCQxC1ENdThpFc=",
|
|
11
11
|
"location": {
|
|
12
12
|
"npm": {
|
|
13
13
|
"filePath": "dist/bundle.js",
|