From 8ca33e700ed8de6137a0e1471017aa3b3c8de0db Mon Sep 17 00:00:00 2001 From: Miguel Angel Quinones Date: Fri, 24 Mar 2023 15:15:14 +0100 Subject: [PATCH] [UPDATE] 1.6.0 --- README.md | 8 ++++++++ web3.swift.podspec | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 55552880..b8f6b1d3 100644 --- a/README.md +++ b/README.md @@ -162,6 +162,14 @@ We support querying ERC721 token data via the `ERC721` struct. Including: - Retrieve `Transfer` events - Decode standard JSON for NFT metadata. Please be aware some smart contracts are not 100% compliant with standard. + +### ZKSync Era + +We also include additional helpers to interact with [ZKSync Era](https://zksync.io/), by importing `web3_zksync`. + +Take a look at [ZKSyncTransaction](https://github.com/argentlabs/web3.swift/blob/develop/web3swift/src/ZKSync/ZKSyncTransaction.swift) or use directly +[ZKSyncClient](https://github.com/argentlabs/web3.swift/blob/develop/web3swift/src/ZKSync/ZKSyncProvider.swift) which has similar API as the `EthereumClient` + ### Running Tests Some of the tests require a private key, which is not stored in the repository. You can ignore these while testing locally, as CI will use the encrypted secret key from Github. diff --git a/web3.swift.podspec b/web3.swift.podspec index e0792243..fbaa85d7 100644 --- a/web3.swift.podspec +++ b/web3.swift.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'web3.swift' - s.version = '1.5.1' + s.version = '1.6.0' s.license = 'MIT' s.summary = 'Ethereum API for Swift' s.homepage = 'https://github.com/argentlabs/web3.swift'