@reservoir0x/relay-sdk
Version:
Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.
25 lines • 880 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TransactionConfirmationError = void 0;
class TransactionConfirmationError extends Error {
constructor(error, receipt, tenderlyError) {
super(error);
Object.defineProperty(this, "receipt", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
Object.defineProperty(this, "tenderlyError", {
enumerable: true,
configurable: true,
writable: true,
value: void 0
});
this.name = 'TransactionConfirmationError';
this.receipt = receipt;
this.tenderlyError = tenderlyError ?? undefined;
}
}
exports.TransactionConfirmationError = TransactionConfirmationError;
//# sourceMappingURL=TransactionConfirmationError.js.map