You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,10 +1,10 @@
1
1
# WalletKit
2
-
WalletKit is a Swift framwork that enables you to create and use bitcoin HD wallet([Hierarchical Deterministic Wallets](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)) in your own app.
2
+
WalletKit is a Swift framework that enables you to create and use HD wallets ([Hierarchical Deterministic Wallets](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)) in your own app.
3
3
4
4
You can check if the address generation is working right [here](https://iancoleman.io/bip39/).
5
5
6
6
## Features
7
-
- Mnemonic recovery phrease in [BIP39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki)
7
+
- Mnemonic recovery phrase in [BIP39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki)
8
8
-[BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)/[BIP44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) HD wallet
9
9
-[BIP13](https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki) address format
10
10
@@ -22,7 +22,7 @@ let seed = Mnemonic.createSeed(mnemonic: mnemonic)
22
22
print(seed.toHexString())
23
23
```
24
24
25
-
- PrivateKey and key derivation (BIP32, BIP44)
25
+
- PrivateKey and key derivation (BIP32, BIP44).
26
26
27
27
```swift
28
28
let masterPrivateKey =PrivateKey(seed: seed, network: .main)
0 commit comments