UNPKG

ethers-tools

Version:

Contains tools for work with web3 contracts.

11 lines (10 loc) 157 B
/** * @readonly * @enum {string} */ export const StateMutability = { View: 'view', Pure: 'pure', NonPayable: 'nonpayable', Payable: 'payable', };