Skip to main content

· 2 min read
Yoyo S
Payment GatewayNotesEmployeesLocationFoundedMonthly VisitsFundingIntegrationPluginsLinkedIn Activity
CoinGateComplicated setup
Requires business registration (KYB)
Have POS app
Have Payment Button and Plugins (WIX / WooComerse / …)
51-200Vilnius, Vilnius municipality2014445.5K--WIX, WooComerse, ...Active
BitPaySimple personal registration
Waitlist for business registration
Wallet app with gift card option
51-200Atlanta, Georgia2011871.9K$1.8M (Series B)--Not very active
CoinBaseGood UX
Simple setup
Custodial
Have POS app
Have option to pay with any wallet
Start listening right away
1,001-5,000-2012-$21.4M (Post IPO)--Active
triple-aComplex Registration
Require company details
Customer pay with crypto and you get fiat
General wallet payment
Supported currencies: Bitcoin, USDT, Ethereum, USDC
White-label
1% transaction fee
--201782.2K-BinanceWIX, WooComarce, OpenCart-
NOWPaymentsCustodial
One currency for link
WalletConnect and MetaMask
Fiat withdraw with KYB
Whitelisted address payout
Postman docs (not great)
11-50Amsterdam, North Holland2019427.3K----

· One min read
Yoyo S

Traditional crypto payment gateways hold onto your funds until you withdraw them, introducing risks like:

  • Intermediary Risk: Technical issues, security breaches, or even bankruptcy at the gateway could lead to lost funds.
  • Privacy Risk: Sharing personal information with the gateway increases data breach vulnerability.
  • Speed and Efficiency: Fund transfers and verifications can delay transactions.

Notrix offers a distinct approach, empowering you to create payment pages for crypto transactions without a middleman holding your funds. Here's how it differs:

  1. Direct Payment Transfer: Buyers send crypto directly to your wallet, bypassing Notrix entirely.
  2. Blockchain Monitoring: Notrix monitors the blockchain for confirmation, notifying both parties upon completion.
  3. Decentralized and Trustless: Eliminating the middleman mitigates risks associated with trusting a third party.

By avoiding an intermediary, Notrix reduces traditional gateway risks:

  • Reduced Intermediary Risk: No longer worry about company issues, as your funds never leave your wallet.
  • Increased Privacy: Sharing personal information with Notrix is unnecessary, minimizing data breach risks.
  • Faster Transactions: Direct transfers eliminate middleman delays, leading to quicker transactions.

If you seek a more secure and efficient way to accept crypto payments, Notrix presents a compelling alternative.

· One min read
Yoyo S

In the world of crypto payments, most gateways require Know Your Customer (KYC) and Know Your Business (KYB) checks. While these aim to enhance security and comply with regulations, Notrix takes a different approach, prioritizing user privacy and decentralization.

Traditional Gateways: Security Through KYC/KYB

  • Risk Management: KYC/KYB helps gateways assess customer risk and prevent fraud.
  • Regulation: KYC/KYB often fulfills anti-money laundering (AML) and counter-terrorism financing (CTF) requirements.
  • Trust Building: Verification aims to build trust with users by demonstrating security commitment.

Notrix: A Decentralized Alternative

  • No Intermediaries: Direct payments eliminate the need for custodians, reducing fraud risk and minimizing KYC/KYB necessity.
  • Privacy Focus: Users retain control over data, as transactions occur directly between wallets without Notrix holding sensitive information.
  • Faster Transactions: KYC/KYB removal streamlines the process, leading to quicker and more efficient payments.
  • Global Accessibility: No verification barriers allow wider participation in the crypto economy, overcoming limitations in some regions.

Conclusion

Notrix challenges the status quo by offering a KYC/KYB-free option aligned with crypto's core values. It empowers users with privacy, efficiency, and global access, demonstrating that innovative solutions can redefine the traditional payment landscape.

· 4 min read
Yoyo S

Notrix, the non-custodial crypto payment gateway, seamlessly integrates crypto payments into sellers' businesses. But what technologies orchestrate this platform's secure, scalable, and efficient operations? Let's delve into the specific choices and their roles, starting with user-facing elements and progressing towards core infrastructure:

Frontend:

  • SvelteKit: Why SvelteKit? SvelteKit shines in creating dynamic and interactive checkout pages due to its:
    • Component-based architecture: Enables modularity and maintainability, crucial for complex checkout flows.
    • Efficient client-side rendering: Minimizes latency and improves responsiveness, especially on low-bandwidth connections.
    • Small bundle sizes: Fast loading times, enhancing user experience.
    • Server-side rendering capabilities: SEO-friendliness and improved initial page load performance.

