set_rpc_url
Configure the RPC URL to enable blockchain interactions on EDUCHAIN Agent Kit, ensuring seamless data queries and transaction execution.
Instructions
Set the RPC URL for blockchain interactions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| url | Yes | RPC URL to use for blockchain interactions |
Input Schema (JSON Schema)
{
"properties": {
"url": {
"description": "RPC URL to use for blockchain interactions",
"type": "string"
}
},
"required": [
"url"
],
"type": "object"
}