Skip to main content
Version: Release

Supporting multiple addresses

Notifi seamlessly supports multiple addresses per user. This means users with multiple wallet addresses can:

  • Sign up to alerts with all their wallet adresses at the same time
  • Verify multiple wallet addresses and link them to their Notifi account
  • View alert histories of their wallet addresses in one place

This can be very useful for scenarios where users are naturally expected to handle multiple addresses, such as:

  • Direct integrations of Notifi into browser extension wallets
  • Multichain dapps where users can sign up with wallets from multiple chains

Example user flow

See an example user flow of a direct integration into a browser extension wallet in our Figma.

Integration introduction

Currently, multiple addresses are only supported through our React Card.

To enable support for multiple addresses use the multiWallet: MultiWalletParams property in NotifiContext when adding the React Card, which is of the following type:

type MultiWalletParams = Readonly<{
ownedWallets: ReadonlyArray<WalletWithSignParams>;
}>;

type WalletWithSignParams = Readonly<{
displayName?: string;
walletBlockchain:
| 'ETHEREUM'
| 'POLYGON'
| 'ARBITRUM'
| 'AVALANCHE'
| 'SOLANA'
| 'BINANCE'
| 'OPTIMISM';
walletPublicKey: string;
signMessage: Uint8SignMessageFunction;
}>

Note: See the full definition of the type WalletWithSignParams here.

With this, adding multiWallet is easy once the list of wallet addresses of the user has been obtained.

How to integrate

  1. Obtain the list of wallet addresses.

This will depend on the blockchain and wallet, but often a useWallet() hook can be used to fetch an array of all wallet addresses including their public keys.

  1. Construct signMessage functions for every address.

This will again depend on the blockchain you are developing for. Generally, a function that takes a hashed message, signs it, and returns the signature is required.

Code example for Aptos
const { signMessage, account } = useWallet();

const signMessageForAccount = async (address: string) => {
return async (message: string, nonce:number) => {
const messageBuffer = ['Aptos', 'address: ${address}', 'nonce: ${nonce}', 'message: ${message}]
const result = await signMessage(address, messageBuffer.join('\n'));
return result;
}
};
  1. Construct a WalletWithSignParams array with the public keys and signMessage functions and pass it in the multiWallet property of NotifiContext.
Code example for Aptos
// simplified code for demonstration purposes
const { accounts } = useWallet();

const ownedWallets = useMemo<ReadonlyArray<WalletWithSignParams>>(
() =>
accounts.map((account) => ({
walletBlockchain: "APTOS",
signMessage: signMessageForAccount(account),
walletPublicKey: account.publicKey,
accountAddress: account.address,
displayName: account.name,
})),
[accounts, signMessageForAccount]
);

export const Notifi: React.FC = () => {
...
return (
<NotifiContext
dappAddress="<YOUR OWN DAPP ADDRESS HERE>"
// keep this "Production" unless you have a special Development environment set up by Notifi
env="Production"
walletBlockchain="APTOS"
accountAddress={account.address.toString()}
walletPublicKey={account.publicKey.toString()}
signMessage={signMessage}
// add multiWallet here
multiWallet={ownedWallets}
>
<NotifiSubscriptionCard
cardId="<YOUR OWN CARD ID HERE>"
inputLabels={inputLabels}
inputSeparators={inputSeparators}
darkMode //optional
/>
</NotifiContext>
);
};