@aptos-labs/siwa
Version:
Library of utilities for Sign in with Aptos
20 lines (18 loc) • 447 B
text/typescript
export const tryImportDerivedWalletSolana = async () => {
try {
return await import(
/* webpackIgnore: true */ /* @vite-ignore */ "@aptos-labs/derived-wallet-solana"
);
} catch {
return null;
}
};
export const tryImportDerivedWalletEthereum = async () => {
try {
return await import(
/* webpackIgnore: true */ /* @vite-ignore */ "@aptos-labs/derived-wallet-ethereum"
);
} catch {
return null;
}
};