We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b100fba commit 7ef1667Copy full SHA for 7ef1667
docs/docs/api/wallet.mdx
@@ -41,6 +41,27 @@ Creates a new wallet. It also helps to recover a wallet using its mnemonic phras
41
Promise<BasicWallet>
42
```
43
44
+#### `BasicWallet`
45
+
46
+Represents a basic wallet structure.
47
48
+```ts
49
+export type BasicWallet = {
50
+ id: string
51
+ name: string
52
+ mnemonic: string
53
+ version: string
54
+ creationDate: number
55
+ keys: {
56
+ walletId: string
57
+ publicKey: string
58
+ privateKey: string
59
+ publicEncryptionKey: string
60
+ walletMnemonic: string
61
+ }
62
+}
63
+```
64
65
#### Example
66
67
```js
0 commit comments