diff --git a/Client.php b/Client.php index a6c6af8..add6611 100644 --- a/Client.php +++ b/Client.php @@ -512,4 +512,12 @@ function getGasStationBalance(array $params = []) { return $this->request("GET", "/v1/custody/get_gas_station_balance/", $params); } + + function addCoin(string $coin) + { + $params = [ + "coin" => $coin, + ]; + return $this->request("POST", "/v1/custody/add_coin/", $params); + } } \ No newline at end of file