@parifi/synthetix-sdk-ts
Version:
A Typescript SDK for interactions with the Synthetix protocol
13 lines • 414 B
JavaScript
// src/error/index.ts
var OracleDataRequiredError = class extends Error {
constructor(oracleContract, oracleQuery) {
super(`OracleDataRequired: oracleContract=${oracleContract}, oracleQuery=${oracleQuery}`);
this.oracleContract = oracleContract;
this.oracleQuery = oracleQuery;
this.name = "OracleDataRequiredError";
}
};
export {
OracleDataRequiredError
};
//# sourceMappingURL=index.mjs.map