Can I Use - Adapter Capabilities
Preset Wallets
These preset wallets will be displayed as Popular
on our kit modal by default.
If you are a wallet developer and want to list your wallet below, feel free to contact our team 🥳 Twitter@RazorDAO
Sui Preset Wallets
Aptos Preset Wallets
For Dapp Developers
How to list my wallet on Razor Wallet Kit?
You can contact our team via Twitter@RazorDAO to list your wallet on Razor Wallet Kit.
Or submit a PR to our repo, modify the following files:
// packages/wallet-kit/src/wallet/preset-wallets/presets.ts
export enum PresetWallet {
// ... resgisted wallet enum
// note that this name should match with your wallet adapter's name
// for auto detection and display purposes
YOUR_WALLET = 'Your Wallet',
}
export const YourWallet = defineWallet({
name: PresetWallet.YOUR_WALLET,
iconUrl:
'base64 encoded image (recommended, optimize the size!!) / external url',
downloadUrl: {
browserExtension: 'chrome extension installation url',
},
});
// packages/kit/src/wallet/preset-wallets/index.ts
export const AllDefaultWallets = [
...[
// ... registed wallets
presets.YourWallet,
].sort((a, b) => (a.name < b.name ? -1 : 1)),
];