Skip to content

Commit

Permalink
Merge pull request #94 from reown-com/develop
Browse files Browse the repository at this point in the history
1.4.0
  • Loading branch information
llbartekll authored Feb 17, 2025
2 parents cee5f8f + d645099 commit 0bfb116
Show file tree
Hide file tree
Showing 18 changed files with 168 additions and 551 deletions.
4 changes: 0 additions & 4 deletions Example/ExampleApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,6 @@
84D88C7F2CE751E7003A6C16 /* CATransactionView.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84D88C7E2CE751E7003A6C16 /* CATransactionView.swift */; };
84D88C822CE7525F003A6C16 /* CATransactionPresenter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84D88C812CE7525F003A6C16 /* CATransactionPresenter.swift */; };
84D88C842CE754CC003A6C16 /* CATransactionModule.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84D88C832CE754CC003A6C16 /* CATransactionModule.swift */; };
84D88C862CECC2C5003A6C16 /* ChainAbstractionService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84D88C852CECC2C5003A6C16 /* ChainAbstractionService.swift */; };
84D88C8A2CF075E9003A6C16 /* CATransactionRouter.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84D88C892CF075E9003A6C16 /* CATransactionRouter.swift */; };
84DB38F32983CDAE00BFEE37 /* PushRegisterer.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84DB38F22983CDAE00BFEE37 /* PushRegisterer.swift */; };
84E6B84A29787A8000428BAF /* NotificationService.swift in Sources */ = {isa = PBXBuildFile; fileRef = 84E6B84929787A8000428BAF /* NotificationService.swift */; };
Expand Down Expand Up @@ -401,7 +400,6 @@
84D88C7E2CE751E7003A6C16 /* CATransactionView.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CATransactionView.swift; sourceTree = "<group>"; };
84D88C812CE7525F003A6C16 /* CATransactionPresenter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CATransactionPresenter.swift; sourceTree = "<group>"; };
84D88C832CE754CC003A6C16 /* CATransactionModule.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CATransactionModule.swift; sourceTree = "<group>"; };
84D88C852CECC2C5003A6C16 /* ChainAbstractionService.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = ChainAbstractionService.swift; sourceTree = "<group>"; };
84D88C892CF075E9003A6C16 /* CATransactionRouter.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CATransactionRouter.swift; sourceTree = "<group>"; };
84DB38F029828A7C00BFEE37 /* WalletApp.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = WalletApp.entitlements; sourceTree = "<group>"; };
84DB38F129828A7F00BFEE37 /* PNDecryptionService.entitlements */ = {isa = PBXFileReference; lastKnownFileType = text.plist.entitlements; path = PNDecryptionService.entitlements; sourceTree = "<group>"; };
Expand Down Expand Up @@ -1057,7 +1055,6 @@
children = (
A5D610CC2AB3592F00C20083 /* ListingsSertice */,
8406AEDB2CCFB424007B758A /* WalletKitEnabler.swift */,
84D88C852CECC2C5003A6C16 /* ChainAbstractionService.swift */,
);
path = BusinessLayer;
sourceTree = "<group>";
Expand Down Expand Up @@ -2062,7 +2059,6 @@
C5B2F6F829705293000DBA0E /* SessionRequestView.swift in Sources */,
C56EE28C293F5757004840D1 /* Configurator.swift in Sources */,
C5FFEA782ADD896E007282A2 /* BrowserPresenter.swift in Sources */,
84D88C862CECC2C5003A6C16 /* ChainAbstractionService.swift in Sources */,
C55D3489295DD8CA0004314A /* PasteUriModule.swift in Sources */,
C55D3494295DFA750004314A /* WelcomePresenter.swift in Sources */,
C5B2F6F929705293000DBA0E /* SessionRequestPresenter.swift in Sources */,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@
"repositoryURL": "https://github.com/reown-com/yttrium",
"state": {
"branch": null,
"revision": "eddb36e023a8862c464f55977d3a699ecaa03a55",
"version": "0.7.0"
"revision": "f794adeeb3f24dd757a6a974be8adc1ae6cc0bc9",
"version": "0.8.22"
}
}
]
Expand Down
257 changes: 0 additions & 257 deletions Example/WalletApp/BusinessLayer/ChainAbstractionService.swift

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ final class CATransactionModule {
app: Application,
sessionRequest: Request?,
importAccount: ImportAccount,
routeResponseAvailable: PrepareResponseAvailable,
call: Call,
from: String,
chainId: Blockchain
chainId: Blockchain,
uiFields: UiFields
) -> UIViewController {
let router = CATransactionRouter(app: app)
let presenter = CATransactionPresenter(sessionRequest: sessionRequest, importAccount: importAccount, routeResponseAvailable: routeResponseAvailable, router: router, call: call, from: from, chainId: chainId)
let presenter = CATransactionPresenter(sessionRequest: sessionRequest, importAccount: importAccount, router: router, call: call, from: from, chainId: chainId, uiFields: uiFields)
let view = CATransactionView().environmentObject(presenter)
let viewController = SceneViewController(viewModel: presenter, content: view)
router.viewController = viewController
Expand Down
Loading

0 comments on commit 0bfb116

Please sign in to comment.