The wallet object from wallet-standard
True if the wallet implements the evefrontier:sponsoredTransaction feature
import { useWallets } from "@mysten/dapp-kit-react";
import { walletSupportsSponsoredTransaction } from "@evefrontier/dapp-kit";
const wallets = useWallets();
const supportedWallets = wallets.filter(walletSupportsSponsoredTransaction);
console.log(`${supportedWallets.length} wallets support sponsored transactions`);
Check if a wallet supports the EVE Frontier sponsored transaction feature.
Use this to filter available wallets to only those that can execute sponsored (gasless) transactions. Currently, only EVE Vault implements this feature.