Skip to content

Commit

Permalink
Merge pull request #66 from reown-com/develop
Browse files Browse the repository at this point in the history
1.1.1
  • Loading branch information
llbartekll authored Dec 9, 2024
2 parents b8279b7 + 7b01ba8 commit b51cc1d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Sources/ReownAppKit/Core/W3MAPIInteractor.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ final class W3MAPIInteractor: ObservableObject {
projectId: AppKit.config.projectId,
metadata: AppKit.config.metadata,
recommendedIds: AppKit.config.recommendedWalletIds,
excludedIds: AppKit.config.excludedWalletIds
exclude: AppKit.config.excludedWalletIds
)

let httpClient = HTTPNetworkClient(host: "api.web3modal.com")
Expand Down Expand Up @@ -114,7 +114,7 @@ final class W3MAPIInteractor: ObservableObject {
projectId: AppKit.config.projectId,
metadata: AppKit.config.metadata,
recommendedIds: AppKit.config.recommendedWalletIds,
excludedIds: AppKit.config.excludedWalletIds
exclude: AppKit.config.excludedWalletIds
)
)
)
Expand Down
4 changes: 2 additions & 2 deletions Sources/ReownAppKit/Networking/Web3ModalAPI.swift
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ enum Web3ModalAPI: HTTPService {
let projectId: String
let metadata: AppMetadata
let recommendedIds: [String]
let excludedIds: [String]
let exclude: [String]
}

struct GetIosDataParams {
Expand Down Expand Up @@ -45,7 +45,7 @@ enum Web3ModalAPI: HTTPService {
"entries": "\(params.entries)",
"search": params.search ?? "",
"recommendedIds": params.recommendedIds.joined(separator: ","),
"excludedIds": params.excludedIds.joined(separator: ","),
"exclude": params.exclude.joined(separator: ","),
"platform": "ios",
]
.compactMapValues { value in
Expand Down
2 changes: 1 addition & 1 deletion Sources/WalletConnectRelay/PackageConfig.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"version": "1.1.0"}
{"version": "1.1.1"}

0 comments on commit b51cc1d

Please sign in to comment.