UNPKG

viem

Version:

TypeScript Interface for Ethereum

13 lines 493 B
import { BaseError } from '../../../errors/base.js'; export class ReceiptContainsNoWithdrawalsError extends BaseError { constructor({ hash }) { super(`The provided transaction receipt with hash "${hash}" contains no withdrawals.`); Object.defineProperty(this, "name", { enumerable: true, configurable: true, writable: true, value: 'ReceiptContainsNoWithdrawalsError' }); } } //# sourceMappingURL=withdrawal.js.map