Socket
Socket
Sign inDemoInstall

@taquito/core

Package Overview
Dependencies
Maintainers
7
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@taquito/core - npm Package Compare versions

Comparing version 17.1.1 to 17.2.0-beta-RC.0

38

dist/lib/errors.js

@@ -16,3 +16,3 @@ "use strict";

* @category Error
* @description Error indicates invalid user inputs
* @description Error that indicates invalid user inputs
*/

@@ -31,3 +31,3 @@ class ParameterValidationError extends TaquitoError {

* @category Error
* @description Error indicates TezosToolKit has not been configured appropriately
* @description Error that indicates TezosToolKit has not been configured appropriately
*/

@@ -39,3 +39,3 @@ class TezosToolkitConfigError extends TaquitoError {

* @category Error
* @description Error indicates a requested action is not supported by Taquito
* @description Error that indicates a requested action is not supported by Taquito
*/

@@ -54,3 +54,3 @@ class UnsupportedActionError extends TaquitoError {

* @category Error
* @description Error indicates user attempts an action without necessary permissions
* @description Error that indicates user attempts an action without necessary permissions
*/

@@ -65,3 +65,3 @@ class PermissionDeniedError extends TaquitoError {

* @category Error
* @description Error indicates an invalid originated or implicit address being passed or used
* @description Error that indicates an invalid originated or implicit address being passed or used
*/

@@ -81,3 +81,3 @@ class InvalidAddressError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid block hash being passed or used
* @description Error that indicates an invalid block hash being passed or used
*/

@@ -97,3 +97,3 @@ class InvalidBlockHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid amount of tez being passed as a parameter
* @description Error that indicates an invalid amount of tez being passed as a parameter
*/

@@ -111,3 +111,3 @@ class InvalidAmountError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid derivation path being passed or used
* @description Error that indicates an invalid derivation path being passed or used
*/

@@ -127,3 +127,3 @@ class InvalidDerivationPathError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid hex string have been passed or used
* @description Error that indicates an invalid hex string have been passed or used
*/

@@ -158,3 +158,3 @@ class InvalidHexStringError extends ParameterValidationError {

* @category Error
* @description Error indicates invalid view parameter of a smart contract
* @description Error that indicates invalid view parameter of a smart contract
*/

@@ -175,3 +175,3 @@ class InvalidViewParameterError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid private key being passed or used
* @description Error that indicates an invalid private key being passed or used
*/

@@ -190,3 +190,3 @@ class InvalidKeyError extends ParameterValidationError {

* @category Error
* @description Error indicates an Invalid Public Key being passed or used
* @description Error that indicates an Invalid Public Key being passed or used
*/

@@ -206,3 +206,3 @@ class InvalidPublicKeyError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid signature being passed or used
* @description Error that indicates an invalid signature being passed or used
*/

@@ -222,3 +222,3 @@ class InvalidSignatureError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid contract address being passed or used
* @description Error that indicates an invalid contract address being passed or used
*/

@@ -238,3 +238,3 @@ class InvalidContractAddressError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid chain id being passed or used
* @description Error that indicates an invalid chain id being passed or used
*/

@@ -254,3 +254,3 @@ class InvalidChainIdError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid public key hash being passed or used
* @description Error that indicates an invalid public key hash being passed or used
*/

@@ -270,3 +270,3 @@ class InvalidKeyHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid operation hash being passed or used
* @description Error that indicates an invalid operation hash being passed or used
*/

@@ -286,3 +286,3 @@ class InvalidOperationHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid operation kind being passed or used
* @description Error that indicates an invalid operation kind being passed or used
*/

@@ -326,3 +326,3 @@ class InvalidOperationKindError extends ParameterValidationError {

* @category Error
* @description Error indicates a failure in grabbing the public key
* @description Error that indicates a failure in grabbing the public key
*/

@@ -329,0 +329,0 @@ class PublicKeyNotFoundError extends TaquitoError {

@@ -6,5 +6,5 @@ "use strict";

exports.VERSION = {
"commitHash": "15732f9b7d575aa46427c94501fb8677a754b733",
"version": "17.1.1"
"commitHash": "96c9d60e1d08c7ac01d81e4d23ba5038c7779c92",
"version": "17.2.0-beta-RC.0"
};
//# sourceMappingURL=version.js.map

@@ -12,3 +12,3 @@ // ==========================================================================================

* @category Error
* @description Error indicates invalid user inputs
* @description Error that indicates invalid user inputs
*/

@@ -25,3 +25,3 @@ class ParameterValidationError extends TaquitoError {

* @category Error
* @description Error indicates TezosToolKit has not been configured appropriately
* @description Error that indicates TezosToolKit has not been configured appropriately
*/

@@ -32,3 +32,3 @@ class TezosToolkitConfigError extends TaquitoError {

* @category Error
* @description Error indicates a requested action is not supported by Taquito
* @description Error that indicates a requested action is not supported by Taquito
*/

@@ -45,3 +45,3 @@ class UnsupportedActionError extends TaquitoError {

* @category Error
* @description Error indicates user attempts an action without necessary permissions
* @description Error that indicates user attempts an action without necessary permissions
*/

@@ -55,3 +55,3 @@ class PermissionDeniedError extends TaquitoError {

* @category Error
* @description Error indicates an invalid originated or implicit address being passed or used
* @description Error that indicates an invalid originated or implicit address being passed or used
*/

@@ -70,3 +70,3 @@ class InvalidAddressError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid block hash being passed or used
* @description Error that indicates an invalid block hash being passed or used
*/

@@ -85,3 +85,3 @@ class InvalidBlockHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid amount of tez being passed as a parameter
* @description Error that indicates an invalid amount of tez being passed as a parameter
*/

@@ -98,3 +98,3 @@ class InvalidAmountError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid derivation path being passed or used
* @description Error that indicates an invalid derivation path being passed or used
*/

@@ -113,3 +113,3 @@ class InvalidDerivationPathError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid hex string have been passed or used
* @description Error that indicates an invalid hex string have been passed or used
*/

@@ -142,3 +142,3 @@ class InvalidHexStringError extends ParameterValidationError {

* @category Error
* @description Error indicates invalid view parameter of a smart contract
* @description Error that indicates invalid view parameter of a smart contract
*/

@@ -158,3 +158,3 @@ class InvalidViewParameterError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid private key being passed or used
* @description Error that indicates an invalid private key being passed or used
*/

@@ -172,3 +172,3 @@ class InvalidKeyError extends ParameterValidationError {

* @category Error
* @description Error indicates an Invalid Public Key being passed or used
* @description Error that indicates an Invalid Public Key being passed or used
*/

@@ -187,3 +187,3 @@ class InvalidPublicKeyError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid signature being passed or used
* @description Error that indicates an invalid signature being passed or used
*/

@@ -202,3 +202,3 @@ class InvalidSignatureError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid contract address being passed or used
* @description Error that indicates an invalid contract address being passed or used
*/

@@ -217,3 +217,3 @@ class InvalidContractAddressError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid chain id being passed or used
* @description Error that indicates an invalid chain id being passed or used
*/

@@ -232,3 +232,3 @@ class InvalidChainIdError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid public key hash being passed or used
* @description Error that indicates an invalid public key hash being passed or used
*/

@@ -247,3 +247,3 @@ class InvalidKeyHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid operation hash being passed or used
* @description Error that indicates an invalid operation hash being passed or used
*/

@@ -262,3 +262,3 @@ class InvalidOperationHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid operation kind being passed or used
* @description Error that indicates an invalid operation kind being passed or used
*/

@@ -299,3 +299,3 @@ class InvalidOperationKindError extends ParameterValidationError {

* @category Error
* @description Error indicates a failure in grabbing the public key
* @description Error that indicates a failure in grabbing the public key
*/

@@ -302,0 +302,0 @@ class PublicKeyNotFoundError extends TaquitoError {

@@ -18,3 +18,3 @@ (function (global, factory) {

* @category Error
* @description Error indicates invalid user inputs
* @description Error that indicates invalid user inputs
*/

@@ -31,3 +31,3 @@ class ParameterValidationError extends TaquitoError {

* @category Error
* @description Error indicates TezosToolKit has not been configured appropriately
* @description Error that indicates TezosToolKit has not been configured appropriately
*/

@@ -38,3 +38,3 @@ class TezosToolkitConfigError extends TaquitoError {

* @category Error
* @description Error indicates a requested action is not supported by Taquito
* @description Error that indicates a requested action is not supported by Taquito
*/

@@ -51,3 +51,3 @@ class UnsupportedActionError extends TaquitoError {

* @category Error
* @description Error indicates user attempts an action without necessary permissions
* @description Error that indicates user attempts an action without necessary permissions
*/

@@ -61,3 +61,3 @@ class PermissionDeniedError extends TaquitoError {

* @category Error
* @description Error indicates an invalid originated or implicit address being passed or used
* @description Error that indicates an invalid originated or implicit address being passed or used
*/

@@ -76,3 +76,3 @@ class InvalidAddressError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid block hash being passed or used
* @description Error that indicates an invalid block hash being passed or used
*/

@@ -91,3 +91,3 @@ class InvalidBlockHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid amount of tez being passed as a parameter
* @description Error that indicates an invalid amount of tez being passed as a parameter
*/

@@ -104,3 +104,3 @@ class InvalidAmountError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid derivation path being passed or used
* @description Error that indicates an invalid derivation path being passed or used
*/

@@ -119,3 +119,3 @@ class InvalidDerivationPathError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid hex string have been passed or used
* @description Error that indicates an invalid hex string have been passed or used
*/

@@ -148,3 +148,3 @@ class InvalidHexStringError extends ParameterValidationError {

* @category Error
* @description Error indicates invalid view parameter of a smart contract
* @description Error that indicates invalid view parameter of a smart contract
*/

@@ -164,3 +164,3 @@ class InvalidViewParameterError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid private key being passed or used
* @description Error that indicates an invalid private key being passed or used
*/

@@ -178,3 +178,3 @@ class InvalidKeyError extends ParameterValidationError {

* @category Error
* @description Error indicates an Invalid Public Key being passed or used
* @description Error that indicates an Invalid Public Key being passed or used
*/

@@ -193,3 +193,3 @@ class InvalidPublicKeyError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid signature being passed or used
* @description Error that indicates an invalid signature being passed or used
*/

@@ -208,3 +208,3 @@ class InvalidSignatureError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid contract address being passed or used
* @description Error that indicates an invalid contract address being passed or used
*/

@@ -223,3 +223,3 @@ class InvalidContractAddressError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid chain id being passed or used
* @description Error that indicates an invalid chain id being passed or used
*/

@@ -238,3 +238,3 @@ class InvalidChainIdError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid public key hash being passed or used
* @description Error that indicates an invalid public key hash being passed or used
*/

@@ -253,3 +253,3 @@ class InvalidKeyHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid operation hash being passed or used
* @description Error that indicates an invalid operation hash being passed or used
*/

@@ -268,3 +268,3 @@ class InvalidOperationHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid operation kind being passed or used
* @description Error that indicates an invalid operation kind being passed or used
*/

@@ -305,3 +305,3 @@ class InvalidOperationKindError extends ParameterValidationError {

* @category Error
* @description Error indicates a failure in grabbing the public key
* @description Error that indicates a failure in grabbing the public key
*/

@@ -308,0 +308,0 @@ class PublicKeyNotFoundError extends TaquitoError {

@@ -9,3 +9,3 @@ /**

* @category Error
* @description Error indicates invalid user inputs
* @description Error that indicates invalid user inputs
*/

@@ -22,3 +22,3 @@ export declare class ParameterValidationError extends TaquitoError {

* @category Error
* @description Error indicates TezosToolKit has not been configured appropriately
* @description Error that indicates TezosToolKit has not been configured appropriately
*/

@@ -29,3 +29,3 @@ export declare class TezosToolkitConfigError extends TaquitoError {

* @category Error
* @description Error indicates a requested action is not supported by Taquito
* @description Error that indicates a requested action is not supported by Taquito
*/

@@ -42,3 +42,3 @@ export declare class UnsupportedActionError extends TaquitoError {

* @category Error
* @description Error indicates user attempts an action without necessary permissions
* @description Error that indicates user attempts an action without necessary permissions
*/

@@ -49,3 +49,3 @@ export declare class PermissionDeniedError extends TaquitoError {

* @category Error
* @description Error indicates an invalid originated or implicit address being passed or used
* @description Error that indicates an invalid originated or implicit address being passed or used
*/

@@ -59,3 +59,3 @@ export declare class InvalidAddressError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid block hash being passed or used
* @description Error that indicates an invalid block hash being passed or used
*/

@@ -69,3 +69,3 @@ export declare class InvalidBlockHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid amount of tez being passed as a parameter
* @description Error that indicates an invalid amount of tez being passed as a parameter
*/

@@ -78,3 +78,3 @@ export declare class InvalidAmountError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid derivation path being passed or used
* @description Error that indicates an invalid derivation path being passed or used
*/

@@ -88,3 +88,3 @@ export declare class InvalidDerivationPathError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid hex string have been passed or used
* @description Error that indicates an invalid hex string have been passed or used
*/

@@ -107,3 +107,3 @@ export declare class InvalidHexStringError extends ParameterValidationError {

* @category Error
* @description Error indicates invalid view parameter of a smart contract
* @description Error that indicates invalid view parameter of a smart contract
*/

@@ -119,3 +119,3 @@ export declare class InvalidViewParameterError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid private key being passed or used
* @description Error that indicates an invalid private key being passed or used
*/

@@ -128,3 +128,3 @@ export declare class InvalidKeyError extends ParameterValidationError {

* @category Error
* @description Error indicates an Invalid Public Key being passed or used
* @description Error that indicates an Invalid Public Key being passed or used
*/

@@ -138,3 +138,3 @@ export declare class InvalidPublicKeyError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid signature being passed or used
* @description Error that indicates an invalid signature being passed or used
*/

@@ -148,3 +148,3 @@ export declare class InvalidSignatureError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid contract address being passed or used
* @description Error that indicates an invalid contract address being passed or used
*/

@@ -158,3 +158,3 @@ export declare class InvalidContractAddressError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid chain id being passed or used
* @description Error that indicates an invalid chain id being passed or used
*/

@@ -168,3 +168,3 @@ export declare class InvalidChainIdError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid public key hash being passed or used
* @description Error that indicates an invalid public key hash being passed or used
*/

@@ -178,3 +178,3 @@ export declare class InvalidKeyHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid operation hash being passed or used
* @description Error that indicates an invalid operation hash being passed or used
*/

@@ -188,3 +188,3 @@ export declare class InvalidOperationHashError extends ParameterValidationError {

* @category Error
* @description Error indicates an invalid operation kind being passed or used
* @description Error that indicates an invalid operation kind being passed or used
*/

@@ -214,3 +214,3 @@ export declare class InvalidOperationKindError extends ParameterValidationError {

* @category Error
* @description Error indicates a failure in grabbing the public key
* @description Error that indicates a failure in grabbing the public key
*/

@@ -217,0 +217,0 @@ export declare class PublicKeyNotFoundError extends TaquitoError {

{
"name": "@taquito/core",
"version": "17.1.1",
"version": "17.2.0-beta-RC.0",
"description": "Classes, interfaces, and types shared across Taquito packages",

@@ -63,3 +63,3 @@ "keywords": [

},
"gitHead": "8f685d3d4fef68a2cfc44f8da7ba866a11478681"
"gitHead": "14abfbab9dc46c1370a6c2e4483c2585b0f76d88"
}

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc