ccxt-go/bitcoincom.go

31 lines
721 B
Go
Raw Permalink Normal View History

2025-02-28 10:33:20 +08:00
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 bitcoincom struct {
fmfwio
}
func NewBitcoincomCore() bitcoincom {
p := bitcoincom{}
setDefaults(&p)
return p
}
func (this *bitcoincom) Describe() interface{} {
return this.DeepExtend(this.fmfwio.Describe(), map[string]interface{} {
"id": "bitcoincom",
"name": "Bitcoin.com",
"alias": true,
})
}
func (this *bitcoincom) Init(userConfig map[string]interface{}) {
this.fmfwio.Init(this.DeepExtend(this.Describe(), userConfig))
this.Itf = this
this.Exchange.DerivedExchange = this
}