Skip to content

Releases: chrisgwilliams/Coinbase.NET

Bugfix for v1.0.2 - All Coinbase API paging bugs resolved.

03 Jul 00:03
Compare
Choose a tag to compare

With this release, the paging issues and the no account defined error have been resolved. This will be the final release of Coinbase.NET until new changes (additions?) are introduced to v1 of the Coinbase API.

The best way to use this is to grab the code, add it to a project/solution and start poking around the Connector class. Also, feel free to run the test app. It won't actually buy or sell any Bitcoin (unless you change the values in the BUY or SELL calls.) The test app contains a complete test of every call in the API (even the deprecated ones.)

Read the code. It's all in there. And feel free to hit me up with any questions, or submit an issue if you run into any errors.

Bugfix for v 1.0.2

30 Jun 14:51
Compare
Choose a tag to compare

The GetReportByID bug has been resolved. I was using a POST instead of a GET. All tests run to completion now. There are still a few bugs with paging, but those are being addressed.

Updated API, Bugfixes, Return Classes for all calls.

29 Jun 02:57
Compare
Choose a tag to compare

Some API calls were changed by Coinbase. Those have been updated in the Connector.

All of the API calls now have tests to run against them.
All of the Return JSON classes have been implemented.

Release also includes JSON.NET

Several API bugs were found and submitted to Coinbase. Items affected by these have been modified, and will be rechecked prior to 1.0.3. Essentially, the limit (items per page) parameter is broken in several places and throws a 404 when passed in. Also, getting a report by ID doesn't currently work (it's being fixed by Coinbase.)

Improved Wrapper with Tests, BugFixes, More Docs

31 Mar 19:01
Compare
Choose a tag to compare

All of the API calls now have tests to run against them.
Some of the Return JSON classes have been implemented, as needed to make the tests work.
Release also includes JSON.NET

Several API bugs were found and submitted to Coinbase. Items affected by these have been modified, and will be rechecked prior to 1.0.2. Essentially, the limit (items per page) parameter is broken in several places and throws a 404 when passed in. The Coinbase Engineers have been made aware of it.

Feature Complete - Initial Release

17 Mar 16:37
Compare
Choose a tag to compare

At this point, the Coinbase Connector (aka Coinbase.NET) is feature complete and ready for use.

  • CoinbaseConnector.DLL is a class library built with C# and .NET Framework 4.5.
  • TestApp.exe runs through a subset of Coinbase API calls to make sure you are connecting and authenticating properly.
  • TestApp.exe.config stores your Coinbase API Keys. You MUST HAVE a Coinbase API key to use this wrapper.

Additional work needs to be done in documentation and the test app, which shows the request/response for calls. Some additional refactoring of internals is also planned, but should not affect end users.