Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bitgetlimited
GitHub Repository: bitgetlimited/v3-bitget-api-sdk
Path: blob/master/bitget-golang-sdk-api/config/config.go
518 views
1
package config
2
3
import "bitget/constants"
4
5
const (
6
BaseUrl = "https://api.bitget.com"
7
WsUrl = "wss://ws.bitget.com/mix/v1/stream"
8
9
ApiKey = ""
10
SecretKey = ""
11
PASSPHRASE = ""
12
TimeoutSecond = 30
13
SignType = constants.SHA256
14
)
15
16