Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Cryptsy.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -86,6 +86,21 @@ def getInfo(self):
# low_trade 24 hour lowest trade price in this market
def getMarkets(self):
return self.api_query('getmarkets')

#Outputs: Array of Wallet Statuses
#currencyid Integer value representing a currency
#name Name for this currency, for example: Bitcoin
#code Currency code, for example: BTC
#blockcount Blockcount of currency hot wallet as of lastupdate time
#difficulty Difficulty of currency hot wallet as of lastupdate time
#version Version of currency hotwallet as of lastupdate time
#peercount Connected peers of currency hot wallet as of lastupdate time
#hashrate Network hashrate of currency hot wallet as of lastupdate time
#gitrepo Git Repo URL for this currency
#withdrawalfee Fee charged for withdrawals of this currency
#lastupdate Datetime (EST) the hot wallet information was last updated
def getWalletStatus(self):
return self.api_query('getwalletstatus')


# Outputs: Array of Deposits and Withdrawals on your account
Expand Down