@rarible/types
Version:
`@rarible/types` is a TypeScript library that provides type definitions and interfaces for the Rarible ecosystem. This package is designed to facilitate seamless integration with Rarible's APIs and services, ensuring type safety and improved developer exp
11 lines (10 loc) • 425 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InvalidTransactionHashError = void 0;
const utils_1 = require("@rarible/utils");
class InvalidTransactionHashError extends utils_1.CustomError {
constructor(blockchain, value) {
super(`Not valid transaction hash ${value} for blockchain ${blockchain}`);
}
}
exports.InvalidTransactionHashError = InvalidTransactionHashError;