Skip to content

Commit 6deb92b

Browse files
committed
Merge branch 'master' into develop
2 parents e94f2e1 + 8e539cf commit 6deb92b

File tree

6 files changed

+23
-15
lines changed

6 files changed

+23
-15
lines changed

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## Important notice:
2+
### This library will not be actively updated by its owners in the nearest future.
3+
> Hello everyone, I, Anton Grigorev, was the main contributor to this library for a while. However, since June I am too immersed in other projects and cannot actively support this library. I sincerely apologize if this negatively affected your work. If web3swift is important to you and you want to help develop it, **I will be happy to review and accept your PRs**.
4+
5+
> *Sincerely,*
6+
> *Anton Grigorev (@baldyash)*
7+
18
![matter-github-swift](https://github.com/matter-labs/web3swift/blob/develop/web3swift-logo.png)
29

310
# web3swift
@@ -59,6 +66,7 @@ If you are using this library in your project, please [add a link](https://githu
5966
* [AlphaWallet](https://github.com/AlphaWallet/alpha-wallet-ios)
6067
* [Follow_iOS](https://github.com/FollowInc/Follow_iOS)
6168
* [Biomedical Data Sharing dApp - Geolocation](https://github.com/HD2i/Geolocation-iOS)
69+
* [Alice Wallet](https://github.com/alicedapp/AliceX)
6270
* [YOUR APP CAN BE THERE (click me)](https://github.com/matter-labs/web3swift/edit/develop/README.md) :wink:
6371

6472
*Nothing makes developers happier than seeing someone else use our work and go wild with it.*

Sources/web3swift/EthereumAddress/Extensions.swift

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ import Foundation
1010

1111
extension Array where Element == UInt8 {
1212
init(hex: String) {
13-
self.init(reserveCapacity: hex.unicodeScalars.lazy.underestimatedCount)
13+
self.init()
14+
self.reserveCapacity(hex.unicodeScalars.lazy.underestimatedCount)
1415
var buffer: UInt8?
1516
var skip = hex.hasPrefix("0x") ? 2 : 0
1617
for char in hex.unicodeScalars.lazy {

0 commit comments

Comments
 (0)