From 65d4b1f8432bd4a8963be9bbe2ee71a2010cc674 Mon Sep 17 00:00:00 2001 From: Jenea Vranceanu Date: Tue, 9 Jan 2024 11:29:03 +0200 Subject: [PATCH 1/8] chore: removed CocoaPods --- CONTRIBUTION.md | 2 -- README.md | 27 +------------------ .../Web3Core/Utility/BigUInt+Extension.swift | 6 ----- Web3Core.podspec | 19 ------------- web3swift.podspec | 22 --------------- 5 files changed, 1 insertion(+), 75 deletions(-) delete mode 100644 Web3Core.podspec delete mode 100755 web3swift.podspec diff --git a/CONTRIBUTION.md b/CONTRIBUTION.md index be8daa9de..0f541e210 100644 --- a/CONTRIBUTION.md +++ b/CONTRIBUTION.md @@ -35,8 +35,6 @@ In ci/cd we’re using Xcode test plans feature to spread tests to local and rem Please add any files unused due build process to `excludeFiles` array in `Package.swift`. ### Carthage Please do not forget to add & remove all new or dropped files and dependencies in carthage `.xcodeproj` file if you’re working with project anywhere but carthage project. -### Cocoapods -Please do not forget to add & remove all dependencies within `web3swift.podspec` file. ### GitHub actions You’re able to use our github actions checks in your fork without needing to make PR to this repo. To get that just add your branch name to the branch list in file on path `.github/actions/ci.yml` to let the magic happening like follow: diff --git a/README.md b/README.md index e9a55bb90..9089eb182 100755 --- a/README.md +++ b/README.md @@ -7,8 +7,6 @@ ![matter-github-swift](https://github.com/web3swift-team/web3swift/blob/develop/web3swift-logo.png) [![Web3swift CI](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-12.yml/badge.svg)](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-12.yml) [![Swift](https://img.shields.io/badge/Swift-5.4-orange.svg?style=flat)](https://developer.apple.com/swift/) -[![Platform](https://img.shields.io/cocoapods/p/web3swift?style=flat)](http://cocoapods.org/pods/web3swift) -[![CocoaPods Compatible](https://img.shields.io/cocoapods/v/web3swift?style=flat)](http://cocoapods.org/pods/web3swift) [![License](https://img.shields.io/cocoapods/l/web3swift.svg?style=flat)](https://github.com/web3swift-team/web3swift/blob/master/LICENSE.md) [![support](https://brianmacdonald.github.io/Ethonate/svg/eth-support-blue.svg)](https://brianmacdonald.github.io/Ethonate/address#0xe22b8979739d724343bd002f9f432f5990879901) [![Stackoverflow](https://img.shields.io/badge/stackoverflow-ask-blue.svg)](https://stackoverflow.com/questions/tagged/web3swift) @@ -89,30 +87,7 @@ import Web3Core ### CocoaPods -[CocoaPods](http://cocoapods.org) is a dependency manager for Cocoa projects. You can install it with the following command: - -```bash -$ sudo gem install cocoapods -``` - -To integrate web3swift into your Xcode project using CocoaPods, specify it in your `Podfile`: - -```ruby -source 'https://github.com/CocoaPods/Specs.git' -platform :ios, '13.0' - -target '' do - use_frameworks! - pod 'web3swift' -end -``` - -Then, run the following command: -```bash -$ pod install -``` - -> **WARNING**: CocoaPods is a powerful tool for managing dependencies in iOS development, but it also has some limitations that preventing us of providing first class support there. We highly recommend using SPM first as using CocoaPods will delay new updates and bug fixes being delivered to you. +CocoaPods is not supported. ### Send Ether ```swift diff --git a/Sources/Web3Core/Utility/BigUInt+Extension.swift b/Sources/Web3Core/Utility/BigUInt+Extension.swift index 6144b6247..9617ab680 100755 --- a/Sources/Web3Core/Utility/BigUInt+Extension.swift +++ b/Sources/Web3Core/Utility/BigUInt+Extension.swift @@ -13,9 +13,3 @@ public extension BigUInt { self = value } } - -#if COCOAPODS -extension BigUInt { - var isZero: Bool { self == 0 } -} -#endif diff --git a/Web3Core.podspec b/Web3Core.podspec deleted file mode 100644 index 0da2cabc9..000000000 --- a/Web3Core.podspec +++ /dev/null @@ -1,19 +0,0 @@ -Pod::Spec.new do |spec| - spec.compiler_flags = '-DCOCOAPODS' - - spec.name = 'Web3Core' - spec.version = '3.1.1' - spec.ios.deployment_target = "13.0" - spec.osx.deployment_target = "10.15" - spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE.md' } - spec.summary = 'Core of web3swift library' - spec.homepage = 'https://github.com/web3swift-team/web3swift' - spec.author = {"Alex Vlasov" => "alex.m.vlasov@gmail.com", "Anton Grigorev" => "antongrigorjev2010@gmail.com", "Petr Korolev" => "sky4winder@gmail.com", "Yaroslav Yashin" => "yaroslav.yashin@gmail.com"} - spec.source = { :git => 'https://github.com/web3swift-team/web3swift.git', :tag => spec.version.to_s } - spec.swift_version = '5.5' - - spec.dependency 'secp256k1.c', '~> 0.1' - spec.dependency 'BigInt', '~> 5.2.0' # no newer version in pods. - spec.dependency 'CryptoSwift', '~> 1.5.1' - spec.source_files = "Sources/Web3Core/**/*.swift" -end diff --git a/web3swift.podspec b/web3swift.podspec deleted file mode 100755 index 50da01f53..000000000 --- a/web3swift.podspec +++ /dev/null @@ -1,22 +0,0 @@ -WEB3CORE_VERSION ||= '3.1.1' - -Pod::Spec.new do |spec| - spec.name = 'web3swift' - spec.version = WEB3CORE_VERSION - spec.ios.deployment_target = "13.0" - spec.osx.deployment_target = "10.15" - spec.license = { :type => 'Apache License 2.0', :file => 'LICENSE.md' } - spec.summary = 'Web3 implementation in vanilla Swift for iOS, macOS, and Linux' - spec.homepage = 'https://github.com/web3swift-team/web3swift' - spec.author = {"Alex Vlasov" => "alex.m.vlasov@gmail.com", "Anton Grigorev" => "antongrigorjev2010@gmail.com", "Petr Korolev" => "sky4winder@gmail.com", "Yaroslav Yashin" => "yaroslav.yashin@gmail.com"} - spec.source = { :git => 'https://github.com/web3swift-team/web3swift.git', :tag => spec.version.to_s } - spec.swift_version = '5.5' - - # Make this line same as Web3Core sources - spec.source_files = "Sources/web3swift/**/*.swift" - spec.ios.source_files = 'Sources/web3swift/Browser/*.swift' - spec.resource_bundle = { "Browser" => "Sources/web3swift/Browser/*.js" } - spec.frameworks = 'CoreImage' - spec.dependency 'Starscream', '~> 4.0.4' - spec.dependency 'Web3Core', "~> #{WEB3CORE_VERSION}" -end From d5db0f4af693060abaa31320fed124239137f6c6 Mon Sep 17 00:00:00 2001 From: Jenea Vranceanu Date: Tue, 9 Jan 2024 11:35:11 +0200 Subject: [PATCH 2/8] chore: removing cocoapods support --- .github/workflows/macOS-tests.yml | 1 - .gitignore | 12 +++++------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/.github/workflows/macOS-tests.yml b/.github/workflows/macOS-tests.yml index 3e3bafb6f..77bc06b23 100644 --- a/.github/workflows/macOS-tests.yml +++ b/.github/workflows/macOS-tests.yml @@ -8,7 +8,6 @@ on: - hotfix paths: - Packag*.swift - - web3swift.podspec - Cartfile - Sources/** - 'Tests/**' diff --git a/.gitignore b/.gitignore index 2dd3e0601..7d4533d53 100755 --- a/.gitignore +++ b/.gitignore @@ -43,13 +43,11 @@ Package.pins */.swiftpm/** Package.resolved -# CocoaPods -# -# We recommend against adding the Pods directory to your .gitignore. However -# you should judge for yourself, the pros and cons are mentioned at: -# https://guides.cocoapods.org/using/using-cocoapods.html#should-i-check-the-pods-directory-into-source-control -# -Example/**/Pods +# Pods +Pods/ +Podfile +Podfile.lock +*.podspec # Carthage # From 4135fcb042772808ff3f1ae7339254d780c498bc Mon Sep 17 00:00:00 2001 From: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> Date: Wed, 7 Feb 2024 17:44:07 +0200 Subject: [PATCH 3/8] chore: fixed linked to workflow file Signed-off-by: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c457236bd..e99a5890d 100755 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ [Join our discord](https://discord.gg/8bHCNmhS7x) or [Telegram](https://t.me/web3swift) if you need support or want to contribute to web3swift development! ![matter-github-swift](https://github.com/web3swift-team/web3swift/blob/develop/web3swift-logo.png) -[![Web3swift CI](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-12.yml/badge.svg)](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-12.yml) +[![Web3swift CI](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-tests.yml/badge.svg)](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-tests.yml) [![Swift](https://img.shields.io/badge/Swift-5.4-orange.svg?style=flat)](https://developer.apple.com/swift/) [![License](https://img.shields.io/cocoapods/l/web3swift.svg?style=flat)](https://github.com/web3swift-team/web3swift/blob/master/LICENSE.md) [![support](https://brianmacdonald.github.io/Ethonate/svg/eth-support-blue.svg)](https://brianmacdonald.github.io/Ethonate/address#0xe22b8979739d724343bd002f9f432f5990879901) From 2a581f1a18ddfe7c1000a87cc22cd5907df392ed Mon Sep 17 00:00:00 2001 From: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> Date: Wed, 7 Feb 2024 17:54:51 +0200 Subject: [PATCH 4/8] chore: swift badge colour change Signed-off-by: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e99a5890d..1771b0f66 100755 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ ![matter-github-swift](https://github.com/web3swift-team/web3swift/blob/develop/web3swift-logo.png) [![Web3swift CI](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-tests.yml/badge.svg)](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-tests.yml) -[![Swift](https://img.shields.io/badge/Swift-5.4-orange.svg?style=flat)](https://developer.apple.com/swift/) +[![Swift](https://img.shields.io/badge/Swift-5.5-f26118.svg?style=flat)](https://developer.apple.com/swift/) [![License](https://img.shields.io/cocoapods/l/web3swift.svg?style=flat)](https://github.com/web3swift-team/web3swift/blob/master/LICENSE.md) [![support](https://brianmacdonald.github.io/Ethonate/svg/eth-support-blue.svg)](https://brianmacdonald.github.io/Ethonate/address#0xe22b8979739d724343bd002f9f432f5990879901) [![Stackoverflow](https://img.shields.io/badge/stackoverflow-ask-blue.svg)](https://stackoverflow.com/questions/tagged/web3swift) From dbf1fc383eef7756e55313d83ae31ca4af0e83c2 Mon Sep 17 00:00:00 2001 From: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:46:28 +0200 Subject: [PATCH 5/8] chore: added more examples to README.md Signed-off-by: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> --- README.md | 43 ++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 1771b0f66..7d3aedb51 100755 --- a/README.md +++ b/README.md @@ -20,6 +20,8 @@ - [Swift Package](#swift-package) - [CocoaPods](#cocoapods) - [Example usage](#example-usage) + - [Create Web3 Provider](#create-web3-provider) + - [Create Web3 Object](#create-web3-object) - [Send Ether](#send-ether) - [Contract read method](#contract-read-method) - [Write Transaction and call smart contract method](#write-transaction-and-call-smart-contract-method) @@ -64,7 +66,7 @@ ## Installation -### Swift Package (Recommended) +### Swift Package The [Swift Package Manager](https://swift.org/package-manager/ "") is a tool for automating the distribution of Swift code that is well integrated with Swift build system. Once you have your Swift package set up, adding `web3swift` as a dependency is as easy as adding it to the `dependencies` value of your `Package.swift`. @@ -89,6 +91,44 @@ import Web3Core CocoaPods is not supported. +### Create Web3 Provider +Currently web3swift supports only HTTP provider. WebSocket provider support was removed and is planned to be rebuilt from scratch. +To create a Web3HttpProvider you only need an RPC URL: +```swift +try await Web3HttpProvider(url: yourRpcUrl) +``` + +But if you know chain ID upfront it's better to specify one as well as with chain ID initializer won't have to ask the RPC for it and thus you guarantee that initializer completes successfully without any asynchronous calls, considering your URL starts uses `http/s` scheme: +```swift +let optionalChainId: Networks = .Custom(networkID: 42) +try await Web3HttpProvider(url: rpcUrl, network: optionalChainId) +``` + +Specify keystore for the Web3HttpProvider if you want `web3.personal` namespace to work as it relies on the keystore and password: +```swift +try await Web3HttpProvider(url: rpcUrl, network: optionalChainId, keystoreManager: optionalKeystoreManager) +``` + +### Create Web3 Object +Creating Web3 object is quite simple once you have a Web3 HTTP provider: +```swift +Web3(provider: provider) +``` + +Or if you are a user of Infura: +```swift +try await Web3.InfuraMainnetWeb3(accessToken: optionalInfuraToken) +try await Web3.InfuraGoerliWeb3(accessToken: optionalInfuraToken) +``` + +If you have a URL or you are using Infura you can use the following: +```swift +try await Web3.new(url, network: chainIdHere) +// or +let web3 = try await Web3.InfuraMainnetWeb3(accessToken: optionalInfuraToken) +let web3 = try await Web3.InfuraGoerliWeb3(accessToken: optionalGoerliToken) +``` + ### Send Ether ```swift let transaction: CodableTransaction = .emptyTransaction @@ -127,6 +167,7 @@ func feeHistory(blockCount: UInt, block: BlockNumber, percentiles:[Double]) asyn return response.result } ``` + ## Build from source ### SPM ```bash From 116eb21352fb6e6e79b717a4ecd27187a6707ecb Mon Sep 17 00:00:00 2001 From: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:54:28 +0200 Subject: [PATCH 6/8] chore: rephrasing, fixed typos README.md Signed-off-by: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> --- README.md | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7d3aedb51..a89c39de4 100755 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ -- [Core features](#core-features) +- [Core Features](#core-features) - [Installation](#installation) - [Swift Package](#swift-package) - [CocoaPods](#cocoapods) @@ -48,11 +48,11 @@ - [x] :thought_balloon: Interaction with remote node via **JSON RPC** - [x] 🔐 Local **keystore management** (`geth` compatible) - [x] 🤖 Smart-contract **ABI parsing** -- [x] 🔓**ABI decoding** (V2 is supported with return of structures from public functions. Part of 0.4.22 Solidity compiler) +- [x] 🔓**ABI decoding** (V2 is supported with a return of structures from public functions. Part of 0.4.22 Solidity compiler) - [x] 🕸Ethereum Name Service **(ENS) support** - a secure & decentralised way to address resources both on and off the blockchain using simple, human-readable names - [x] :arrows_counterclockwise: **Smart contracts interactions** (read/write) - [x] ⛩ **Infura support** -- [x] ⚒ **Parsing TxPool** content into native values (ethereum addresses and transactions) - easy to get pending transactions +- [x] ⚒ **Parsing TxPool** content into native values (Ethereum addresses and transactions) - easy to get pending transactions - [x] 🖇 **Event loops** functionality - [x] 🕵️‍♂️ Possibility to **add or remove "middleware" that intercepts**, modifies and even **cancel transaction** workflow on stages "before assembly", "after assembly" and "before submission" - [x] ✅**Literally following the standards** (BIP, EIP, etc): @@ -92,25 +92,25 @@ import Web3Core CocoaPods is not supported. ### Create Web3 Provider -Currently web3swift supports only HTTP provider. WebSocket provider support was removed and is planned to be rebuilt from scratch. +Currently, web3swift supports only HTTP providers. WebSocket provider support was removed and is planned to be rebuilt from scratch. To create a Web3HttpProvider you only need an RPC URL: ```swift try await Web3HttpProvider(url: yourRpcUrl) ``` -But if you know chain ID upfront it's better to specify one as well as with chain ID initializer won't have to ask the RPC for it and thus you guarantee that initializer completes successfully without any asynchronous calls, considering your URL starts uses `http/s` scheme: +But if you know chain ID upfront it's better to specify one as well as with chain ID, the initializer won't have to ask the RPC for it and thus you guarantee that the initializer completes successfully without any asynchronous calls, considering your URL using `http/s` scheme: ```swift let optionalChainId: Networks = .Custom(networkID: 42) try await Web3HttpProvider(url: rpcUrl, network: optionalChainId) ``` -Specify keystore for the Web3HttpProvider if you want `web3.personal` namespace to work as it relies on the keystore and password: +Specify a keystore manager for the Web3HttpProvider if you want `web3.personal` namespace to work as it relies on the keystore and password: ```swift try await Web3HttpProvider(url: rpcUrl, network: optionalChainId, keystoreManager: optionalKeystoreManager) ``` ### Create Web3 Object -Creating Web3 object is quite simple once you have a Web3 HTTP provider: +Creating a Web3 object is quite simple once you have a Web3 HTTP provider: ```swift Web3(provider: provider) ``` @@ -182,7 +182,7 @@ swift build - Swift 5.5 ## Documentation -Documentation is under construction👷🏻👷🏼‍♀️. We’re trying our best to comment all public API as detailed as we can, but the end it still far to come. But in one of the nearest minor updates we’ll bring DocC support of already done amount of docs. And your PR in such are more than welcome. +Documentation is under construction👷🏻👷🏼‍♀️. We’re trying our best to comment on all public APIs as detailed as possible, but the end is still far to come. But in one of the nearest minor updates we’ll bring DocC support of already done amount of docs. And your PR in such are more than welcome. ## Projects that are using web3swift Please take a look at [Our customers](https://github.com/web3swift-team/web3swift/wiki/Our-Customers) wiki page. @@ -196,7 +196,7 @@ Please take a look at [Our customers](https://github.com/web3swift-team/web3swif - If you **found a bug**, [open an issue](https://github.com/web3swift-team/web3swift/issues). ## Development -To do local development and run the local tests, we recommend to use [ganache](https://github.com/trufflesuite/ganache) which is also used by CI when running github actions. +To do local development and run the local tests, we recommend using [ganache](https://github.com/trufflesuite/ganache) which is also used by CI when running GitHub actions. ```cli // To install @@ -211,24 +211,24 @@ Make sure that `ganache` is running on its default port `8546`. To change the po ### Before you commit -We are using [pre-commit](https://pre-commit.com) to run validations locally before a commit is created. Please, install pre-commit and run `pre-commit install` from project's root directory. After that before every commit git hook will run and execute `codespell`, `swiftlint` and other checks. +We are using [pre-commit](https://pre-commit.com) to run validations locally before a commit is created. Please, install pre-commit and run `pre-commit install` from the project's root directory. After that before every commit git hook will run and execute `codespell`, `swiftlint` and other checks. ## Contribute Want to improve? It's awesome: -Then good news for you: **We are ready to pay for your contribution via [@gitcoin bot](https://gitcoin.co/grants/358/web3swift)!** +The good news for you: **We are ready to pay for your contribution via [@gitcoin bot](https://gitcoin.co/grants/358/web3swift)!** - If you **have a feature request**, [open an issue](https://github.com/web3swift-team/web3swift/issues). - If you **want to contribute**, [submit a pull request](https://github.com/web3swift-team/web3swift/pulls). ### Contribution -1. You are more than welcome to participate and get bounty by contributing! **Your contribution will be paid via [@gitcoin Grant program](https://gitcoin.co/grants/358/web3swift).** +1. You are more than welcome to participate and get a bounty by contributing! **Your contribution will be paid via [@gitcoin Grant program](https://gitcoin.co/grants/358/web3swift).** 2. Find or create an [issue](https://github.com/web3swift-team/web3swift/issues) 3. You can find open bounties in [Gitcoin Bounties](https://gitcoin.co/explorer?applicants=ALL&keywords=web3swift&order_by=-web3_created) list -4. Commita fix or a new feature in branch, push your changes +4. Commita fix or a new feature in a branch, push your changes 5. [Submit a pull request to **develop** branch](https://github.com/web3swift-team/web3swift/pulls) - 1. Please, provide detailed description to it to help us proceed it faster. + 1. Please, provide a detailed description of it to help us proceed faster. -[@skywinder](https://github.com/skywinder) are charged with open-sourсe and do not require money for using web3swift library. +[@skywinder](https://github.com/skywinder) are charged with open-sourсe and do not require money to use the web3swift library. We want to continue to do everything we can to move the needle forward. - **Support us** via [@gitcoin Grant program](https://gitcoin.co/grants/358/web3swift) From 6553e71f609ed3f26e418f3998e5c85218ab2dfa Mon Sep 17 00:00:00 2001 From: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:56:15 +0200 Subject: [PATCH 7/8] chore: Update README.md Signed-off-by: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index a89c39de4..163c0d36a 100755 --- a/README.md +++ b/README.md @@ -95,7 +95,7 @@ CocoaPods is not supported. Currently, web3swift supports only HTTP providers. WebSocket provider support was removed and is planned to be rebuilt from scratch. To create a Web3HttpProvider you only need an RPC URL: ```swift -try await Web3HttpProvider(url: yourRpcUrl) +try await Web3HttpProvider(url: rpcUrl) ``` But if you know chain ID upfront it's better to specify one as well as with chain ID, the initializer won't have to ask the RPC for it and thus you guarantee that the initializer completes successfully without any asynchronous calls, considering your URL using `http/s` scheme: @@ -104,7 +104,7 @@ let optionalChainId: Networks = .Custom(networkID: 42) try await Web3HttpProvider(url: rpcUrl, network: optionalChainId) ``` -Specify a keystore manager for the Web3HttpProvider if you want `web3.personal` namespace to work as it relies on the keystore and password: +Specify a keystore manager for the Web3HttpProvider if you want `web3.personal` namespace to work as it relies on use of the keystore: ```swift try await Web3HttpProvider(url: rpcUrl, network: optionalChainId, keystoreManager: optionalKeystoreManager) ``` From 4f74eb7704c93cdd57e9b369e4815e6ef8162805 Mon Sep 17 00:00:00 2001 From: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> Date: Wed, 7 Feb 2024 18:57:43 +0200 Subject: [PATCH 8/8] chore: hiding support badge in README.md Signed-off-by: Jenea Vranceanu <36865532+JeneaVranceanu@users.noreply.github.com> --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 163c0d36a..66b8accaf 100755 --- a/README.md +++ b/README.md @@ -8,8 +8,8 @@ [![Web3swift CI](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-tests.yml/badge.svg)](https://github.com/web3swift-team/web3swift/actions/workflows/macOS-tests.yml) [![Swift](https://img.shields.io/badge/Swift-5.5-f26118.svg?style=flat)](https://developer.apple.com/swift/) [![License](https://img.shields.io/cocoapods/l/web3swift.svg?style=flat)](https://github.com/web3swift-team/web3swift/blob/master/LICENSE.md) -[![support](https://brianmacdonald.github.io/Ethonate/svg/eth-support-blue.svg)](https://brianmacdonald.github.io/Ethonate/address#0xe22b8979739d724343bd002f9f432f5990879901) [![Stackoverflow](https://img.shields.io/badge/stackoverflow-ask-blue.svg)](https://stackoverflow.com/questions/tagged/web3swift) + ---