@drift-labs/sdk-browser
Version:
SDK for Drift Protocol
21 lines (20 loc) • 731 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.TxSendError = exports.ConfirmationStrategy = void 0;
var ConfirmationStrategy;
(function (ConfirmationStrategy) {
ConfirmationStrategy["WebSocket"] = "websocket";
ConfirmationStrategy["Polling"] = "polling";
ConfirmationStrategy["Combo"] = "combo";
})(ConfirmationStrategy || (exports.ConfirmationStrategy = ConfirmationStrategy = {}));
class TxSendError extends Error {
constructor(message, code) {
super(message);
this.message = message;
this.code = code;
if (Error.captureStackTrace) {
Error.captureStackTrace(this, TxSendError);
}
}
}
exports.TxSendError = TxSendError;
;