@reservoir0x/relay-sdk
Version:
Relay is the Fastest and Cheapest Way to Bridge and Transact Across Chains.
21 lines • 694 B
JavaScript
export 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;
}
}
//# sourceMappingURL=TransactionConfirmationError.js.map