Interface MobileWalletSignArgs

Arguments for the sign method MobileWallet.sign

interface MobileWalletSignArgs {
    callbackUrl: string;
    network: "mainnet" | "testnet";
    unsignedTransactionBytes: string;
}

Properties

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)

unsignedTransactionBytes: string

The unsigned transaction bytes to sign