Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,7 @@ Released with 1.0.0-beta.37 code base.
### Added
- Documentation details about `maxFeePerGas` and `maxPriorityFeePerGas` (#5121)
- Added `createAccessList` types in web3.eth (#5146)
- add missing function type "receive" in `AbiType`

### Fixed
- Improving `AbstractProvider` interface (#5150)
Expand Down
2 changes: 1 addition & 1 deletion packages/web3-utils/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export interface Units {
tether: string;
}

export type AbiType = 'function' | 'constructor' | 'event' | 'fallback';
export type AbiType = 'function' | 'constructor' | 'event' | 'fallback' | 'receive';
export type StateMutabilityType = 'pure' | 'view' | 'nonpayable' | 'payable';

export interface AbiItem {
Expand Down