Skip to content

Commit 6a1ba48

Browse files
authored
Merge pull request #2 from dergigi/readme-fixes
[Trivial] Fix minor typos and grammar in readme
2 parents bfedd45 + 61aef03 commit 6a1ba48

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# 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.
33

44
You can check if the address generation is working right [here](https://iancoleman.io/bip39/).
55

66
## 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)
88
- [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki)/[BIP44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) HD wallet
99
- [BIP13](https://github.com/bitcoin/bips/blob/master/bip-0013.mediawiki) address format
1010

@@ -22,7 +22,7 @@ let seed = Mnemonic.createSeed(mnemonic: mnemonic)
2222
print(seed.toHexString())
2323
```
2424

25-
- PrivateKey and key derivation (BIP32, BIP44)
25+
- PrivateKey and key derivation (BIP32, BIP44).
2626

2727
```swift
2828
let masterPrivateKey = PrivateKey(seed: seed, network: .main)
@@ -45,7 +45,7 @@ print(firstPrivateKey.publicKey.address)
4545
```
4646

4747

48-
- Create your wallet and generate addresse
48+
- Create your wallet and generate addresses.
4949

5050
```swift
5151
// It generates master key pair from the seed provided.

0 commit comments

Comments
 (0)