ccxt-go/coinbaseadvanced.go
zhangkun9038@dingtalk.com 1a2ce7046a first add
2025-02-28 10:33:20 +08:00

31 lines
775 B
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 coinbaseadvanced struct {
coinbase
}
func NewCoinbaseadvancedCore() coinbaseadvanced {
p := coinbaseadvanced{}
setDefaults(&p)
return p
}
func (this *coinbaseadvanced) Describe() interface{} {
return this.DeepExtend(this.coinbase.Describe(), map[string]interface{} {
"id": "coinbaseadvanced",
"name": "Coinbase Advanced",
"alias": true,
})
}
func (this *coinbaseadvanced) Init(userConfig map[string]interface{}) {
this.coinbase.Init(this.DeepExtend(this.Describe(), userConfig))
this.Itf = this
this.Exchange.DerivedExchange = this
}