UNPKG

@reservoir0x/relay-sdk

Version:

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

14 lines 531 B
export class DepositTransactionTimeoutError extends Error { constructor(txHash, attemptCount) { super(`Deposit transaction with hash '${txHash}' is pending after ${attemptCount} attempt(s).`); Object.defineProperty(this, "txHash", { enumerable: true, configurable: true, writable: true, value: void 0 }); this.name = 'DepositTransactionTimeoutError'; this.txHash = txHash; } } //# sourceMappingURL=DepositTransactionTimeoutError.js.map