Skip to main content

🔍 StablePay Verifier

Verify stablecoin payments on-chain. No custody. No fees. Just truth.

PyPI License Python

Why StablePay?

Read-only - Never touches your funds
Open-source - Audit every line of code
BYO-RPC - Use your own node for privacy
Global - Works anywhere with internet
Simple - PAID or NOT PAID, that's it

Quick Start

# Install
pip install stablepay-verifier

# Verify a payment
stablepay verify -a 0x742d35... -m 100

# Output PAYMENT VERIFIED
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
  Status:        PAID
  Amount:        100.00 USDC
  Transaction:   0x1234...abcd
  Block:         52345678 (150 confirmations)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━

Installation

From PyPI (Recommended)

pip install stablepay-verifier

From Source

git clone https://github.com/yourusername/stablepay-verifier.git
cd stablepay-verifier
pip install -e .

With Poetry

git clone https://github.com/yourusername/stablepay-verifier.git
cd stablepay-verifier
poetry install

Usage

Basic Verification

# Verify 100 USDC payment on Polygon (default)
stablepay verify --address 0x742d35cc6634c0532925a3b844bc9e7595f3a382 --amount 100

# Short form
stablepay verify -a 0x742d35... -m 100

Different Tokens & Chains

# USDT on Ethereum
stablepay verify -a 0x... -m 50 --token USDT --chain ethereum

# DAI on Arbitrum
stablepay verify -a 0x... -m 1000 -t DAI -c arbitrum

Time Window

# Search last 7 days
stablepay verify -a 0x... -m 100 --time-window 7d

# Search last 1 hour
stablepay verify -a 0x... -m 100 -w 1h

Custom RPC (BYO-RPC)

# Use your own RPC endpoint for privacy/reliability
stablepay verify -a 0x... -m 100 --rpc https://your-rpc-endpoint.com

JSON Output (for scripts)

# Get JSON output
stablepay verify -a 0x... -m 100 --output json

# Use with jq
stablepay verify -a 0x... -m 100 -o json | jq '.status'

Filter by Sender

# Only count payments from a specific address
stablepay verify -a 0x... -m 100 --sender 0xabc123...

Supported Chains & Tokens

Chain USDC USDT DAI
Polygon
Ethereum
Arbitrum
Base
Optimism

Run stablepay info to see all supported chains and tokens.

Exit Codes

Code Status Meaning
0 PAID Payment verified
1 NOT_PAID No matching payment
2 PARTIAL Partial payment
3 PENDING Awaiting confirmations
10 ERROR Invalid input
11 RPC_ERROR Network error

Use exit codes in scripts:

stablepay verify -a 0x... -m 100 -q && echo "Payment received!"

Configuration

Command Line Options

Flag Short Default Description
--address -a Required Receiver wallet address
--amount -m Required Expected payment amount
--token -t USDC Token symbol
--chain -c polygon Blockchain network
--rpc -r Auto Custom RPC endpoint
--time-window -w 24h Search time window
--sender -s Any Filter by sender
--min-confirmations 12 Required confirmations
--tolerance 0.01 Amount tolerance (1%)
--output -o text Output format
--quiet -q Minimal output
--verbose -v Debug info

Use Cases

Freelancers

Verify client payments before delivering work:

stablepay verify -a $MY_WALLET -m 500 -w 24h

E-commerce Integration

Check payments in your backend:

from stablepay_verifier import verify_payment, VerifyRequest

result = verify_payment(VerifyRequest(
    address="0x...",
    amount=99.99,
    token="USDC",
    chain="polygon",
))

if result.is_paid:
    process_order()

Automated Systems

Use in CI/CD or cron jobs:

#!/bin/bash
if stablepay verify -a $WALLET -m $AMOUNT -q; then
    echo "Payment confirmed, proceeding..."
    ./next_step.sh
else
    echo "Payment not found"
    exit 1
fi

BYO-RPC Model

Public RPCs have rate limits and privacy concerns. For production use, we recommend using your own RPC endpoint:

stablepay verify -a 0x... -m 100 --rpc https://polygon-mainnet.g.alchemy.com/v2/YOUR_KEY

Development

Setup

git clone https://github.com/yourusername/stablepay-verifier.git
cd stablepay-verifier
poetry install --with dev

Run Tests

poetry run pytest

Lint & Format

poetry run ruff check .
poetry run ruff format .

Type Check

poetry run mypy src

Contributing

Contributions are welcome! Please see CONTRIBUTING.md for guidelines.

  1. Fork the repository
  2. Create a feature branch
  3. Make your changes
  4. Run tests and linting
  5. Submit a pull request

License

MIT License - see LICENSE for details.

Security

This tool is read-only and never requests private keys or signing capabilities. It only queries public blockchain data.

If you find a security issue, please report it privately to security@example.com.


Built with ❤️ for the global stablecoin community

Release files for stablepay-verifier 0.1.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for stablepay-verifier 0.1.0
File Size Uploaded
stablepay_verifier-0.1.0.tar.gz 15.4 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for stablepay-verifier 0.1.0
File Interpreter ABI Platform
stablepay_verifier-0.1.0-py3-none-any.whl Python 3 none any Details

Total release size: 31.8 kB

Release files / stablepay_verifier-0.1.0.tar.gz

Download URL stablepay_verifier-0.1.0.tar.gz
Size 15.4 kB
Tags Source
SHA-256 checksum
How to use checksums
0397472a8a456faae2268ceeea25f83c290dea28e85f23447991215e4805b381
BLAKE2b-256 checksum
How to use checksums
7ae8f3713b689120fadd75bfba95efc64546fb62985a59f79136e35dcb4eede8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/2.3.2 CPython/3.10.11 Windows/10

Release files / stablepay_verifier-0.1.0-py3-none-any.whl

Download URL stablepay_verifier-0.1.0-py3-none-any.whl
Size 16.4 kB
Tags Python 3
SHA-256 checksum
How to use checksums
57815e0ff9bc4d30b3069aedc723fd8ef0e6fe35aa006f655a286c7c28a5b757
BLAKE2b-256 checksum
How to use checksums
4c037e631be771f8a5783b4151d7fbafb2e078a33af823b338e148be6218e7c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via poetry/2.3.2 CPython/3.10.11 Windows/10

Release history Release notifications | RSS feed

This release

0.1.0 This release

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page