keeta_client_execute
Execute read-only network operations on the Keeta blockchain to retrieve account data, balances, blocks, and network status information.
Instructions
Execute any method on the Keeta Client (read-only network operations).
Use keeta_list_sdk_methods with target "Client" to discover available methods.
Common methods: getAccountInfo, getBalance, getAllBalances, getHeadBlock, getBlock, getHistory, getTokenSupply, getNetworkStatus, getPeers, getVersion, getLedgerChecksum, getAllCertificates, getAllRepresentativeInfo.
Arguments are auto-resolved:
Strings starting with "keeta_" become Account objects
"BIGINT:123" becomes BigInt(123)
"PERM:ACCESS,ADMIN" becomes a Permissions object
"ALGO:TOKEN" becomes AccountKeyAlgorithm.TOKEN
Plain strings, numbers, booleans, objects, arrays pass through as-is
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | Yes | Network to connect to | |
| method | Yes | Method name to call on Client | |
| args | No | Arguments array — each element is auto-resolved |