keeta_anchor_execute
Execute anchor operations on Keeta Network by calling service methods, library modules, or metadata functions with auto-discovered SDK capabilities.
Instructions
Execute ANY anchor operation on the Keeta Network. Fully dynamic — auto-discovers services and lib modules from the SDK at runtime.
subtarget types:
"service" → call a method on any anchor service client (FX, KYC, AssetMovement, Username, Notification, or ANY future service). Set serviceName to the service name.
"lib" → call a method/function on any anchor lib module (Resolver, Certificates, EncryptedContainer, URI, or ANY future module). Set libModule to the module name.
"metadata" → shortcut to call Resolver.Metadata static methods (formatMetadata, fullyResolveValuizable)
Use keeta_list_sdk_methods with target "AnchorCatalog" to discover all available services and lib modules. Use "AnchorService:" or "AnchorLib:" to drill into specific ones.
Arguments are auto-resolved (see keeta_client_execute for resolution rules).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| network | Yes | Network to use | |
| seed | No | Seed of the account. Omit for read-only operations. | |
| accountIndex | No | Account derivation index | |
| subtarget | Yes | Type of anchor operation: "service" for service clients, "lib" for lib modules, "metadata" for Resolver.Metadata shortcuts | |
| serviceName | No | Required when subtarget is "service". The anchor service name (e.g. "FX", "KYC", "AssetMovement", "Username", "Notification", or any new service). Use keeta_list_sdk_methods with target "AnchorCatalog" to see available services. | |
| libModule | No | Required when subtarget is "lib". The lib module name (e.g. "Resolver", "Certificates", "EncryptedContainer", "URI", or any new module). Use keeta_list_sdk_methods with target "AnchorCatalog" to see available modules. | |
| method | Yes | Method name to call on the target | |
| args | No | Arguments array — each element is auto-resolved | |
| rootAddress | No | Anchor root account address. Defaults to the network root. |