write-contract
Execute write functions on blockchain contracts using ABI, address, function name, and arguments. Enable secure blockchain interactions without exposing private keys via MetaMask integration.
Instructions
Execute a write function on a contract
Input Schema
Name | Required | Description | Default |
---|---|---|---|
abi | Yes | ||
address | Yes | ||
args | Yes | ||
functionName | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"abi": {
"type": "string"
},
"address": {
"type": "string"
},
"args": {
"items": {
"type": "string"
},
"type": "array"
},
"functionName": {
"type": "string"
}
},
"required": [
"abi",
"address",
"functionName",
"args"
],
"type": "object"
}