Skip to content

Commit f089ca5

Browse files
committed
Merge branch 'master' into improvement/lum-473
* master: [LUM-638] Add pagination to millions extension (#56) [LUM-619] Add Millions messages (#55) Hotfix (#54) [LUM-548] Upgrade dependencies and add Amino types (#53) Bump version Register new upgrade module messages Register legacy options (#52) Upgrade SDK JS to match chain latest used version (#51)
2 parents ab2ca06 + f626ee9 commit f089ca5

File tree

109 files changed

+17124
-454
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+17124
-454
lines changed

docs/lib/classes/lumclient.md

Lines changed: 59 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,10 @@
2727
- [getTx](LumClient.md#gettx)
2828
- [searchTx](LumClient.md#searchtx)
2929
- [signAndBroadcastTx](LumClient.md#signandbroadcasttx)
30+
- [signAndBroadcastTxForMultiWallet](LumClient.md#signandbroadcasttxformultiwallet)
3031
- [signTx](LumClient.md#signtx)
32+
- [signTxForMultiWallet](LumClient.md#signtxformultiwallet)
33+
- [signTxFromWallet](LumClient.md#signtxfromwallet)
3134
- [status](LumClient.md#status)
3235
- [txsQuery](LumClient.md#txsquery)
3336
- [connect](LumClient.md#connect)
@@ -56,7 +59,7 @@ ___
5659

5760
### queryClient
5861

59-
`Readonly` **queryClient**: `QueryClient` & `AuthExtension` & `AuthzExtension` & `BankExtension` & `BeamExtension` & `DfractExtension` & `DistributionExtension` & `GovExtension` & `IbcExtension` & `MintExtension` & `StakingExtension` & `SlashingExtension` & `FeegrantExtension` & `AirdropExtension` & `TxExtension`
62+
`Readonly` **queryClient**: `QueryClient` & `AuthExtension` & `AuthzExtension` & `BankExtension` & `BeamExtension` & `DfractExtension` & `DistributionExtension` & `GovExtension` & `IbcExtension` & `MillionsExtension` & `MintExtension` & `StakingExtension` & `SlashingExtension` & `FeegrantExtension` & `AirdropExtension` & `TxExtension`
6063

6164
___
6265

@@ -280,7 +283,7 @@ Signs and broadcast the transaction using the specified wallet and messages
280283

281284
| Name | Type | Description |
282285
| :------ | :------ | :------ |
283-
| `wallet` | [`LumWallet`](LumWallet.md) \| [`LumWallet`](LumWallet.md)[] | signing wallet or wallets for multi signature |
286+
| `wallet` | [`LumWallet`](LumWallet.md) | signing wallet or wallets for multi signature |
284287
| `doc` | [`Doc`](../interfaces/LumTypes.Doc.md) | document to sign and broadcast as a transaction |
285288

286289
#### Returns
@@ -289,6 +292,23 @@ Signs and broadcast the transaction using the specified wallet and messages
289292

290293
___
291294

295+
### signAndBroadcastTxForMultiWallet
296+
297+
**signAndBroadcastTxForMultiWallet**(`wallets`, `doc`): `Promise`<`BroadcastTxCommitResponse`\>
298+
299+
#### Parameters
300+
301+
| Name | Type |
302+
| :------ | :------ |
303+
| `wallets` | [`LumWallet`](LumWallet.md)[] |
304+
| `doc` | [`Doc`](../interfaces/LumTypes.Doc.md) |
305+
306+
#### Returns
307+
308+
`Promise`<`BroadcastTxCommitResponse`\>
309+
310+
___
311+
292312
### signTx
293313

294314
**signTx**(`wallet`, `doc`): `Promise`<`Uint8Array`\>
@@ -299,7 +319,26 @@ Signs the messages using the provided wallet and builds the transaction
299319

300320
| Name | Type | Description |
301321
| :------ | :------ | :------ |
302-
| `wallet` | [`LumWallet`](LumWallet.md) \| [`LumWallet`](LumWallet.md)[] | signing wallet or wallets for multi signature |
322+
| `wallet` | [`LumWallet`](LumWallet.md) | signing wallet for multi signature |
323+
| `doc` | [`Doc`](../interfaces/LumTypes.Doc.md) | document to sign |
324+
325+
#### Returns
326+
327+
`Promise`<`Uint8Array`\>
328+
329+
___
330+
331+
### signTxForMultiWallet
332+
333+
**signTxForMultiWallet**(`wallets`, `doc`): `Promise`<`Uint8Array`\>
334+
335+
Signs the messages using the provided wallets and builds the transaction
336+
337+
#### Parameters
338+
339+
| Name | Type | Description |
340+
| :------ | :------ | :------ |
341+
| `wallets` | [`LumWallet`](LumWallet.md)[] | signing wallets for multi signature |
303342
| `doc` | [`Doc`](../interfaces/LumTypes.Doc.md) | document to sign |
304343

305344
#### Returns
@@ -308,6 +347,23 @@ Signs the messages using the provided wallet and builds the transaction
308347

309348
___
310349

350+
### signTxFromWallet
351+
352+
**signTxFromWallet**(`wallet`, `doc`): `Promise`<[`SignDoc`, `Uint8Array`]\>
353+
354+
#### Parameters
355+
356+
| Name | Type |
357+
| :------ | :------ |
358+
| `wallet` | [`LumWallet`](LumWallet.md) |
359+
| `doc` | [`Doc`](../interfaces/LumTypes.Doc.md) |
360+
361+
#### Returns
362+
363+
`Promise`<[`SignDoc`, `Uint8Array`]\>
364+
365+
___
366+
311367
### status
312368

313369
**status**(): `Promise`<`StatusResponse`\>

docs/lib/classes/lumledgerwallet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ ___
193193

194194
### signTransaction
195195

196-
**signTransaction**(`doc`): `Promise`<[[`SignDoc`](../interfaces/LumTypes.SignDoc.md), `Uint8Array`]\>
196+
**signTransaction**(`doc`): `Promise`<[`SignDoc`, `Uint8Array`]\>
197197

198198
Sign a transaction document using a LumWallet
199199

@@ -205,7 +205,7 @@ Sign a transaction document using a LumWallet
205205

206206
#### Returns
207207

208-
`Promise`<[[`SignDoc`](../interfaces/LumTypes.SignDoc.md), `Uint8Array`]\>
208+
`Promise`<[`SignDoc`, `Uint8Array`]\>
209209

210210
#### Overrides
211211

docs/lib/classes/lumpaperwallet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ ___
189189

190190
### signTransaction
191191

192-
**signTransaction**(`doc`): `Promise`<[[`SignDoc`](../interfaces/LumTypes.SignDoc.md), `Uint8Array`]\>
192+
**signTransaction**(`doc`): `Promise`<[`SignDoc`, `Uint8Array`]\>
193193

194194
Sign a transaction document using a LumWallet
195195

@@ -201,7 +201,7 @@ Sign a transaction document using a LumWallet
201201

202202
#### Returns
203203

204-
`Promise`<[[`SignDoc`](../interfaces/LumTypes.SignDoc.md), `Uint8Array`]\>
204+
`Promise`<[`SignDoc`, `Uint8Array`]\>
205205

206206
#### Overrides
207207

docs/lib/classes/lumwallet.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ ___
137137

138138
### signTransaction
139139

140-
`Abstract` **signTransaction**(`doc`): `Promise`<[[`SignDoc`](../interfaces/LumTypes.SignDoc.md), `Uint8Array`]\>
140+
`Abstract` **signTransaction**(`doc`): `Promise`<[`SignDoc`, `Uint8Array`]\>
141141

142142
Sign a transaction document using a LumWallet
143143

@@ -149,7 +149,7 @@ Sign a transaction document using a LumWallet
149149

150150
#### Returns
151151

152-
`Promise`<[[`SignDoc`](../interfaces/LumTypes.SignDoc.md), `Uint8Array`]\>
152+
`Promise`<[`SignDoc`, `Uint8Array`]\>
153153

154154
___
155155

docs/lib/interfaces/lumtypes.signdoc.md

Lines changed: 0 additions & 48 deletions
This file was deleted.

0 commit comments

Comments
 (0)