UNPKG

@reservoir0x/relay-sdk

Version:

Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.

24 lines 910 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SolverStatusTimeoutError = void 0; class SolverStatusTimeoutError extends Error { constructor(txHash, attemptCount) { super(`Failed to receive a successful response for solver status check with hash '${txHash}' after ${attemptCount} attempt(s).`); Object.defineProperty(this, "txHash", { enumerable: true, configurable: true, writable: true, value: void 0 }); Object.defineProperty(this, "blockExplorerBaseUrl", { enumerable: true, configurable: true, writable: true, value: void 0 }); this.name = 'SolverStatusTimeoutError'; this.txHash = txHash; } } exports.SolverStatusTimeoutError = SolverStatusTimeoutError; //# sourceMappingURL=SolverStatusTimeoutError.js.map