For Developers
Last updated
Was this helpful?
Last updated
Was this helpful?
To detect if users are accessing your dApp on Fina, you can check if the following object exist.
If this is undefined
that means user is not accessing your dApp via Fina Wallet's in-app browser.
Fina Wallet exposes the same API as . So if your dApp supports Keplr, it should be working on Fina Wallet out of the box. You can check Keplr's API documentation
Besides, the window.fina
object is just a pointer to window.keplr
so the underlying methods and properties will be the same
If you want to redirect users from your dApp to Fina Wallet, you can use the following deep link
If you want to redirect users to your dApp directly on Fina's in-app browser, you can use the following deep link
There are 2 url parameters in the deep link
network
- the chain ID of the network your dApp is connecting to
url
- your dApp's URL-encoded url
Example (provided by SCRT Labs )