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

Added Flutter sample wallets #1399

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Changes from 1 commit
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
18 changes: 18 additions & 0 deletions Example/DApp/SceneDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
mobileLink: "walletapp://",
linkMode: "https://lab.web3modal.com/wallet"
),
.init(

Check failure on line 121 in Example/DApp/SceneDelegate.swift

View workflow job for this annotation

GitHub Actions / prepare

'init' is a member of the type; use assignment to initialize the value instead
id: "rn-sample",
name: "RN Sample Wallet",
homepage: "https://walletconnect.com/",
Expand All @@ -127,6 +127,24 @@
mobileLink: "rn-web3wallet://",
linkMode: "https://lab.web3modal.com/walletkit_rn"
)
.init(

Check failure on line 130 in Example/DApp/SceneDelegate.swift

View workflow job for this annotation

GitHub Actions / prepare

'init' is a member of the type; use assignment to initialize the value instead
id: "flutter-sample",
name: "Flutter Sample Wallet",
homepage: "https://walletconnect.com/",
imageUrl: "https://avatars.githubusercontent.com/u/37784886?s=200&v=4",
order: 1,
mobileLink: "wcflutterwallet://",
linkMode: "https://lab.web3modal.com/walletkit_flutter"
)
.init(
id: "flutter-sample-internal",
name: "Flutter Sample Wallet Internal",
homepage: "https://walletconnect.com/",
imageUrl: "https://avatars.githubusercontent.com/u/37784886?s=200&v=4",
order: 1,
mobileLink: "wcflutterwallet-internal://",
linkMode: "https://lab.web3modal.com/walletkit_flutter_internal"
)
]
)

Expand Down
Loading