get-soon-mainnet-last-transaction
Retrieve the most recent transaction for a specified address on the Soon mainnet using the SVM-MCP server, enabling efficient blockchain activity tracking.
Instructions
Get the last transaction of an address on the Soon mainnet
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"
}