viem
Version:
13 lines • 493 B
JavaScript
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