Skip to content

Commit ebbe5a8

Browse files
Update Readme
1 parent 4981bf2 commit ebbe5a8

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@ The work for 2.0 release is about to start. Ideas for new more Swift idiomatic A
1717
- [Migration Guides](#migration-guides)
1818
- [Communication](#communication)
1919
- [Installation](#installation)
20-
- [Usage](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md)
21-
- **Account Management -** [Create Account](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#create-account), [Import Account](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#import-account), [Manage Keystore](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#manage-keystore), [Ethereum Address](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#ethereum-address), [Get Balance](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#get-balance)
22-
- **Transactions Operations -** [Prepare Transaction](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#prepare-transaction), [Send Transaction](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#send-transaction), [Get gas price](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#transaction-gasprice), [Serialize & deserialize transactions](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#serialize-deserialize-transactions), [Get result](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#get-result)
23-
- **Chain State -** [Get Block number](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#get-block-number), [Get gas price](https://github.com/matterinc/web3swift/blob/master/Documentation/Usage.md#block-gasprice)
20+
- [Usage](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md)
21+
- **Account Management -** [Create Account](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#create-account), [Import Account](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#import-account), [Manage Keystore](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#manage-keystore), [Ethereum Address](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#ethereum-address), [Get Balance](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#get-balance)
22+
- **Transactions Operations -** [Prepare Transaction](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#prepare-transaction), [Send Transaction](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#send-transaction), [Get gas price](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#transaction-gasprice), [Serialize & deserialize transactions](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#serialize-deserialize-transactions), [Get result](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#get-result)
23+
- **Chain State -** [Get Block number](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#get-block-number), [Get gas price](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/Usage.md#block-gasprice)
2424
- [Example Project](#example-project)
2525
- [Credits](#credits)
2626
- [Donations](#donations)
@@ -37,10 +37,10 @@ The work for 2.0 release is about to start. Ideas for new more Swift idiomatic A
3737
- [x] Local keystore management (`geth` compatible)
3838
- [x] Batched requests in concurrent mode
3939
- [x] Literally following the standards:
40-
- [x] [BIP32](https://github.com/bitcoin/bips/blob/master/bip-0032.mediawiki) HD Wallets: Deterministic Wallet
41-
- [x] [BIP39](https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki) (Seed phrases)
42-
- [x] [BIP44](https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki) (Key generation prefixes)
43-
- [x] [EIP-155](https://github.com/ethereum/EIPs/blob/master/EIPS/eip-155.md) (Replay attacks protection) *enforced!*
40+
- [x] [BIP32](https://github.com/bitcoin/bips/blob/feature/readmeImprovement/bip-0032.mediawiki) HD Wallets: Deterministic Wallet
41+
- [x] [BIP39](https://github.com/bitcoin/bips/blob/feature/readmeImprovement/bip-0039.mediawiki) (Seed phrases)
42+
- [x] [BIP44](https://github.com/bitcoin/bips/blob/feature/readmeImprovement/bip-0044.mediawiki) (Key generation prefixes)
43+
- [x] [EIP-155](https://github.com/ethereum/EIPs/blob/feature/readmeImprovement/EIPS/eip-155.md) (Replay attacks protection) *enforced!*
4444
- [x] Comprehensive Unit and Integration Test Coverage
4545
- [x] [Complete Documentation](https://web3swift.github.io/web3swift)
4646

@@ -59,7 +59,7 @@ The work for 2.0 release is about to start. Ideas for new more Swift idiomatic A
5959

6060
## Migration Guides
6161

62-
- [web3swift 2.0 Migration Guide](https://github.com/matterinc/web3swift/blob/master/Documentation/web3swift%202.0%20Migration%20Guide.md)
62+
- [web3swift 2.0 Migration Guide](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/Documentation/web3swift%202.0%20Migration%20Guide.md)
6363

6464
## Communication
6565

@@ -151,4 +151,4 @@ If you use any of our libraries for work, see if your employers would be interes
151151

152152
## License
153153

154-
web3swift is available under the Apache License 2.0 license. See the [LICENSE](https://github.com/matterinc/web3swift/blob/master/LICENSE) for details.
154+
web3swift is available under the Apache License 2.0 license. See the [LICENSE](https://github.com/matterinc/web3swift/blob/feature/readmeImprovement/LICENSE) for details.

0 commit comments

Comments
 (0)