Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ca execute #91

Merged
merged 12 commits into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 @@ -270,15 +270,6 @@
"revision": "4232d34efa49f633ba61afde365d3896fc7f8740",
"version": "2.15.0"
}
},
{
"package": "Yttrium",
"repositoryURL": "https://github.com/reown-com/yttrium",
"state": {
"branch": null,
"revision": "eddb36e023a8862c464f55977d3a699ecaa03a55",
"version": "0.7.0"
}
}
]
},
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
Loading