Interface MobileWalletConnectArgs

Arguments for the connect method MobileWallet.connect

interface MobileWalletConnectArgs {
    appName: string;
    callbackUrl: string;
    network: "mainnet" | "testnet";
}

Properties

appName: string

The name of the mobile wallet app

callbackUrl: string

The URL the mobile wallet should redirect to after successful/accepted connection

network: "mainnet" | "testnet"

The network to connect to (mainnet or testnet)