Ember Agent TypeScript SDK
The Ember SDK gives your AI agents on-chain actions. This TypeScript SDK provides a strongly-typed client for interacting with Ember's gRPC API.
Beta Release: This SDK is currently in beta. The API is unstable and may change between versions.
Features
Full TypeScript support with generated types
Promise-based API
Support for chain and token information
Token swap functionality
Comprehensive error handling
Installation
Install the SDK and its peer dependencies:
Note: During the beta period, you must explicitly use the
@beta
tag when installing. This ensures you're aware that the API may change between versions.
Basic Usage
Examples
The SDK comes with several example implementations in the examples
directory:
token-swap.ts
- A basic example demonstrating how to perform token swaps using the SDK with Viem for Ethereum interaction. It shows wallet setup, token swapping (capturing the requestId from swapToken and the transaction hash after submission), and tracking the swap status using getProviderTrackingStatus.langchain-swap.ts
- An advanced example showing how to integrate the SDK with LangChain to create an AI agent that can perform token swaps through natural language commands. It demonstrates creating custom tools, setting up an OpenAI-powered agent, handling complex interactions, and tracking swap status by calling getProviderTrackingStatus with the requestId from swapToken and the transaction hash.
Error Handling
The SDK uses standard gRPC error codes:
INVALID_ARGUMENT
: The request parameters are malformed or invalidNOT_FOUND
: The requested resource(s) could not be foundINTERNAL
: An unexpected server-side error occurredUNAUTHENTICATED
: Authentication failedPERMISSION_DENIED
: Authorization failed
Last updated