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 }