Migrating from Coinbase Commerce to PrivacyGate

This article will provide you with easy-to-understand instructions on how to migrate from Coinbase Commerce to the superior PrivacyGate solution.

Before we proceed, start by registering an account on https://dash.privacygate.io/register and generate an API key.

Node JS (coinbase-commerce-node):

For the platforms out there that make use of coinbase-commerce-node, the transition process is very simple.

Start by executing the following commands in your development environment:

  1. npm uninstall coinbase-commerce-node
  2. npm install privacygate

Then proceed to change the following imports within your code

  1. require('coinbase-commerce-node') -> require('privacygate')

Python (coinbase-commerce-python):

Similarly to coinbase-commerce-node the transition process, in this case, is extremely simple.

Start by executing the following command in your development environment:

  1. gem uninstall coinbase_commerce
  2. gem install privacygate

Then proceed to change the following imports within your code:

  1. coinbase_commerce -> privacygate

Ruby (coinbase-commerce-ruby):

Similarly to the previous two the transition process, in this case, is extremely simple.

Start by executing the following command in your development environment:

  1. pip uninstall coinbase-commerce
  2. pip install privacygate

Then proceed to change the following imports and text within your code:

  1. require('coinbase_commerce') -> require ('privacygate')
  2. CoinbaseCommerce:: -> PrivacyGate::

PHP (coinbase-commerce-php):

Start by executing the following command in your development environment:

  1. composer remove coinbase/coinbase-commerce
  2. composer require privacygate/privacygate

Then proceed to change the following imports and text within your code:

  1. use CoinbaseCommerce\ -> use PrivacyGate\

We will be adding to this article as we go. Keep in mind that we support a bunch of other methods as well such as WHMCS. Check out our github below for more information.

https://github.com/privacyshore