Step 1: Signup as a Provider
- Visit https://app.paycrest.io
- Sign up as a Provider
- Complete the registration process
Step 2: Initiate KYB Process
- Complete the basic in-app Know-Your-Business (KYB) process
- This process can run concurrently with PSP account setup
- KYB approval is required for production access
Step 3: Register with Payment Service Providers (PSPs)
Your provision node can support multiple payment service providers to ensure reliable transaction processing. The specific PSPs available to you will be shown in your provider dashboard so you can begin PSP account setup in parallel with your KYB process.Obtain Required Credentials
You need two credential groups:-
Paycrest Aggregator Credentials (from your Paycrest dashboard)
- Go to Provider Dashboard → Settings → Payout tab → API Keys
- Copy:
- API Key -> set as
AGGREGATOR_CLIENT_ID - API Secret -> set as
AGGREGATOR_SECRET_KEY
- API Key -> set as
-
PSP Credentials (from each PSP portal)
- For each PSP you enable, collect the required fields (for example: API key, client secret, client assertion, account ID, base URL, callback URL, webhook secret)
- Use the dashboard PSP setup page to see the exact environment variable keys to populate
- Add these values to your node
.env
Step 4: Provision Node Setup
Choose your provision node hosting method:Option A: Blockops (Recommended for Low Technical Skills)
- Cost: $10/month
- Simplified setup with Paycrest partnership
- Video setup guide available
- Start here: https://blockops.network
- After setup, obtain the Host Identifier URL from Blockops
- In the app: Settings → Payout tab → Configure Provision Node → Host identifier — paste the URL and click Update
Option B: Self-Hosted Deployment (Recommended for Developers)
A Paycrest provision node is a backend service hosted on Docker Hub. The deployment process involves pulling the Docker image, configuring environment variables, and starting the server. Requirements:- Docker installed on your server
- Access to Docker Hub
- Server with internet connectivity
- Minimum 512MB RAM, 1 vCPU (tested on DigitalOcean $5 droplet)
- Pull the Docker Image
- Create Environment Configuration
Create a
.envfile with your configuration:
Credential Mapping
AGGREGATOR_CLIENT_IDmust be your Paycrest API Key (Settings → Payout → API Keys)AGGREGATOR_SECRET_KEYmust be your Paycrest API Secret (Settings → Payout → API Keys)- PSP variables (for example
PAYAZA_*,NOMBA_*) use values issued by each PSP. Prefixes match PSPs listed in the dashboard; availability depends on your corridor and currency.
EVM_PRIVATE_KEY explained
- What it is: The private key for a dedicated EVM wallet (EOA) used by your provision node.
- When you need it: Required for onramp-related wallet/authorization flows. If you’re running offramp-only operations, you can leave it unset.
- How to generate it: Create a new dedicated EVM wallet (do not reuse a personal wallet) and use that wallet’s private key.
- Security: Treat this as a production secret. Never commit it to git, store it in a secure secret manager or protected
.env, and rotate it immediately if exposed.
Important Notes:
- One node works for multiple currencies and can support multiple PSPs (for the same currency)
- Only configure the variables for the PSPs you are using
- If there is no comment on a credential key that has a value, DO NOT change that value
- DO NOT change the value of
AGGREGATOR_BASE_URL- The dashboard PSP setup page shows the exact environment variable keys per PSP
- Retrieve the credential values from each PSP and place them in your
.env
- Start the Service
- Verify Deployment Check the info endpoint to confirm your node is running and reporting provider metadata:
- Configure Host Identifier
- Take the base URL of your server (e.g.,
http://your-server-ip:8000) - In the app: Settings → Payout tab → Configure Provision Node → Host identifier — paste the URL and save
- Go live on your dashboard
- Complete control over infrastructure
- Custom security configurations
- No dependency on third-party services
- Potential cost savings at scale
Step 5: Configure Trade Settings
Set Rates & Limits
Rates: Choose between:- Floating Rate (Recommended): Allows dynamic pricing with a margin
- Fixed Rate: Static pricing, less flexible
- Set your minimum limit: Set the minimum amount (in USD) you can fulfill
- Set your maximum limit: Set an amount (in USD) based on the available fiat balance in your PSP account
Set Settlement Addresses
Configure Networks- Add settlement addresses for all supported networks and tokens
- You can add a settlement address on multiple networks for flexibility
Step 6: Node Testing & Launch
Testing in Private Mode
- After setting your settlement address(es), test your node in Private mode before going public
- With private mode, you can route a transaction to your node using Noblocks
- To go “LIVE” in Private Mode, switch your node to “Private Mode” on your dashboard
https://noblocks.xyz?provider=YOUR_PROVIDER_ID
(Replace YOUR_PROVIDER_ID with your actual provider ID)
Go Live on Public Mode
- Once testing is successful, switch to Public Mode
- Ensure your PSP account is funded and active for transaction fulfillment
Onboarding Checklist
Use this checklist to track your progress:| Task | Status |
|---|---|
| Provider Account Created | ⬜ |
| KYB Submitted | ⬜ |
| PSP Accounts Created | ⬜ |
Paycrest API Key + API Secret copied (for AGGREGATOR_CLIENT_ID / AGGREGATOR_SECRET_KEY) | ⬜ |
PSP credentials obtained and added to .env | ⬜ |
| Node Deployed (Preferably Blockops) | ⬜ |
| Trade Settings Configured | ⬜ |
| Settlement Addresses Added | ⬜ |
| Node Tested in Private Mode | ⬜ |
| Switched to Public Mode | ⬜ |
Technical Requirements
Infrastructure Requirements
Minimum Requirements:- 512MB RAM, 1 vCPU (tested on DigitalOcean $5 droplet)
- 50GB+ storage
- Stable internet connection
- Docker installed (for self-hosted deployment)
Note: The minimum requirements are based on real-world testing. A DigitalOcean $5 droplet (512MB RAM, 1 vCPU, 50GB bandwidth) is sufficient for running a Provision Node in production.
Docker Installation (For Self-Hosted)
If you choose self-hosted deployment, install Docker on your server:Security Best Practices
Network Security
- Use firewalls to restrict access
- Implement rate limiting
- Enable DDoS protection
- Use VPN for secure access
Key Management
- Store API keys securely
- Rotate keys regularly
- Use environment variables
- Implement key encryption
Monitoring and Alerting
- Set up log aggregation
- Configure performance alerts
- Monitor transaction volumes
- Track error rates
Troubleshooting
Common Issues
Node Not StartingGetting Help
- Documentation: docs.paycrest.io
- Community: Telegram
- Support: [email protected]
- Blockops Support: Available through Blockops platform
When to Contact Support
Most providers can complete setup without support. Contact support only if:- KYB remains pending beyond expected review time
- A required PSP is unavailable for your corridor
- Node status remains offline after valid
hostIdentifierand.envsetup - API keys under Settings → Payout → API Keys are missing or cannot be copied/rotated
Next Steps
After successfully deploying your Provision Node:- Test Transactions: Process test transactions to verify functionality
- Monitor Performance: Track your node’s performance and earnings
- Scale Up: Consider deploying additional nodes for increased capacity
- Optimize: Fine-tune pricing and configuration based on market conditions