UNPKG

@proton/ccxt

Version:

A JavaScript / TypeScript / Python / C# / PHP cryptocurrency trading library with support for 130+ exchanges

34 lines (31 loc) 1.38 kB
// ---------------------------------------------------------------------------- // PLEASE DO NOT EDIT THIS FILE, IT IS GENERATED AND WILL BE OVERWRITTEN: // https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#how-to-contribute-code // EDIT THE CORRESPONDENT .ts FILE INSTEAD // --------------------------------------------------------------------------- import coinbasepro from './coinbasepro.js'; // --------------------------------------------------------------------------- export default class coinbaseprime extends coinbasepro { describe() { return this.deepExtend(super.describe(), { 'id': 'coinbaseprime', 'name': 'Coinbase Prime', 'has': { 'ws': true, 'watchOrderBook': true, }, 'urls': { 'test': { 'ws': 'wss://ws-feed-public.sandbox.exchange.coinbase.com', }, 'logo': 'https://user-images.githubusercontent.com/1294454/44539184-29f26e00-a70c-11e8-868f-e907fc236a7c.jpg', 'api': { 'ws': 'wss://ws-feed.exchange.coinbase.com', }, 'www': 'https://exchange.coinbase.com', 'doc': 'https://docs.exchange.coinbase.com/', 'fees': 'https://pro.coinbase.com/fees', }, }); } }