Content Delivery & Security:

  • Cloudflare: Why Cloudflare? Cloudflare strengthens Notrix's security and performance through:
    • Global CDN: Distributes content across its vast network, minimizing latency for users worldwide.
    • DDoS protection: Shields Notrix from distributed denial-of-service attacks.
    • Web Application Firewall (WAF): Filters malicious traffic and protects against common web vulnerabilities.
    • SSL/TLS encryption: Secures communication between users and Notrix.

Web Server & Load Balancing:

  • Nginx: Why Nginx? Nginx excels as the gateway for incoming traffic due to its:
    • High performance: Handles high volumes of requests efficiently.
    • Static file serving: Delivers static assets like images and CSS quickly.
    • Load balancing: Distributes traffic across multiple servers for scalability and redundancy.
    • Reverse proxying: Routes requests to different backend services based on rules.
    • SSL/TLS termination: Offloads the processing of secure connections, improving performance.

Development & Deployment:

  • Docker: Why Docker? Docker streamlines development and deployment through:
    • Containerization: Packages the Notrix application and its dependencies into self-contained units, ensuring consistent behavior across environments.
    • Portability: Enables deployments on diverse platforms without modification.
    • Reproducibility: Facilitates easier collaboration and troubleshooting.
    • Version control: Enables efficient management of application versions.

Backend:

  • Golang: Why Golang? Golang forms the robust core of Notrix due to its:

    • Concurrency: Efficiently handles high volumes of concurrent transactions and API requests.
    • Speed: Fast execution for a responsive user experience.
    • Memory management: Minimizes memory usage, optimizing resource utilization.
    • Statically typed: Enhances code readability and maintainability.
    • Large and active community: Provides ample support and resources.
    • Static compilation: Produces efficient and portable binaries, ideal for containerized environments.
  • Gin: Why Gin? Gin complements Golang by offering:

    • Minimalist design: Clean and concise syntax, reducing development time.
    • High performance: Optimized for speed and efficiency.
    • Flexibility: Supports various routing and middleware mechanisms.
    • Large community: Extensive documentation and helpful ecosystem.
  • Gorm: Why Gorm? Gorm simplifies interaction with the PostgreSQL database through:

    • Object-Relational Mapping (ORM): Reduces boilerplate code and simplifies data access.
    • Intuitive syntax: Easy to learn and use, even for developers new to ORMs.
    • Active community: Provides comprehensive support and regular updates.
    • Integration with Golang: Seamlessly interacts with the Golang backend.

Caching & Data Persistence:

  • Redis: Why Redis? Redis boosts performance and scalability through:

    • In-memory data store: Caches frequently accessed data for lightning-fast retrieval, improving user experience and reducing database load.
    • Flexibility: Supports diverse data structures like lists, sets, and hashes, catering to various caching needs.
    • High performance: Delivers sub-millisecond response times, ideal for real-time applications.
    • Integration with Golang: Conveniently interacts with the Golang backend.
    • Offloading database work: Handles frequently accessed data, allowing PostgreSQL to focus on more complex queries and write operations.
  • PostgreSQL: Why PostgreSQL? PostgreSQL forms the foundation of Notrix's data storage due to its:

    • Robustness: Proven ability to handle high volumes of data and transactions reliably.
    • Scalability: Horizontally scalable to accommodate growing data needs. Open-source: Cost-effective and freely available.
    • ACID compliance (Atomicity, Consistency, Isolation, Durability): Guarantees data integrity and consistency.
    • Advanced features: Supports full-text search, geospatial data, and more, catering to Notrix's specific needs.

Additional Considerations:

  • Security: Notrix prioritizes security throughout its tech stack. Beyond the security features mentioned for individual technologies, the platform implements additional security measures like regular penetration testing, vulnerability management, and secure coding practices.
  • Monitoring and observability: To maintain a healthy and performant platform, Notrix employs monitoring and observability tools to track key metrics, identify issues promptly, and ensure smooth operation.
  • Future-proofing: The technologies chosen by Notrix are known for their active development and strong communities, ensuring ongoing support and adaptability to future requirements.

By carefully selecting and integrating these technologies, Notrix has built a secure, scalable, and user-friendly crypto payment gateway. The platform's architecture demonstrates a thoughtful consideration of performance, efficiency, and maintainability, positioning it well for continued growth and success in the dynamic world of crypto payments.

I hope this enhanced post provides a comprehensive and informative overview of Notrix's technology stack!