@portal-hq/utils
Advanced tools
Comparing version 0.2.0-beta2 to 0.2.0-beta3
"use strict"; | ||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
if (k2 === undefined) k2 = k; | ||
o[k2] = m[k]; | ||
})); | ||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { | ||
Object.defineProperty(o, "default", { enumerable: true, value: v }); | ||
}) : function(o, v) { | ||
o["default"] = v; | ||
}); | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); | ||
__setModuleDefault(result, mod); | ||
return result; | ||
}; | ||
var __importDefault = (this && this.__importDefault) || function (mod) { | ||
@@ -29,4 +6,5 @@ return (mod && mod.__esModule) ? mod : { "default": mod }; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.HttpRequester = exports.HttpRequest = exports.parseRequest = exports.RpcErrorCodes = exports.ProviderRpcError = exports.NoAddressError = exports.MpcSigningError = exports.MissingOptionError = exports.InvalidGatewayConfigError = exports.InvalidChainIdError = exports.InvalidApiKeyError = exports.HttpError = exports.currency = void 0; | ||
exports.currency = __importStar(require("./currency")); | ||
exports.HttpRequester = exports.HttpRequest = exports.parseRequest = exports.RpcErrorCodes = exports.ProviderRpcError = exports.NoAddressError = exports.MpcSigningError = exports.MissingOptionError = exports.InvalidGatewayConfigError = exports.InvalidChainIdError = exports.InvalidApiKeyError = exports.HttpError = exports.convert = void 0; | ||
var currency_1 = require("./currency"); | ||
Object.defineProperty(exports, "convert", { enumerable: true, get: function () { return currency_1.convert; } }); | ||
var errors_1 = require("./errors"); | ||
@@ -33,0 +11,0 @@ Object.defineProperty(exports, "HttpError", { enumerable: true, get: function () { return errors_1.HttpError; } }); |
@@ -1,3 +0,2 @@ | ||
import * as currency_1 from './currency'; | ||
export { currency_1 as currency }; | ||
export { convert } from './currency'; | ||
export { HttpError, InvalidApiKeyError, InvalidChainIdError, InvalidGatewayConfigError, MissingOptionError, MpcSigningError, NoAddressError, ProviderRpcError, RpcErrorCodes, } from './errors'; | ||
@@ -4,0 +3,0 @@ export { parseRequest } from './eth-requests'; |
{ | ||
"name": "@portal-hq/utils", | ||
"version": "0.2.0-beta2", | ||
"version": "0.2.0-beta3", | ||
"main": "lib/commonjs/index", | ||
@@ -5,0 +5,0 @@ "module": "lib/module/index", |
@@ -1,2 +0,2 @@ | ||
export * as currency from './currency' | ||
export { convert } from './currency' | ||
@@ -25,2 +25,6 @@ export { | ||
type HttpRequestOptions, | ||
type MessageData, | ||
type OutgoingRequest, | ||
type OutgoingRequestData, | ||
type SignableTransactionData, | ||
} from '../types' |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
84553
2741