@drizzle-utils/get-accounts

A tool for getting the accounts from Web3. This will request MetaMask's permission, if required.

Usage no npm install needed!

<script type="module">
  import drizzleUtilsGetAccounts from 'https://cdn.skypack.dev/@drizzle-utils/get-accounts';
</script>

README

@drizzle-utils/get-accounts

A tool for getting the accounts from Web3. This will request MetaMask's permission, if required.

Example usage is located in the test-app directory, specifically test-app/src/App.js.

Usage

import getAccounts from "@drizzle-utils/get-accounts";

// pass in your web3 (required)
const accounts = await getAccounts({ web3 });
console.log(accounts); // ["0x..."]