Get wallet entity informations given a username and a coin.
Example
query getWallet($uname: String!, $coinId: CurrencyProfileName!) {
getWallet(uname: $uname, coinId: $coinId) {
id
rowId
address
paymentIntervalHours
paymentThreshold
currencyProfileName
paymentMode
weeklyIntervalPaymentFrequency
isFrozen
pendingBalance
remainingFreezingTime
}
}
Response
{
"data": {
"getWallet": {
"id": "WyJ3YWxsZXRzIiwxNjg5NzAzMF0=",
"address": "your_wallet_address",
"paymentIntervalHours": 1,
"paymentThreshold": 0.002,
"currencyProfileName": "BTC",
"isFrozen": false,
"pendingBalance": "0.00042003107263748500",
"remainingFreezingTime": 0
}
}
}