https://github.com/spp595/chainabuse_unoffapi
https://github.com/spp595/chainabuse_unoffapi
cryptowallet docker parser python
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/spp595/chainabuse_unoffapi
- Owner: Spp595
- License: gpl-3.0
- Created: 2025-06-09T14:06:08.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-06-09T14:47:44.000Z (4 months ago)
- Last Synced: 2025-06-09T15:38:06.674Z (4 months ago)
- Topics: cryptowallet, docker, parser, python
- Language: Python
- Homepage:
- Size: 16.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# UnOfficial ChainAbuse api
## Usage
```shell
curl -X POST "http://localhost:8000/checkwallet" \
-H "Content-Type: application/json" \
-d '{"value":"WALLET_ADDRESS"}'➜ ~ {"reports":"1","types":["NFT Airdrop Scam 1"]}
```## Run
```shell
docker run -d -p 8000:8000 \
ghcr.io/spp595/chainabuse_unoffapi```
## Run with proxy
```shell
docker run -d -p 8000:8000 \
-e PROXY_HOST="host" \
-e PROXY_USER="user" \
-e PROXY_PASS="pass" \
ghcr.io/spp595/chainabuse_unoffapi```
## Docker Compose
```yaml
version: "3.7"
services:
tgalertbot:
image: ghcr.io/spp595/chainabuse_unoffapi
restart: unless-stopped
ports:
- 8000:8000
environment: # if need proxy
PROXY_HOST: "host"
PROXY_PASS: "pass"
PROXY_USER: "user"
```## Build
```bash
git clone https://github.com/Spp595/chainabuse_unoffapi.gitcd chainabuse_unoffapi
docker build --rm --tag chainabuse_unoffapi:latest .
```