When calling signTransaction method of deeplink in a mobile web browser,
Alternatively, the app install page in the mobile web browser or Phantom app turns on
Can't i fix the Phantom app so that it only turns on ??
code
function build_url(path: string, params: URLSearchParams) {
return `https://phantom.app/ul/v1/${path}?${params.toString()}`;
}
const params = new URLSearchParams({
dapp_encryption_public_key,
cluster: "devnet",
app_url: "https://phantom.app",
redirect_link, // redirect to my server
});
const uri = build_url("signTransaction", params);
window.open(uri);
* screenshot
![Screenshot_20220928-165457_Chrome](https://user-images.githubusercontent.com/106723173/192722905-decb1aaf-207d-44e8-917d-a8c676f3112f.jpg)
Device info
* Galaxy21 5G SM-G991N `G991NKSS3CVI3 / G991NOKR3CVI3 / G991NKOU3CVH1`
* Android version : 12
* Phantom App version : 22.09.06
* Chrome version : 105.0.5195.136
When calling
signTransaction
method of deeplink in a mobile web browser, Alternatively, the app install page in the mobile web browser or Phantom app turns onCan't i fix the Phantom app so that it only turns on ??
const params = new URLSearchParams({ dapp_encryption_public_key, cluster: "devnet", app_url: "https://phantom.app", redirect_link, // redirect to my server });
const uri = build_url("signTransaction", params); window.open(uri);