deploy-contract
Deploy smart contracts to the blockchain by providing bytecode and constructor arguments. Simplifies interactions for AI-powered blockchain applications through secure, private key-free integration with MetaMask.
Instructions
Deploy a contract to the network, given bytecode, and constructor arguments
Input Schema
Name | Required | Description | Default |
---|---|---|---|
abi | Yes | ||
args | Yes | ||
bytecode | Yes |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"abi": {
"type": "string"
},
"args": {
"items": {
"type": "string"
},
"type": "array"
},
"bytecode": {
"type": "string"
}
},
"required": [
"abi",
"args",
"bytecode"
],
"type": "object"
}