UNPKG

@account-kit/infra

Version:

adapters for @aa-sdk/core for interacting with alchemy services

15 lines 509 B
import { BaseError as CoreBaseError } from "@aa-sdk/core"; import { VERSION } from "../version.js"; export class BaseError extends CoreBaseError { constructor() { super(...arguments); // This version could be different from the aa-core version so we overwrite this here. Object.defineProperty(this, "version", { enumerable: true, configurable: true, writable: true, value: VERSION }); } } //# sourceMappingURL=base.js.map