作者 karlet

feat:查询交易权限

@@ -139,6 +139,13 @@ class BinanceSpot @@ -139,6 +139,13 @@ class BinanceSpot
139 $method = 'POST'; 139 $method = 'POST';
140 return $this->requestAccount($method, $path, $param); 140 return $this->requestAccount($method, $path, $param);
141 } 141 }
  142 + //查询子账户Margin/Futures状态 (适用主账户)
  143 + public function subAccountStatus($param)
  144 + {
  145 + $path = '/sapi/v1/sub-account/status';
  146 + $method = 'GET';
  147 + return $this->requestAccount($method, $path, $param);
  148 + }
142 149
143 /* 150 /*
144 * ================================== 151 * ==================================