cryptoshield 0.2.0__tar.gz → 0.2.1__tar.gz

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.
Files changed (20) hide show
  1. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/PKG-INFO +43 -9
  2. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/README.md +42 -8
  3. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/__init__.py +1 -1
  4. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield.egg-info/PKG-INFO +43 -9
  5. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/pyproject.toml +1 -1
  6. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/LICENSE +0 -0
  7. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/approvals.py +0 -0
  8. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/cli.py +0 -0
  9. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/db.py +0 -0
  10. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/honeypot.py +0 -0
  11. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/phishing.py +0 -0
  12. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/rugpull.py +0 -0
  13. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/solana.py +0 -0
  14. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield/utils.py +0 -0
  15. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield.egg-info/SOURCES.txt +0 -0
  16. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield.egg-info/dependency_links.txt +0 -0
  17. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield.egg-info/entry_points.txt +0 -0
  18. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield.egg-info/requires.txt +0 -0
  19. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/cryptoshield.egg-info/top_level.txt +0 -0
  20. {cryptoshield-0.2.0 → cryptoshield-0.2.1}/setup.cfg +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cryptoshield
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: All-in-one crypto security toolkit — honeypot, approvals, rugpull, phishing
5
5
  Author-email: yossweh <cilokcilok15@gmail.com>
6
6
  License: MIT
