Connect Wallet
Scenarios for connect wallets and request accounts.
if (typeof window.mina !== 'undefined') {
console.log('Auro Wallet is installed!');
}Request Account
const account:string[]|ProviderError = await window.mina.requestAccounts()
.catch((err: any) => err);
console.log(account)let account = await window.mina?.getAccounts();
console.log(account);Account Event
Last updated