get-soon-testnet-last-transaction
Retrieve the most recent transaction for a specific address on the Soon testnet using SVM-MCP server. Input the address to obtain detailed transaction data.
Instructions
Get the last transaction of an address on the Soon testnet
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | The SOON address to get the last transaction for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "The SOON address to get the last transaction for",
"type": "string"
}
},
"required": [
"address"
],
"type": "object"
}