sig
Generate function selectors from Ethereum smart contract function signatures. Input a function signature to derive the corresponding selector for blockchain interactions.
Instructions
get function selector
Input Schema
Name | Required | Description | Default |
---|---|---|---|
functionName | Yes | function signature, e.g. 'transfer(address,uint256)' |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"functionName": {
"description": "function signature, e.g. 'transfer(address,uint256)'",
"type": "string"
}
},
"required": [
"functionName"
],
"type": "object"
}