UNPKG

@ethereum-waffle/chai

Version:

A sweet set of chai matchers for your blockchain testing needs.

8 lines (5 loc) 205 B
import {Contract, Signer} from 'ethers'; export type Account = Signer | Contract; export async function getAddressOf(account: Account) { return (account as Contract).address ?? account.getAddress(); }