deploy-mon-contract
Deploy smart contracts on the Monad testnet by providing contract bytecode, ABI, and constructor arguments, enabling integration and testing on the blockchain.
Instructions
Deploy a smart contract on Monad testnet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
abi | Yes | Contract ABI | |
bytecode | Yes | Contract bytecode | |
constructorArgs | No | Constructor arguments |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"abi": {
"description": "Contract ABI",
"type": "string"
},
"bytecode": {
"description": "Contract bytecode",
"type": "string"
},
"constructorArgs": {
"description": "Constructor arguments",
"type": "array"
}
},
"required": [
"bytecode",
"abi"
],
"type": "object"
}