Skip to content

Latest commit

 

History

History
18 lines (10 loc) · 847 Bytes

TransactionEvmContractMethod.md

File metadata and controls

18 lines (10 loc) · 847 Bytes

TransactionEvmContractMethod

The information about a method in a smart contract.

Properties

Name Type Description Notes
name String The method name. [optional]
sig String The signature of the method, which includes the method name and parameter types. [optional]
type String The method type. [optional]
payable Boolean Whether the method is payable, which means it can receive tokens along with the transaction. - `true`: The method is payable. - `false`: The method is not payable. [optional]
selector String The method selector, a four-byte identifier derived from the method's signature, used to invoke the method in a transaction. [optional]