diff --git a/src/Wallet.php b/src/Wallet.php index 2645dd3..2112e3f 100644 --- a/src/Wallet.php +++ b/src/Wallet.php @@ -258,4 +258,18 @@ public function stopWallet() $body = ['method' => 'stop_wallet']; return $this->_request($body); } + + /** + * Returns a list of transfers. + * @param array $options + * @return string + */ + public function getTransfers($options) + { + $body = [ + 'method' => 'get_transfers', + 'params' => $options + ]; + return $this->_request($body); + } } \ No newline at end of file