Files
gpt-plus-gpt/config.example.yaml
2026-03-15 20:48:19 +08:00

85 lines
2.4 KiB
YAML

# Proxy settings
proxy:
url: "socks5://user:pass@host:port" # Leave empty for direct connection
# Email provider
email:
provider: "mailgateway"
mailgateway:
base_url: "xxx"
api_key: "xxx"
provider: "mail"
# Card provider ("static", "file", or "api")
card:
provider: "file" # "static" = from YAML below, "file" = from TXT file, "api" = from API
# Card pool settings (applies to all providers)
pool:
ttl_minutes: 60 # card validity period in minutes (default: 60)
multi_bind: true # allow one card to be used multiple times
max_binds: 0 # max uses per card (0 = unlimited when multi_bind=true)
# Option 1: Static cards in config
static:
cards:
- number: ""
exp_month: ""
exp_year: ""
cvc: ""
name: ""
country: ""
currency: ""
address: ""
city: ""
state: ""
postal_code: ""
# Option 2: Cards from TXT file (one per line)
# Format: number|month|year|cvc or number|month|year|cvc|name|country|currency
# Also supports comma delimiter: number,month,year,cvc
file:
path: "./cards.txt"
default_country: ""
default_currency: ""
# Option 3: Cards from redeem code API (yyl.ncet.top)
api:
base_url: "https://yyl.ncet.top"
codes: # redeem codes inline
- "XXXX-XXXX-XXXX-XXXX"
# codes_file: "./codes.txt" # or load codes from file (one per line)
default_name: "" # fallback cardholder name (auto-parsed from API template)
default_country: "US"
default_currency: "USD"
# Stripe config (update periodically, or leave empty for auto-fetch)
stripe:
build_hash: "ede17ac9fd" # auto-fetched from js.stripe.com if empty
tag_version: "4.5.43" # auto-fetched from m.stripe.network if empty
stripe_version: "2025-03-31.basil"
fingerprint_dir: "./fingerprints" # directory with browser fingerprint JSON files
# Captcha solver (for Stripe hCaptcha challenge)
captcha:
provider: "hcaptchasolver"
api_key: "YOUR-HCAPTCHASOLVER-KEY"
proxy: "" # optional: fixed HTTP proxy for captcha solver
# Account generation
account:
password_length: 16
locale: "en-GB"
# Team config
team:
enabled: true
workspace_prefix: "Team"
seat_quantity: 5
coupon: "team-1-month-free"
invite_count: 0 # number of members to invite after team creation (0 = skip)
# Output
output:
dir: "./output"