tensaikit-test
Version:
An autonomous DeFi AI Agent Kit on Katana enabling AI agents to plan and execute on-chain financial operations.
21 lines (20 loc) • 535 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.WalletProvider = void 0;
/**
* Abstract base class for all wallet providers.
*
* Defines the common interface required to interact with any wallet implementation,
* such as Privy, Viem, or custom providers.
*
* @abstract
*/
class WalletProvider {
/**
* Initializes the wallet provider.
*/
constructor() {
// Wait for the next tick to ensure child class is initialized
}
}
exports.WalletProvider = WalletProvider;