ccxt-go/bitpanda.go

30 lines
688 B
Go
Raw 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 bitpanda struct {
onetrading
}
func NewBitpandaCore() bitpanda {
p := bitpanda{}
setDefaults(&p)
return p
}
func (this *bitpanda) Describe() interface{} {
return this.DeepExtend(this.onetrading.Describe(), map[string]interface{} {
"id": "bitpanda",
"alias": true,
})
}
func (this *bitpanda) Init(userConfig map[string]interface{}) {
this.onetrading.Init(this.DeepExtend(this.Describe(), userConfig))
this.Itf = this
this.Exchange.DerivedExchange = this
}