From 71ab1c17ae52af861cae994669ffe6342bfca516 Mon Sep 17 00:00:00 2001 From: sergeypanin1994 Date: Fri, 17 Jan 2025 23:07:38 +0300 Subject: [PATCH 1/2] fix: update Twitter URL to x.com format Replaced the outdated Twitter URL (https://twitter.com) with the updated x.com format (https://x.com) to align with the platform's rebranding. --- FCL-SDK.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FCL-SDK.podspec b/FCL-SDK.podspec index e5d6109..513468a 100644 --- a/FCL-SDK.podspec +++ b/FCL-SDK.podspec @@ -7,7 +7,7 @@ Pod::Spec.new do |s| s.license = { :type => 'MIT', :file => 'LICENSE' } s.author = { 'Dawson' => 'dawson@portto.com', 'Scott' => 'scott@portto.com' } s.source = { :git => 'https://github.com/portto/fcl-swift.git', :tag => s.version.to_s } - s.social_media_url = 'https://twitter.com/BloctoApp' + s.social_media_url = 'https://x.com/BloctoApp' s.swift_version = '5.0.0' s.ios.deployment_target = '13.0' From 04c9ca18ce63494145d2a50b44fdd9a913c1f9ef Mon Sep 17 00:00:00 2001 From: sergeypanin1994 Date: Fri, 17 Jan 2025 23:09:01 +0300 Subject: [PATCH 2/2] Fix typo: "walllet" to "wallet" --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d5b00bd..b7c2384 100644 --- a/README.md +++ b/README.md @@ -279,7 +279,7 @@ Task { - Declare a wallet provider type and conform the protocol [WalletProvider](./Sources/FCL-SDK/WalletProvider/WalletProvider.swift). - If building a wallet involve back channel communication, read the [wallet guide](https://github.com/onflow/fcl-js/blob/master/packages/fcl/src/wallet-provider-spec/draft-v3.md) first to build the concept of the implementation and use method from `WalletProvider` to fulfill your business logic. -Every walllet provider can use below property from `WalletProvider` to customize icon, title and description. Those info will be shown [here](#wallet-selection). +Every wallet provider can use below property from `WalletProvider` to customize icon, title and description. Those info will be shown [here](#wallet-selection). ``` var providerInfo: ProviderInfo { get } ```