kotlin-walletconnect-lib
kotlin-walletconnect-lib copied to clipboard
library to use WalletConnect with Kotlin or Java
The demo can't run, and the code examples are not written completely, and the API is not commented. Tell me how to use it, that's it? taht's it? taht's it?
import WalletConnect from "@walletconnect/client"; import QRCodeModal from "@walletconnect/qrcode-modal"; // Create a connector const connector = new WalletConnect({ bridge: "https://bridge.walletconnect.org", // Required qrcodeModal: QRCodeModal, }); // Check if connection is already...
I have integrated wallet connect v1.0 to my android application. The functionality of requesting for connection and accepting connection is also working fine for me but when I try to...
to validate PR #76 - fails currently - will work when #76 is merged but will wait until we can use VisibleForTesting to not just change visibility for testing without...
I tried it on https://metamask.github.io/api-playground/api-documentation/#wallet_addEthereumChain and the network run was successful. Same data, but when I call it in the app, it doesn't work ExampleApplication.session.performMethodCall( Session.MethodCall.Custom( 1, "wallet_addEthereumChain", list ),...
I have already managed to connect to the wallet(metamask). now I want sign (eth_signTransaction) and send transaction(eth_sendRawTransaction) ( use contract methods) Thanks in advance for your help
public static void goTrustWallet(Activity activity, Session.Config config){ try { Intent intent = new Intent(Intent.ACTION_VIEW); intent.setPackage("com.wallet.crypto.trustapp"); intent.setData(Uri.parse(config.toWCUri())); activity.startActivity(intent); } catch (Exception e) { e.printStackTrace(); IntentUtils.launchAppDetail(activity, "com.wallet.crypto.trustapp"); } Log.i("LoginActivity","Trust:"+"https://link.trustwallet.com/wc?uri="+config.toWCUri()); } I can't...
I see in the example using "wc:" schema to open wallet app and I have to choose which app I want to open in a dialog. But I want to...