Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit 67f7413

Browse files
jdevcsitxtoledoavkosAlexluu-alex
authored
Fix: add missing function type "receive" (#5165) (#5417)
* Fix: add missing function type "receive" This PR adds missing type "receive" example in solidity: ```solidity receive() external payable { // any code } ``` * Update Changgelog * Update CHANGELOG.md * Update CHANGELOG.md Co-authored-by: Oleksii Kosynskyi <[email protected]> Co-authored-by: Junaid <[email protected]> Co-authored-by: Alex <[email protected]> Co-authored-by: Alex <[email protected]> Co-authored-by: Gustavo <[email protected]> Co-authored-by: Oleksii Kosynskyi <[email protected]> Co-authored-by: Alex <[email protected]> Co-authored-by: Alex <[email protected]>
1 parent edcd215 commit 67f7413

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -596,3 +596,6 @@ Released with 1.0.0-beta.37 code base.
596596
- Update node version on actions to fix breaking mosaic test (#5354)
597597
- Start incrementing jsonrpc.id from random number (#5327)
598598
- `web3-eth-contract`'s `call` and `send` methods no longer mutate `options` argument (#5394)
599+
600+
### Added
601+
- Add missing function type "receive" in `AbiType` (#5165)

packages/web3-utils/types/index.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ export interface Units {
212212
tether: string;
213213
}
214214

215-
export type AbiType = 'function' | 'constructor' | 'event' | 'fallback';
215+
export type AbiType = 'function' | 'constructor' | 'event' | 'fallback' | 'receive';
216216
export type StateMutabilityType = 'pure' | 'view' | 'nonpayable' | 'payable';
217217

218218
export interface AbiItem {

0 commit comments

Comments
 (0)