bchavez / Coinbase

:moneybag: A .NET/C# implementation of the Coinbase API.

Home Page:https://developers.coinbase.com/api/v2

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Creating a new invoice

chuksgpfr opened this issue · comments

The implementation i have read is confusing, how do i create an invoice with asp.net core.
PS: Dynamic invoice

If you're looking to charge a customer something, you might want to look at Coinbase.Commerce here:
https://github.com/bchavez/Coinbase.Commerce

The Coinbase library here is mostly for account/wallet manipulation of Coinbase accounts; not so much for charging customers an invoice.

If you use this library, you have to make the invoice yourself (code it and host it) and ask permission to access the customer's Coinbase account and initiate the payment manually with the wallet send/receive APIs for the sender (and possibly for the receiver).

With Coinbase.Commerce, a merchant can just make a dynamic charge and ask the customer to pay with crypto. You can read more about that here: https://github.com/bchavez/Coinbase.Commerce

I think, for your case, the Coinbase.Commerce is the more appropriate library to use.

Hope that helps.

Thanks,
Brian