Payment Notify

Get notified about received PayPal and Litecoin payments.

Payment Notification Configuration

Configure notifications for both PayPal and Litecoin payments.
Stay informed about all incoming transactions.
See the Modules Overview for a complete list of all available modules.

modules/payments.json

Litecoin Payments

Configure notifications for Litecoin transactions.

address

Your Litecoin wallet address

webhook

Discord webhook URL for notifications

confirmations

Number of confirmations before notification
Default: 2

ping

User ID to ping in notifications
Default: null

Litecoin Setup

1
Get Your Address

Copy your LTC wallet address from your wallet app and paste it in the config.

2
Checking Frequency

Checks for new transactions periodically. Be patient for new payments to appear.

{
  "litecoin": {
    "enabled": true,
    "address": "LTC_WALLET_ADDRESS"",
    "webhook": "DISCORD_WEBHOOK_URL"",
    "confirmations": 2,
    "last_tx_count": 0,
    "ping": null,
    "payload": {
      "username": "Pashka | Litecoin Payments"",
      "avatar_url": "https://i.e-z.host/kavdt6p1.png"",
      "embed": {
        "title": "- Payment Received"",
        "color": "#2b2d31"",
        "fields": [
          {"name": "Amount"", "value": "{amount} LTC"", "inline": true},
          {"name": "Value"", "value": "{usd} USD"", "inline": true},
          {"name": "Confirms"", "value": "{confirmations}"", "inline": true},
          {"name": "Transaction"", "value": "{tx_hash}"", "inline": false}
        ],
        "footer": {
          "text": "Pashka | Litecoin Payments"",
          "icon_url": "https://i.e-z.host/a8oyrvt5.png""
        }
      }
    }
  }
}

PayPal Payments

Configure notifications for PayPal transactions.

email

PayPal email address receiving payments
Default: [email protected]

webhook

Discord webhook URL for notifications

PayPal IPN Setup

1
Enable IPN

1. Log in to your PayPal account

2. Go to Account Settings and Notifications

3. Click Update next to Instant Payment Notifications

2
Configure Notification URL

1. Check "Receive IPN messages"

2. Enter the notification URL provided in your control panel

3. Save changes

{
  "paypal": {
    "enabled": true,
    "email": "[email protected]"",
    "webhook": "DISCORD_WEBHOOK_URL"",
    "ping": null,
    "payload": {
      "username": "Pashka | PayPal Payments"",
      "avatar_url": "https://i.e-z.host/kavdt6p1.png"",
      "embed": {
        "title": "- Payment Received"",
        "color": "#2b2d31"",
        "fields": [
          {"name": "Amount"", "value": "{amount} {currency}"", "inline": true},
          {"name": "Fee"", "value": "{fee}"", "inline": true},
          {"name": "Type"", "value": "{payment_type}"", "inline": true},
          {"name": "Name"", "value": "{customer_name}"", "inline": true},
          {"name": "Country"", "value": "{country}"", "inline": true},
          {"name": "Account"", "value": "{payer_status}"", "inline": true},
          {"name": "Mail"", "value": "{email}"", "inline": false},
          {"name": "Transaction"", "value": "{tx_id}"", "inline": false}
        ],
        "footer": {
          "text": "Pashka | PayPal Payments"",
          "icon_url": "https://i.e-z.host/a8oyrvt5.png""
        }
      }
    }
  }
}

Security Notes

  • Keep your webhook URL private
  • Consider using a dedicated Litecoin address just for the bot
  • Monitor your PayPal IPN settings regularly