18
18
- [ disconnect] ( lumclient.md#disconnect )
19
19
- [ getAccount] ( lumclient.md#getaccount )
20
20
- [ getAccountUnverified] ( lumclient.md#getaccountunverified )
21
+ - [ getAllBalancesUnverified] ( lumclient.md#getallbalancesunverified )
22
+ - [ getAllSupplies] ( lumclient.md#getallsupplies )
21
23
- [ getBalance] ( lumclient.md#getbalance )
22
- - [ getBalancesUnverified ] ( lumclient.md#getbalancesunverified )
24
+ - [ getBalanceUnverified ] ( lumclient.md#getbalanceunverified )
23
25
- [ getBlock] ( lumclient.md#getblock )
24
26
- [ getBlockHeight] ( lumclient.md#getblockheight )
25
27
- [ getChainId] ( lumclient.md#getchainid )
28
+ - [ getSupply] ( lumclient.md#getsupply )
26
29
- [ getTx] ( lumclient.md#gettx )
27
30
- [ getValidators] ( lumclient.md#getvalidators )
28
31
- [ searchTx] ( lumclient.md#searchtx )
29
32
- [ signAndBroadcastTx] ( lumclient.md#signandbroadcasttx )
30
33
- [ signTx] ( lumclient.md#signtx )
34
+ - [ status] ( lumclient.md#status )
31
35
- [ txsQuery] ( lumclient.md#txsquery )
32
36
- [ connect] ( lumclient.md#connect )
33
37
57
61
58
62
### queryClient
59
63
60
- • ` Readonly ` ** queryClient** : * QueryClient* & AuthExtension & BankExtension
64
+ • ` Readonly ` ** queryClient** : * QueryClient* & AuthExtension & BankExtension & DistributionExtension & StakingExtension
61
65
62
66
___
63
67
@@ -126,6 +130,32 @@ Name | Type | Description |
126
130
127
131
___
128
132
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
+
129
159
### getBalance
130
160
131
161
▸ ** getBalance** (` address ` : * string* , ` searchDenom ` : * string* ): * Promise* <* null* \| [ * Coin* ] ( ../interfaces/lumtypes.coin.md ) \>
@@ -143,19 +173,20 @@ Name | Type | Description |
143
173
144
174
___
145
175
146
- ### getBalancesUnverified
176
+ ### getBalanceUnverified
147
177
148
- ▸ ** getBalancesUnverified ** (` address ` : * string* ): * Promise* <[ * Coin* ] ( ../interfaces/lumtypes.coin.md ) [ ] \>
178
+ ▸ ** getBalanceUnverified ** (` address ` : * string* , ` searchDenom ` : * string * ): * Promise* <* null * \| [ * Coin* ] ( ../interfaces/lumtypes.coin.md ) \>
149
179
150
- Get all account balances without verifying their existence
180
+ Get an account balance without verifying their existence
151
181
152
182
#### Parameters:
153
183
154
184
Name | Type | Description |
155
185
:------ | :------ | :------ |
156
- ` address ` | * string* | wallet address |
186
+ ` address ` | * string* | wallet address |
187
+ ` searchDenom ` | * string* | Coin denomination (ex: lum) |
157
188
158
- ** Returns:** * Promise* <[ * Coin* ] ( ../interfaces/lumtypes.coin.md ) [ ] \>
189
+ ** Returns:** * Promise* <* null * \| [ * Coin* ] ( ../interfaces/lumtypes.coin.md ) \>
159
190
160
191
___
161
192
@@ -195,6 +226,22 @@ Get the chain id
195
226
196
227
___
197
228
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
+
198
245
### getTx
199
246
200
247
▸ ** getTx** (` hash ` : * Uint8Array* , ` includeProof? ` : * boolean* ): * Promise* <* null* \| TxResponse\>
@@ -292,6 +339,16 @@ Name | Type | Description |
292
339
293
340
___
294
341
342
+ ### status
343
+
344
+ ▸ ** status** (): * Promise* <StatusResponse\>
345
+
346
+ Get the connected node status information
347
+
348
+ ** Returns:** * Promise* <StatusResponse\>
349
+
350
+ ___
351
+
295
352
### txsQuery
296
353
297
354
▸ ` Private ` ** txsQuery** (` params ` : TxSearchParams): * Promise* <TxResponse[ ] \>
0 commit comments