Skip to content

Commit e8549fe

Browse files
committed
Merge pull request #6 from senbot/master
added getWalletStatus
2 parents df7dce4 + 6fe631a commit e8549fe

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Cryptsy.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,21 @@ def getInfo(self):
8686
# low_trade 24 hour lowest trade price in this market
8787
def getMarkets(self):
8888
return self.api_query('getmarkets')
89+
90+
#Outputs: Array of Wallet Statuses
91+
#currencyid Integer value representing a currency
92+
#name Name for this currency, for example: Bitcoin
93+
#code Currency code, for example: BTC
94+
#blockcount Blockcount of currency hot wallet as of lastupdate time
95+
#difficulty Difficulty of currency hot wallet as of lastupdate time
96+
#version Version of currency hotwallet as of lastupdate time
97+
#peercount Connected peers of currency hot wallet as of lastupdate time
98+
#hashrate Network hashrate of currency hot wallet as of lastupdate time
99+
#gitrepo Git Repo URL for this currency
100+
#withdrawalfee Fee charged for withdrawals of this currency
101+
#lastupdate Datetime (EST) the hot wallet information was last updated
102+
def getWalletStatus(self):
103+
return self.api_query('getwalletstatus')
89104

90105

91106
# Outputs: Array of Deposits and Withdrawals on your account

0 commit comments

Comments
 (0)