get_transaction
Retrieve confirmed transaction details on the Solana blockchain by providing a transaction hash. Ideal for verifying transaction status and analyzing blockchain activity.
Instructions
Returns transaction details for a confirmed transaction.
Args: hash (str): Transaction signature as base-58 encoded string
Returns: str: Transaction details in the format "Transaction: {transaction}"
Input Schema
Name | Required | Description | Default |
---|---|---|---|
hash | Yes |
Input Schema (JSON Schema)
{
"properties": {
"hash": {
"title": "Hash",
"type": "string"
}
},
"required": [
"hash"
],
"title": "get_transactionArguments",
"type": "object"
}