Skip to content

Commit

Permalink
Exchange: describe: default structure
Browse files Browse the repository at this point in the history
  • Loading branch information
mkutny committed Jan 23, 2018
1 parent c778a24 commit 4901c04
Showing 1 changed file with 36 additions and 1 deletion.
37 changes: 36 additions & 1 deletion js/base/Exchange.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,42 @@ module.exports = class Exchange {
return marketClass
}

describe () { return {} }
describe () {
return {
'id': undefined,
'name': undefined,
'countries': undefined,
'rateLimit': undefined,
'hasCORS': undefined,
'has': undefined,
'urls': {
'logo': undefined,
'api': undefined,
'www': undefined,
'doc': undefined,
'fees': undefined,
},
'api': {
'public': undefined,
'private': undefined,
},
'fees': {
'trading': {
'tierBased': undefined,
'percentage': undefined,
'taker': undefined,
'maker': undefined,
},
'funding': {
'tierBased': undefined,
'percentage': undefined,
'withdraw': undefined,
'deposit': undefined,
},
},
'exceptions': undefined,
} // return
} // describe ()

constructor (userConfig = {}) {

Expand Down

0 comments on commit 4901c04

Please sign in to comment.