Getting Started

Getting Started with Sender Wallet
To build with Sender, install Sender in your preferred browser. Download here
Once Sender is installed and running, you will find that newly opened browser tabs have a window.near object available in the developer console. Your website now can interact with Sender via the object. You can review the full API for object here.

Sender Detection

To verify if the browser has installed Sender Wallet, copy and paste the code snippet below in the developer console of your web browser:
if (typeof window.near !== 'undefined' && window.near.isSender) {
console.log('Sender is installed!');
}
You can review the full API for the window.near object here.

Integration Examples