@@ -30,11 +30,11 @@ Create a LumWallet instance based on a keystore
3030
3131#### Parameters
3232
33- | Name | Type | Description |
34- | :------ | :------ | :------ |
35- | ` keystore ` | ` string ` \| [ ` KeyStore ` ] ( ../interfaces/LumUtils.KeyStore.md ) | keystore used to decypher the private key |
36- | ` password ` | ` string ` | keystore password |
37- | ` addressPrefix ` | ` string ` | prefix to use to derive the address from the public key (ex: lum) |
33+ | Name | Type | Default value | Description |
34+ | :------ | :------ | :------ | :------ |
35+ | ` keystore ` | ` string ` \| [ ` KeyStore ` ] ( ../interfaces/LumUtils.KeyStore.md ) | ` undefined ` | keystore used to decypher the private key |
36+ | ` password ` | ` string ` | ` undefined ` | keystore password |
37+ | ` addressPrefix ` | ` string ` | ` LumConstants.LumBech32PrefixAccAddr ` | prefix to use to derive the address from the public key (ex: lum) |
3838
3939#### Returns
4040
@@ -50,11 +50,11 @@ Create a LumWallet instance based on a ledger transport
5050
5151#### Parameters
5252
53- | Name | Type | Description |
54- | :------ | :------ | :------ |
55- | ` transport ` | ` default ` | Ledger transport to use (https://github.com/LedgerHQ/ledgerjs) |
56- | ` hdPath ` | ` string ` | BIP44 derivation path |
57- | ` addressPrefix ` | ` string ` | prefix to use to derive the address from the public key (ex: lum) |
53+ | Name | Type | Default value | Description |
54+ | :------ | :------ | :------ | :------ |
55+ | ` transport ` | ` default ` | ` undefined ` | Ledger transport to use (https://github.com/LedgerHQ/ledgerjs) |
56+ | ` hdPath ` | ` string ` | ` undefined ` | BIP44 derivation path |
57+ | ` addressPrefix ` | ` string ` | ` LumConstants.LumBech32PrefixAccAddr ` | prefix to use to derive the address from the public key (ex: lum) |
5858
5959#### Returns
6060
@@ -70,11 +70,11 @@ Create a LumWallet instance based on a mnemonic and a derivation path
7070
7171#### Parameters
7272
73- | Name | Type | Description |
74- | :------ | :------ | :------ |
75- | ` mnemonic ` | ` string ` | mnemonic used to derive the private key |
76- | ` hdPath ` | ` string ` | BIP44 derivation path |
77- | ` addressPrefix ` | ` string ` | prefix to use to derive the address from the public key (ex: lum) |
73+ | Name | Type | Default value | Description |
74+ | :------ | :------ | :------ | :------ |
75+ | ` mnemonic ` | ` string ` | ` undefined ` | mnemonic used to derive the private key |
76+ | ` hdPath ` | ` string ` | ` undefined ` | BIP44 derivation path |
77+ | ` addressPrefix ` | ` string ` | ` LumConstants.LumBech32PrefixAccAddr ` | prefix to use to derive the address from the public key (ex: lum) |
7878
7979#### Returns
8080
@@ -92,7 +92,7 @@ Create a LumWallet instance based on an OfflineDirectSigner instance compatible
9292
9393| Name | Type | Description |
9494| :------ | :------ | :------ |
95- | ` offlineSigner ` | ` OfflineDirectSigner ` | OfflineDirectSigner instance compatible with Comsjs based implementations |
95+ | ` offlineSigner ` | ` OfflineSigner ` | OfflineDirectSigner instance compatible with Comsjs based implementations |
9696
9797#### Returns
9898
@@ -108,10 +108,10 @@ Create a LumWallet instance based on a private key (secp256k1)
108108
109109#### Parameters
110110
111- | Name | Type | Description |
112- | :------ | :------ | :------ |
113- | ` privateKey ` | ` Uint8Array ` | wallet private key (secp256k1) |
114- | ` addressPrefix ` | ` string ` | prefix to use to derive the address from the public key (ex: lum) |
111+ | Name | Type | Default value | Description |
112+ | :------ | :------ | :------ | :------ |
113+ | ` privateKey ` | ` Uint8Array ` | ` undefined ` | wallet private key (secp256k1) |
114+ | ` addressPrefix ` | ` string ` | ` LumConstants.LumBech32PrefixAccAddr ` | prefix to use to derive the address from the public key (ex: lum) |
115115
116116#### Returns
117117
0 commit comments