Skip to content

Commit ae3aec6

Browse files
committed
feat: add wallets_by_currency
1 parent de64120 commit ae3aec6

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

lib/bitgo_client/v2.rb

+6
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,12 @@ def balance(coin_code: :tbtc, logger: nil)
9797
client.request("#{base_path}/wallet/balances?#{query_string}", logger: logger)
9898
end
9999

100+
def wallets_by_currrency(coin_code: :tbtc, prevId: nil, logger: nil)
101+
query_string = build_query_string(coin: coin_code, prevId: prevId, skipReceiveAddress: true)
102+
103+
client.request("#{base_path}/wallets?#{query_string}", logger: logger)
104+
end
105+
100106
private
101107

102108
def build_query_string(hash)

0 commit comments

Comments
 (0)