Zero-dependenices, robust, secure and lightweight wallet connector for the NEAR blockchain with easily updatable wallets code
yarn add @hot-labs/near-connect
Unlike near-wallet-selector, this library provides a secure execution environment for integrating wallets. This eliminates the need for a single registry of code for all wallets.
import { NearConnector } from "@hot-labs/near-connect";
const connector = new NearConnector({ network: "mainnet" });
connector.on("wallet:signOut", async () => {});
connector.on("wallet:signIn", async (t) => {
const wallet = await connector.wallet(); // api like near-wallet-selector
const address = t.accounts[0].accountId;
wallet.signMessage(); // all methods like near-wallet-selector
});
The developer writes a self-hosted script that implements the integration of their wallet and adds a description to the common manifest:
{
"id": "hot-wallet",
"version": "1.0.0",
"name": "HOT Wallet",
"description": "Secure Multichain wallet. Manage assets, refuel gas, and mine $HOT on any device with HOT Wallet",
"icon": "https://app.hot-labs.org/images/hot/hot-icon.png",
"website": "https://hot-labs.org/wallet",
"executor": "https://raw.githubusercontent.com/hot-dao/near-selector/refs/heads/main/repository/hotwallet.js",
"type": "sandbox",
"platform": {
"android": "https://play.google.com/store/apps/details?id=app.herewallet.hot&hl=en",
"ios": "https://apps.apple.com/us/app/hot-wallet/id6740916148",
"chrome": "https://chromewebstore.google.com/detail/hot-wallet/mpeengabcnhhjjgleiodimegnkpcenbk",
"firefox": "https://addons.mozilla.org/en-US/firefox/addon/hot-wallet",
"tga": "https://t.me/hot_wallet"
},
"features": {
"signMessage": true,
"signTransaction": true,
"signAndSendTransaction": true,
"signAndSendTransactions": true,
"signInWithoutAddKey": true,
"verifyOwner": false,
"testnet": false
},
"permissions": {
"storage": true,
"open": {
"allows": [
"https://hot-labs.org",
"https://t.me/hot_wallet",
"https://play.google.com",
"https://apps.apple.com",
"hotwallet://"
]
}
}
}
The executor
endpoint called in a standalone iframe if the user decides to use this wallet on the site. The script implements the NearWallet wallet class and registers it in a special object
window.selector.ready(yourNearWallet)
After that, the library delegates user requests directly to yourNearWallet
via iframe.postMessage
communication.
In addition, the script has the ability to draw any UI in the area allocated for the iframe that is necessary for interaction with the wallet.
For security, the wallet script runs in a sandboxed iframe, which has many limitations. It cannot call modals or access an external page or use localStorage.
The window.selector
implements some features for this:
interface NearSelector {
location: string; // initial dapp location href
ready: (wallet: any) => void; // must call executor script for register wallet
open: (url: string, newTab = false) => void; // used for my-near-wallet
// use instead of localStorage
storage: {
set: (key: string, value: string) => Promise<void>;
get: (key: string) => Promise<string>;
remove: (key: string) => Promise<void>;
keys: () => Promise<string[]>;
};
}
{ "storage": true }
: Use window.selector.storage in execution script{ "open": { allows: ["https://wallet.app"] } }
Use window.selector.open forallow
domains{ "location": true }
: Use window.selector.location for initial url from dapp{ "usb": true }
: Use usb in execution script (use for Ledger){ "hid": true }
: Use hid in execution script (use for Ledger)
Each wallet must specify in the manifest a list of features that are supported. This will help dApps filter wallets by the required features. As soon as the wallet starts supporting the required feature -- it simply adds it to the manifest and updates its execution script, all dapps automatically download the updates without the need to update the frontend.
const selector = new NearConnector({
// Show wallets that support signMessage and testnet env
features: { signMessage: true, testnet: true },
});
Like Ethereum Multi Injected Provider Standart this library supports injected wallets for extenstions and in-app browsers. Your injection script can dispatch custom event with your wallet:
class NearWallet {
manifest: { ... };
signIn() {}
// all implementation
}
window.addEventListener("near-selector-ready", () => {
window.dispatchEvent(new CustomEvent("near-wallet-injected", { detail: new NearWallet() }));
});
Maintaining the current near-wallet-selector takes a lot of time and effort, wallet developers wait a long time to get an update to their connector inside a monolithic code base. After which they can wait months for applications to integrate their wallet into their site or update their frontend to update the wallet connector. This requires a lot of work on the review side of the near-wallet-selector team and STILL does not ensure the security of internal packages that will be installed in applications (for example, RHEA Finance or Near Intents). All these problems prompted us to write a new solution that will:
- safely and isolatedly execute the code for connecting to wallets
- quickly and conveniently update wallets on all sites
- Save the internal near-wallet-selector team from endlessly maintaining a huge code base, because now only the wallet itself is responsible for the connection of each wallet and hosts its script wherever it wants.
- Support all near-wallet-selector wallets
- Custom manifests for debugging mode
- Full backward compatibility with near-wallet-selector
const multichainConnector = new HotConnector({
chains: [WalletType.NEAR, WalletType.EVM, WalletType.SOLANA, WalletType.TON],
onConnect: async (wallet) => {
const address = await wallet.getAddress();
setWallets((t) => ({ ...t, [wallet.type]: address }));
},
onDisconnect: (type) => {
setWallets({ ...wallets, [type]: null });
},
// NearConnector from @hot-labs/connector // NearConnector from @hot-labs/connector
nearConnector: new NearConnector({
manifest: manifest as any,
network: "mainnet",
logger: console,
}),
// ton-connect
tonConnect: new TonConnectUI({ connector: new TonConnect(), buttonRootId: "ton-connect" }),
// reown for evm and solana
appKit: createAppKit({
adapters: [new EthersAdapter(), new SolanaAdapter()],
networks: [mainnet, solana, base, bsc],
projectId: "4e23423b97d8d587e69801d",
metadata: {
name: "HOT Connector demo",
description: "HOT Connector demo",
url: "https://hotconnector.demo.hotlabs.io",
icons: ["https://hotconnector.demo.hotlabs.io/favicon-beige.ico"],
},
}),
});
// Call any wallet for intents.near protocol
multichainConnector.signIntents(WalletType.EVM, []);