Skip to content

Commit

Permalink
add a missing property to AbiFunctionFragment
Browse files Browse the repository at this point in the history
  • Loading branch information
Muhammad-Altabba committed Mar 24, 2024
1 parent 19db6d2 commit 60f0e2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions packages/web3-types/src/eth_abi_types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@ export type AbiFunctionFragment = AbiBaseFragment & {

readonly constant?: boolean; // stateMutability == 'pure' or stateMutability == 'view'
readonly payable?: boolean; // stateMutability == 'payable'

readonly signature: string;
};

export type AbiFallbackFragment = AbiBaseFragment & {
Expand Down

0 comments on commit 60f0e2e

Please sign in to comment.