Pull Up Auro Wallet with DeepLink
This document describes how to use a deep link to open the Auro Mobile Wallet and launch a zkApp within the App. This feature is supported starting from Auro Mobile Wallet version 2.1.0.
Pull Up the wallet to launch zkApp
let targetURL = ""; // Required, the target URL, e.g., https://www.aurowallet.com/
let paramsURL = encodeURIComponent(targetURL);
let targetNetworkId = ""; // Optional, the target network ID, e.g., mina:mainnet. You can retrieve this from the daemon node. If not provided, the App will use its current network by default.
let networkId = encodeURIComponent(targetNetworkId);
const endURL = `https://applinks.aurowallet.com/applinks?action=openurl&networkid=${networkId}&url=${paramsURL}`;
window.location.href = endURL;
## Example GraphQL query:
query myQuery {
networkID
}Last updated