Executes a read-only method on a smart contract. Get methods let you query contract state without sending a transaction. Common methods: seqno (wallet sequence number), get_wallet_data (wallet info), get_jetton_data (token info). Pass method arguments in the stack array.
Request to execute a smart contract get method. Specify address, method name/ID, and input stack.
The account address in user-friendly format.
The get method name (e.g., "seqno", "get_wallet_data") or its numeric ID.
Input arguments or output values as a TVM stack. Each entry has a type and value.
2 elementsBlock or wallet sequence number. For blocks, this is the block height. For wallets, increment this for each outgoing transaction.
OK
Response containing get method execution results.
Indicates if the request succeeded. If false, check the error field for details.
The response data. Only present when ok is true.
Optional request ID that you can pass in the request and receive back in the response. Useful for matching async responses.