43 lines
1.3 KiB
Go
43 lines
1.3 KiB
Go
![]() |
package ccxt
|
||
|
|
||
|
// 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
|
||
|
|
||
|
type bequant struct {
|
||
|
hitbtc
|
||
|
|
||
|
}
|
||
|
|
||
|
func NewBequantCore() bequant {
|
||
|
p := bequant{}
|
||
|
setDefaults(&p)
|
||
|
return p
|
||
|
}
|
||
|
|
||
|
func (this *bequant) Describe() interface{} {
|
||
|
return this.DeepExtend(this.hitbtc.Describe(), map[string]interface{} {
|
||
|
"id": "bequant",
|
||
|
"name": "Bequant",
|
||
|
"countries": []interface{}{"MT"},
|
||
|
"pro": true,
|
||
|
"urls": map[string]interface{} {
|
||
|
"logo": "https://github.com/user-attachments/assets/0583ef1f-29fe-4b7c-8189-63565a0e2867",
|
||
|
"api": map[string]interface{} {
|
||
|
"public": "https://api.bequant.io/api/3",
|
||
|
"private": "https://api.bequant.io/api/3",
|
||
|
},
|
||
|
"www": "https://bequant.io",
|
||
|
"doc": []interface{}{"https://api.bequant.io/"},
|
||
|
"fees": []interface{}{"https://bequant.io/fees-and-limits"},
|
||
|
"referral": "https://bequant.io/referral/dd104e3bee7634ec",
|
||
|
},
|
||
|
})
|
||
|
}
|
||
|
|
||
|
|
||
|
func (this *bequant) Init(userConfig map[string]interface{}) {
|
||
|
this.hitbtc.Init(this.DeepExtend(this.Describe(), userConfig))
|
||
|
this.Itf = this
|
||
|
this.Exchange.DerivedExchange = this
|
||
|
}
|