get_current_time
Retrieve the current time in a specified timezone for accurate timestamping in Algorand blockchain transactions and operations.
Instructions
Get the current time in a specified timezone
Input Schema
Name | Required | Description | Default |
---|---|---|---|
timezone | No | Timezone identifier (e.g., "UTC", "America/New_York") |
Input Schema (JSON Schema)
{
"properties": {
"timezone": {
"description": "Timezone identifier (e.g., \"UTC\", \"America/New_York\")",
"type": "string"
}
},
"required": [],
"type": "object"
}