UNPKG

ethers-tools

Version:

Contains tools for work with web3 contracts.

8 lines (7 loc) 193 B
/** * @param {import('ethers').Provider | import('ethers').Signer} driver * @returns {boolean} */ export const isSigner = (driver) => { return typeof driver?.getAddress === 'function'; };