Skip to content

Commit

Permalink
Fix Cocoapods
Browse files Browse the repository at this point in the history
  • Loading branch information
radeknovis committed Feb 1, 2024
1 parent 9369f9f commit 3952a3b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
6 changes: 4 additions & 2 deletions Sources/Web3Modal/Core/Web3ModalClient.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
import CoinbaseWalletSDK
import class CoinbaseWalletSDK.CoinbaseWalletSDK
import struct CoinbaseWalletSDK.Action
import struct CoinbaseWalletSDK.ActionError
import Combine
import Foundation
import UIKit
Expand Down Expand Up @@ -244,7 +246,7 @@ public class Web3ModalClient {
/// For sending JSON-RPC requests to wallet.
/// - Parameters:
/// - params: Parameters defining request and related session
public func request(params: WalletConnectSign.Request) async throws {
public func request(params: Request) async throws {
do {
try await signClient.request(params: params)
} catch {
Expand Down
1 change: 1 addition & 0 deletions Web3Modal.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ Pod::Spec.new do |spec|
ss.dependency 'Web3Modal/Web3ModalBackport'
ss.dependency 'WalletConnectSwiftV2/WalletConnectSign', '~> 1.9.0'
ss.dependency 'DSF_QRCode', '~> 16.1.1'
ss.dependency 'CoinbaseWalletSDK', '~> 1.0.4'
ss.resource_bundles = { 'Web3Modal' => ['Sources/Web3Modal/Resources/*'] }
end

Expand Down

0 comments on commit 3952a3b

Please sign in to comment.