@taker007/crypto-guardian-snap 1.0.2 → 1.0.4
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 +4 -57
- 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,5 @@
|
|
|
1
|
-
<svg xmlns="http://www.w3.org/2000/svg"
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
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>
|
|
28
|
-
|
|
29
|
-
<!-- Outer shield (rim) -->
|
|
30
|
-
<path d="M256 22C140 22 58 56 58 56L58 230C58 340 150 440 256 490C362 440 454 340 454 230L454 56C454 56 372 22 256 22Z"
|
|
31
|
-
fill="url(#shieldRim)" filter="url(#shadow)"/>
|
|
32
|
-
|
|
33
|
-
<!-- Inner shield face -->
|
|
34
|
-
<path d="M256 42C152 42 78 72 78 72L78 226C78 326 162 418 256 464C350 418 434 326 434 226L434 72C434 72 360 42 256 42Z"
|
|
35
|
-
fill="url(#shieldFace)"/>
|
|
36
|
-
|
|
37
|
-
<!-- Forge glow -->
|
|
38
|
-
<path d="M256 42C152 42 78 72 78 72L78 226C78 326 162 418 256 464C350 418 434 326 434 226L434 72C434 72 360 42 256 42Z"
|
|
39
|
-
fill="url(#forgeGlow)"/>
|
|
40
|
-
|
|
41
|
-
<!-- Decorative bars -->
|
|
42
|
-
<rect x="118" y="148" width="276" height="5" rx="2.5" fill="#5C4116" opacity="0.45"/>
|
|
43
|
-
<rect x="118" y="340" width="276" height="5" rx="2.5" fill="#5C4116" opacity="0.45"/>
|
|
44
|
-
|
|
45
|
-
<!-- Rivets -->
|
|
46
|
-
<circle cx="130" cy="102" r="7" fill="#B8912A" stroke="#8B6914" stroke-width="2"/>
|
|
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"/>
|
|
50
|
-
|
|
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"/>
|
|
1
|
+
<svg xmlns="http://www.w3.org/2000/svg" width="256" height="256" viewBox="0 0 256 256">
|
|
2
|
+
<rect width="256" height="256" rx="48" fill="#0B0F1A"/>
|
|
3
|
+
<path d="M128 24 L212 64 V128 C212 180 172 220 128 232 C84 220 44 180 44 128 V64 Z" fill="#14F195"/>
|
|
4
|
+
<circle cx="128" cy="120" r="36" fill="#0B0F1A"/>
|
|
58
5
|
</svg>
|
package/package.json
CHANGED
package/snap.manifest.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.0.
|
|
2
|
+
"version": "1.0.4",
|
|
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": "QvPrlI+oJpn4O/C53+KEmRQLZXd0u76mTIW091r6zCM=",
|
|
11
11
|
"location": {
|
|
12
12
|
"npm": {
|
|
13
13
|
"filePath": "dist/bundle.js",
|