UNPKG

ethers-tools

Version:

Contains tools for work with web3 contracts.

8 lines (7 loc) 202 B
/** * @public * @param {string} name * @returns {string} */ export const contractCreateCallName = (name) => `${name.startsWith('get') ? name : `get${name[0].toUpperCase()}${name.slice(1)}`}Call`;