@@ -30,6 +30,27 @@ Dynamic: license-file
30
30
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
31
31
  [![PyPI](https://img.shields.io/pypi/v/cryptoshield.svg)](https://pypi.org/project/cryptoshield/)
32
32
 
33
+ ## Why CryptoShield?
34
+
35
+ Every day, people lose money to:
36
+ - **Honeypot tokens** — you can buy but can't sell. Your funds are trapped.
37
+ - **Unlimited token approvals** — you gave a random contract permission to drain your wallet. Months later, they do.
38
+ - **Rugpulls** — team dumps all tokens, liquidity vanishes, price goes to zero.
39
+ - **Phishing sites** — fake airdrop pages that look like Uniswap but steal your seed phrase.
40
+
41
+ CryptoShield combines all these checks into **one CLI tool**. No API keys needed. No accounts. No BS. Just run a command and get a clear report.
42
+
43
+ ```
44
+ # Before you ape into that token:
45
+ cryptoshield check 0xToken
46
+
47
+ # Before you connect your wallet to some random site:
48
+ cryptoshield check-url suspicious-site.com
49
+
50
+ # Check if your wallet has dangerous approvals:
51
+ cryptoshield approvals 0xYourWallet
52
+ ```
53
+
33
54
  ## Features
34
55
 
35
56
  - **🍯 Honeypot Detection** — Can you sell? Hidden taxes? Mint function? Check before you buy.
@@ -118,6 +139,13 @@ cryptoshield batch wallets.txt --mode approvals --chain bsc
118
139
  ✅ Mint Authority: None (fixed supply)
119
140
  ✅ Holders: 5,432
120
141
  ✅ Risk Score: 0/100 — LOW RISK
142
+
143
+ 📋 APPROVAL AUDIT — 0x47ac...8188
144
+ ❌ USDT → UNLIMITED to 0xUnkn...abcd
145
+ ⚡ RECOMMEND: revoke immediately
146
+ ⚠️ WETH → unlimited to Uniswap V2 Router
147
+ Known protocol — consider reducing allowance
148
+ ✅ DAI → 500.00 to Uniswap V3 Router
121
149
  ```
122
150
 
123
151
  ## Supported Chains
@@ -132,16 +160,21 @@ cryptoshield batch wallets.txt --mode approvals --chain bsc
132
160
  | Base | ✅ | ✅ | ✅ |
133
161
  | Avalanche | ✅ | ✅ | ✅ |
134
162
  | Fantom | ✅ | ✅ | ✅ |
135
- | Solana | ✅ | | ✅ |
163
+ | Solana | ✅ | 🔜 | ✅ |
164
+
165
+ > 🔜 = Coming soon. SPL token delegation uses a different model than ERC-20 approvals.
166
+
167
+ ## How It Works
136
168
 
137
- ## Data Sources
169
+ | Check | Data Source | Key Needed? |
170
+ |-------|-----------|-------------|
171
+ | Honeypot | GoPlus Security API | No |
172
+ | Approvals | On-chain events (RPC) | No |
173
+ | Rugpull | GoPlus + on-chain heuristics | No |
174
+ | Phishing | Pattern matching + 60+ known domains | No |
175
+ | Solana tokens | Jupiter + Birdeye + Solana RPC | No |
138
176
 
139
- - **GoPlus Security API** Honeypot detection, token security analysis (free, no key)
140
- - **Jupiter API** — Solana token data, strict list
141
- - **Birdeye API** — Solana holder count, volume
142
- - **On-chain data** — Approval events, contract code, ownership (direct RPC)
143
- - **Heuristics** — URL pattern matching, domain analysis, typosquatting detection
144
- - **Community scam database** — 60+ known phishing domains
177
+ Everything runs with public APIs and free RPC endpoints. No signups. No API keys. No tracking.
145
178
 
146
179
  ## Contributing
147
180
 
@@ -149,6 +182,7 @@ PRs welcome! Especially:
149
182
 
150
183
  - More scam domains / phishing patterns
151
184
  - More chain support (TON, Sui, Aptos)
185
+ - SPL token delegation scanner (Solana approvals)
152
186
  - Better rugpull heuristics
153
187
  - UI improvements
154
188
 
@@ -6,6 +6,27 @@
6
6
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
7
7
  [![PyPI](https://img.shields.io/pypi/v/cryptoshield.svg)](https://pypi.org/project/cryptoshield/)
8
8
 
9
+ ## Why CryptoShield?
10
+
11
+ Every day, people lose money to:
12
+ - **Honeypot tokens** — you can buy but can't sell. Your funds are trapped.
13
+ - **Unlimited token approvals** — you gave a random contract permission to drain your wallet. Months later, they do.
14
+ - **Rugpulls** — team dumps all tokens, liquidity vanishes, price goes to zero.
15
+ - **Phishing sites** — fake airdrop pages that look like Uniswap but steal your seed phrase.
16
+
17
+ CryptoShield combines all these checks into **one CLI tool**. No API keys needed. No accounts. No BS. Just run a command and get a clear report.
18
+
19
+ ```
20
+ # Before you ape into that token:
21
+ cryptoshield check 0xToken
22
+
23
+ # Before you connect your wallet to some random site:
24
+ cryptoshield check-url suspicious-site.com
25
+
26
+ # Check if your wallet has dangerous approvals:
27
+ cryptoshield approvals 0xYourWallet
28
+ ```
29
+
9
30
  ## Features
10
31
 
11
32
  - **🍯 Honeypot Detection** — Can you sell? Hidden taxes? Mint function? Check before you buy.
@@ -94,6 +115,13 @@ cryptoshield batch wallets.txt --mode approvals --chain bsc
94
115
  ✅ Mint Authority: None (fixed supply)
95
116
  ✅ Holders: 5,432
96
117
  ✅ Risk Score: 0/100 — LOW RISK
118
+
119
+ 📋 APPROVAL AUDIT — 0x47ac...8188
120
+ ❌ USDT → UNLIMITED to 0xUnkn...abcd
121
+ ⚡ RECOMMEND: revoke immediately
122
+ ⚠️ WETH → unlimited to Uniswap V2 Router
123
+ Known protocol — consider reducing allowance
124
+ ✅ DAI → 500.00 to Uniswap V3 Router
97
125
  ```
98
126
 
99
127
  ## Supported Chains
@@ -108,16 +136,21 @@ cryptoshield batch wallets.txt --mode approvals --chain bsc
108
136
  | Base | ✅ | ✅ | ✅ |
109
137
  | Avalanche | ✅ | ✅ | ✅ |
110
138
  | Fantom | ✅ | ✅ | ✅ |
111
- | Solana | ✅ | | ✅ |
139
+ | Solana | ✅ | 🔜 | ✅ |
140
+
141
+ > 🔜 = Coming soon. SPL token delegation uses a different model than ERC-20 approvals.
142
+
143
+ ## How It Works
112
144
 
113
- ## Data Sources
145
+ | Check | Data Source | Key Needed? |
146
+ |-------|-----------|-------------|
147
+ | Honeypot | GoPlus Security API | No |
148
+ | Approvals | On-chain events (RPC) | No |
149
+ | Rugpull | GoPlus + on-chain heuristics | No |
150
+ | Phishing | Pattern matching + 60+ known domains | No |
151
+ | Solana tokens | Jupiter + Birdeye + Solana RPC | No |
114
152
 
115
- - **GoPlus Security API** Honeypot detection, token security analysis (free, no key)
116
- - **Jupiter API** — Solana token data, strict list
117
- - **Birdeye API** — Solana holder count, volume
118
- - **On-chain data** — Approval events, contract code, ownership (direct RPC)
119
- - **Heuristics** — URL pattern matching, domain analysis, typosquatting detection
120
- - **Community scam database** — 60+ known phishing domains
153
+ Everything runs with public APIs and free RPC endpoints. No signups. No API keys. No tracking.
121
154
 
122
155
  ## Contributing
123
156
 
@@ -125,6 +158,7 @@ PRs welcome! Especially:
125
158
 
126
159
  - More scam domains / phishing patterns
127
160
  - More chain support (TON, Sui, Aptos)
161
+ - SPL token delegation scanner (Solana approvals)
128
162
  - Better rugpull heuristics
129
163
  - UI improvements
130
164
 
@@ -1,4 +1,4 @@
1
1
  """CryptoShield — All-in-one crypto security toolkit."""
2
2
 
3
- __version__ = "0.2.0"
3
+ __version__ = "0.2.1"
4
4
  __author__ = "yossweh"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: cryptoshield
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: All-in-one crypto security toolkit — honeypot, approvals, rugpull, phishing
5
5
  Author-email: yossweh <cilokcilok15@gmail.com>
6
6
  License: MIT
@@ -30,6 +30,27 @@ Dynamic: license-file
30
30
  [![License: MIT](https://img.shields.io/badge/License-MIT-green.svg)](LICENSE)
31
31
  [![PyPI](https://img.shields.io/pypi/v/cryptoshield.svg)](https://pypi.org/project/cryptoshield/)
32
32
 
33
+ ## Why CryptoShield?
34
+
35
+ Every day, people lose money to:
36
+ - **Honeypot tokens** — you can buy but can't sell. Your funds are trapped.
37
+ - **Unlimited token approvals** — you gave a random contract permission to drain your wallet. Months later, they do.
38
+ - **Rugpulls** — team dumps all tokens, liquidity vanishes, price goes to zero.
39
+ - **Phishing sites** — fake airdrop pages that look like Uniswap but steal your seed phrase.
40
+
41
+ CryptoShield combines all these checks into **one CLI tool**. No API keys needed. No accounts. No BS. Just run a command and get a clear report.
42
+
43
+ ```
44
+ # Before you ape into that token:
45
+ cryptoshield check 0xToken
46
+
47
+ # Before you connect your wallet to some random site:
48
+ cryptoshield check-url suspicious-site.com
49
+
50
+ # Check if your wallet has dangerous approvals:
51
+ cryptoshield approvals 0xYourWallet
52
+ ```
53
+
33
54
  ## Features
34
55
 
35
56
  - **🍯 Honeypot Detection** — Can you sell? Hidden taxes? Mint function? Check before you buy.
@@ -118,6 +139,13 @@ cryptoshield batch wallets.txt --mode approvals --chain bsc
118
139
  ✅ Mint Authority: None (fixed supply)
119
140
  ✅ Holders: 5,432
120
141
  ✅ Risk Score: 0/100 — LOW RISK
142
+
143
+ 📋 APPROVAL AUDIT — 0x47ac...8188
144
+ ❌ USDT → UNLIMITED to 0xUnkn...abcd
145
+ ⚡ RECOMMEND: revoke immediately
146
+ ⚠️ WETH → unlimited to Uniswap V2 Router
147
+ Known protocol — consider reducing allowance
148
+ ✅ DAI → 500.00 to Uniswap V3 Router
121
149
  ```
122
150
 
123
151
  ## Supported Chains
@@ -132,16 +160,21 @@ cryptoshield batch wallets.txt --mode approvals --chain bsc
132
160
  | Base | ✅ | ✅ | ✅ |
133
161
  | Avalanche | ✅ | ✅ | ✅ |
134
162
  | Fantom | ✅ | ✅ | ✅ |
135
- | Solana | ✅ | | ✅ |
163
+ | Solana | ✅ | 🔜 | ✅ |
164
+
165
+ > 🔜 = Coming soon. SPL token delegation uses a different model than ERC-20 approvals.
166
+
167
+ ## How It Works
136
168
 
137
- ## Data Sources
169
+ | Check | Data Source | Key Needed? |
170
+ |-------|-----------|-------------|
171
+ | Honeypot | GoPlus Security API | No |
172
+ | Approvals | On-chain events (RPC) | No |
173
+ | Rugpull | GoPlus + on-chain heuristics | No |
174
+ | Phishing | Pattern matching + 60+ known domains | No |
175
+ | Solana tokens | Jupiter + Birdeye + Solana RPC | No |
138
176
 
139
- - **GoPlus Security API** Honeypot detection, token security analysis (free, no key)
140
- - **Jupiter API** — Solana token data, strict list
141
- - **Birdeye API** — Solana holder count, volume
142
- - **On-chain data** — Approval events, contract code, ownership (direct RPC)
143
- - **Heuristics** — URL pattern matching, domain analysis, typosquatting detection
144
- - **Community scam database** — 60+ known phishing domains
177
+ Everything runs with public APIs and free RPC endpoints. No signups. No API keys. No tracking.
145
178
 
146
179
  ## Contributing
147
180
 
@@ -149,6 +182,7 @@ PRs welcome! Especially:
149
182
 
150
183
  - More scam domains / phishing patterns
151
184
  - More chain support (TON, Sui, Aptos)
185
+ - SPL token delegation scanner (Solana approvals)
152
186
  - Better rugpull heuristics
153
187
  - UI improvements
154
188
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "cryptoshield"
7
- version = "0.2.0"
7
+ version = "0.2.1"
8
8
  description = "All-in-one crypto security toolkit — honeypot, approvals, rugpull, phishing"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes