Skip to content

Commit

Permalink
Merge branch 'development' into dev/fix/1969-Check-new-WalletConnect
Browse files Browse the repository at this point in the history
* development:
  Added Solana to the list of supported tokens copy
  MOB-1979 - Adjusted home screen copies and numbers formatting (#504)
  MOB-1961 - Send crypto fixes (#502)
  MOB-1975 - Fixed issue when hidden crypto session could disappear (#501)
  MOB-1974 - Fixed issue when empty space wasn't clickable when select crypto row (#500)
  removed Mumbai, Goerli, Rinkby (#499)
  MOB-1961 - Use only address from domain records when sending the crypto (#497)
  MOB-1791 - Fixed incorrect pull up height (#498)
  MOB-1968 - Fixed refresh badges functionality (#494)
  MOB-1891 - Updated SDKs to cover PrivacyInfo requirement (#491)
  MOB-1967 - Fixed unblock chat functionality (#493)
  MOB-1966 - Fixed issue when chat shows empty state if user has requests only (#492)
  • Loading branch information
rommex committed Apr 17, 2024
2 parents cdc28f8 + c61b8b6 commit bc76bc3
Show file tree
Hide file tree
Showing 36 changed files with 283 additions and 529 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -173,9 +173,10 @@ extension NetworkService {
walletBalance: MockEntitiesFabric.DomainProfile.createPublicProfileWalletBalances())
}

public func refreshDomainBadges(for domain: DomainItem) async throws -> RefreshBadgesResponse {
.init(ok: true, refresh: true, next: Date())
public func refreshDomainBadges(for domain: DomainItem) async throws {

}

public func fetchBadgesInfo(for domain: DomainItem) async throws -> BadgesInfo {
try await fetchBadgesInfo(for: domain.name)
}
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ extension MockEntitiesFabric {
}

static func createPublicDomainMetadata(domain: String, walletAddress: String) -> PublicDomainProfileMetaData {
PublicDomainProfileMetaData(domain: domain, blockchain: "MATIC", networkId: 80001, owner: walletAddress)
PublicDomainProfileMetaData(domain: domain, blockchain: "MATIC", networkId: BlockchainType.Matic.supportedChainId(env: .testnet), owner: walletAddress)
}

static func createPublicProfileAttributes(displayName: String = "Oleg Kuplin",
Expand Down
Loading

0 comments on commit bc76bc3

Please sign in to comment.