UNPKG

edwin-sdk

Version:

SDK for integrating AI agents with DeFi protocols

11 lines (10 loc) 356 B
export class InsufficientBalanceError extends Error { constructor( public readonly required: number, public readonly available: number, public readonly symbol: string ) { super(`Insufficient ${symbol} balance. Required: ${required}, Available: ${available}`); this.name = 'InsufficientBalanceError'; } }