1818- [ disconnect] ( lumclient.md#disconnect )
1919- [ getAccount] ( lumclient.md#getaccount )
2020- [ getAccountUnverified] ( lumclient.md#getaccountunverified )
21+ - [ getAllBalancesUnverified] ( lumclient.md#getallbalancesunverified )
22+ - [ getAllSupplies] ( lumclient.md#getallsupplies )
2123- [ getBalance] ( lumclient.md#getbalance )
22- - [ getBalancesUnverified ] ( lumclient.md#getbalancesunverified )
24+ - [ getBalanceUnverified ] ( lumclient.md#getbalanceunverified )
2325- [ getBlock] ( lumclient.md#getblock )
2426- [ getBlockHeight] ( lumclient.md#getblockheight )
2527- [ getChainId] ( lumclient.md#getchainid )
28+ - [ getSupply] ( lumclient.md#getsupply )
2629- [ getTx] ( lumclient.md#gettx )
2730- [ getValidators] ( lumclient.md#getvalidators )
2831- [ searchTx] ( lumclient.md#searchtx )
2932- [ signAndBroadcastTx] ( lumclient.md#signandbroadcasttx )
3033- [ signTx] ( lumclient.md#signtx )
34+ - [ status] ( lumclient.md#status )
3135- [ txsQuery] ( lumclient.md#txsquery )
3236- [ connect] ( lumclient.md#connect )
3337
5761
5862### queryClient
5963
60- • ` Readonly ` ** queryClient** : * QueryClient* & AuthExtension & BankExtension
64+ • ` Readonly ` ** queryClient** : * QueryClient* & AuthExtension & BankExtension & DistributionExtension & StakingExtension
6165
6266___
6367
@@ -126,6 +130,32 @@ Name | Type | Description |
126130
127131___
128132
133+ ### getAllBalancesUnverified
134+
135+ ▸ ** getAllBalancesUnverified** (` address ` : * string* ): * Promise* <[ * Coin* ] ( ../interfaces/lumtypes.coin.md ) [ ] \>
136+
137+ Get all account balances without verifying their existence
138+
139+ #### Parameters:
140+
141+ Name | Type | Description |
142+ :------ | :------ | :------ |
143+ ` address ` | * string* | wallet address |
144+
145+ ** Returns:** * Promise* <[ * Coin* ] ( ../interfaces/lumtypes.coin.md ) [ ] \>
146+
147+ ___
148+
149+ ### getAllSupplies
150+
151+ ▸ ** getAllSupplies** (): * Promise* <[ * Coin* ] ( ../interfaces/lumtypes.coin.md ) [ ] \>
152+
153+ Get all coins supplies
154+
155+ ** Returns:** * Promise* <[ * Coin* ] ( ../interfaces/lumtypes.coin.md ) [ ] \>
156+
157+ ___
158+
129159### getBalance
130160
131161▸ ** getBalance** (` address ` : * string* , ` searchDenom ` : * string* ): * Promise* <* null* \| [ * Coin* ] ( ../interfaces/lumtypes.coin.md ) \>
@@ -143,19 +173,20 @@ Name | Type | Description |
143173
144174___
145175
146- ### getBalancesUnverified
176+ ### getBalanceUnverified
147177
148- ▸ ** getBalancesUnverified ** (` address ` : * string* ): * Promise* <[ * Coin* ] ( ../interfaces/lumtypes.coin.md ) [ ] \>
178+ ▸ ** getBalanceUnverified ** (` address ` : * string* , ` searchDenom ` : * string * ): * Promise* <* null * \| [ * Coin* ] ( ../interfaces/lumtypes.coin.md ) \>
149179
150- Get all account balances without verifying their existence
180+ Get an account balance without verifying their existence
151181
152182#### Parameters:
153183
154184Name | Type | Description |
155185:------ | :------ | :------ |
156- ` address ` | * string* | wallet address |
186+ ` address ` | * string* | wallet address |
187+ ` searchDenom ` | * string* | Coin denomination (ex: lum) |
157188
158- ** Returns:** * Promise* <[ * Coin* ] ( ../interfaces/lumtypes.coin.md ) [ ] \>
189+ ** Returns:** * Promise* <* null * \| [ * Coin* ] ( ../interfaces/lumtypes.coin.md ) \>
159190
160191___
161192
@@ -195,6 +226,22 @@ Get the chain id
195226
196227___
197228
229+ ### getSupply
230+
231+ ▸ ** getSupply** (` searchDenom ` : * string* ): * Promise* <* null* \| [ * Coin* ] ( ../interfaces/lumtypes.coin.md ) \>
232+
233+ Get coin supply
234+
235+ #### Parameters:
236+
237+ Name | Type | Description |
238+ :------ | :------ | :------ |
239+ ` searchDenom ` | * string* | Coin denomination (ex: lum) |
240+
241+ ** Returns:** * Promise* <* null* \| [ * Coin* ] ( ../interfaces/lumtypes.coin.md ) \>
242+
243+ ___
244+
198245### getTx
199246
200247▸ ** getTx** (` hash ` : * Uint8Array* , ` includeProof? ` : * boolean* ): * Promise* <* null* \| TxResponse\>
@@ -292,6 +339,16 @@ Name | Type | Description |
292339
293340___
294341
342+ ### status
343+
344+ ▸ ** status** (): * Promise* <StatusResponse\>
345+
346+ Get the connected node status information
347+
348+ ** Returns:** * Promise* <StatusResponse\>
349+
350+ ___
351+
295352### txsQuery
296353
297354▸ ` Private ` ** txsQuery** (` params ` : TxSearchParams): * Promise* <TxResponse[ ] \>
0 commit comments