Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bitgetlimited
GitHub Repository: bitgetlimited/v3-bitget-api-sdk
Path: blob/master/bitget-php-sdk-api/src/Config.php
518 views
1
<?php
2
3
4
namespace bitget;
5
6
7
class Config extends Constant
8
{
9
const websocketUrl = "wss://ws.bitget.com/mix/v1/stream";
10
const restApiUrl = "https://api.bitget.com";
11
const apiSecret = "";
12
const apiKey = "";
13
const passphrase = "";
14
const signType = self::SHA256;
15
}
16