New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@taquito/taquito

Package Overview
Dependencies
Maintainers
2
Versions
210
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@taquito/taquito - npm Package Compare versions

Comparing version 7.1.0-preview-lambdaview.0 to 7.2.0-alpha.0

dist/lib/extension/extension.js

12

dist/lib/contract/contract.js

@@ -137,2 +137,5 @@ "use strict";

exports.ContractMethod = ContractMethod;
/**
* @description Utility class to retrieve data from a smart contract's storage without incurring fees via a contract's view method
*/
var ContractView = /** @class */ (function () {

@@ -148,2 +151,11 @@ function ContractView(currentContract, provider, name, chainId, callbackParametersSchema, parameterSchema, args) {

}
/**
*
* @description Find which lambda contract to use based on the current network,
* encode parameters to Michelson,
* create an instance of Lambdaview to retrive data, and
* Decode Michelson response
*
* @param Options Address of a lambda contract (sandbox users)
*/
ContractView.prototype.read = function (customLambdaAddress) {

@@ -150,0 +162,0 @@ return __awaiter(this, void 0, void 0, function () {

1

dist/lib/contract/index.js

@@ -18,2 +18,3 @@ "use strict";

__exportStar(require("./prepare"), exports);
__exportStar(require("./view_lambda"), exports);
//# sourceMappingURL=index.js.map

12

dist/lib/contract/prepare.js

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

var format_1 = require("../format");
exports.createOriginationOperation = function (_a) {
var createOriginationOperation = function (_a) {
var code = _a.code, init = _a.init, _b = _a.balance, balance = _b === void 0 ? "0" : _b, delegate = _a.delegate, storage = _a.storage, _c = _a.fee, fee = _c === void 0 ? constants_1.DEFAULT_FEE.ORIGINATION : _c, _d = _a.gasLimit, gasLimit = _d === void 0 ? constants_1.DEFAULT_GAS_LIMIT.ORIGINATION : _d, _e = _a.storageLimit, storageLimit = _e === void 0 ? constants_1.DEFAULT_STORAGE_LIMIT.ORIGINATION : _e;

@@ -109,3 +109,4 @@ return __awaiter(void 0, void 0, void 0, function () {

};
exports.createTransferOperation = function (_a) {
exports.createOriginationOperation = createOriginationOperation;
var createTransferOperation = function (_a) {
var to = _a.to, amount = _a.amount, parameter = _a.parameter, _b = _a.fee, fee = _b === void 0 ? constants_1.DEFAULT_FEE.TRANSFER : _b, _c = _a.gasLimit, gasLimit = _c === void 0 ? constants_1.DEFAULT_GAS_LIMIT.TRANSFER : _c, _d = _a.storageLimit, storageLimit = _d === void 0 ? constants_1.DEFAULT_STORAGE_LIMIT.TRANSFER : _d, _e = _a.mutez, mutez = _e === void 0 ? false : _e;

@@ -130,3 +131,4 @@ return __awaiter(void 0, void 0, void 0, function () {

};
exports.createSetDelegateOperation = function (_a) {
exports.createTransferOperation = createTransferOperation;
var createSetDelegateOperation = function (_a) {
var delegate = _a.delegate, source = _a.source, _b = _a.fee, fee = _b === void 0 ? constants_1.DEFAULT_FEE.DELEGATION : _b, _c = _a.gasLimit, gasLimit = _c === void 0 ? constants_1.DEFAULT_GAS_LIMIT.DELEGATION : _c, _d = _a.storageLimit, storageLimit = _d === void 0 ? constants_1.DEFAULT_STORAGE_LIMIT.DELEGATION : _d;

@@ -148,3 +150,4 @@ return __awaiter(void 0, void 0, void 0, function () {

};
exports.createRegisterDelegateOperation = function (_a, source) {
exports.createSetDelegateOperation = createSetDelegateOperation;
var createRegisterDelegateOperation = function (_a, source) {
var _b = _a.fee, fee = _b === void 0 ? constants_1.DEFAULT_FEE.DELEGATION : _b, _c = _a.gasLimit, gasLimit = _c === void 0 ? constants_1.DEFAULT_GAS_LIMIT.DELEGATION : _c, _d = _a.storageLimit, storageLimit = _d === void 0 ? constants_1.DEFAULT_STORAGE_LIMIT.DELEGATION : _d;

@@ -163,2 +166,3 @@ return __awaiter(void 0, void 0, void 0, function () {

};
exports.createRegisterDelegateOperation = createRegisterDelegateOperation;
//# sourceMappingURL=prepare.js.map

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

};
RpcContractProvider.prototype.at = function (address) {
RpcContractProvider.prototype.at = function (address, contractAbstractionComposer) {
if (contractAbstractionComposer === void 0) { contractAbstractionComposer = function (x) { return x; }; }
return __awaiter(this, void 0, void 0, function () {
var script, entrypoints, blockHeader, chainId;
var script, entrypoints, blockHeader, chainId, abs;
return __generator(this, function (_a) {

@@ -356,3 +357,4 @@ switch (_a.label) {

chainId = blockHeader.chain_id;
return [2 /*return*/, new contract_1.ContractAbstraction(address, script, this, this, entrypoints, chainId)];
abs = new contract_1.ContractAbstraction(address, script, this, this, entrypoints, chainId);
return [2 /*return*/, contractAbstractionComposer(abs, this.context)];
}

@@ -359,0 +361,0 @@ });

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

// Override the default michelson encoder semantic to provide richer abstraction over storage properties
exports.smartContractAbstractionSemantic = function (provider) { return ({
var smartContractAbstractionSemantic = function (provider) { return ({
// Provide a specific abstraction for BigMaps

@@ -22,2 +22,3 @@ big_map: function (val, code) {

}); };
exports.smartContractAbstractionSemantic = smartContractAbstractionSemantic;
//# sourceMappingURL=semantic.js.map
"use strict";
/* istanbul ignore file */
Object.defineProperty(exports, "__esModule", { value: true });

@@ -3,0 +4,0 @@ exports.VIEW_LAMBDA = void 0;

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

// - Smart contract call can contains internal operation results when they call other smart contract internally or originate contracts
exports.flattenOperationResult = function (response) {
var flattenOperationResult = function (response) {
var results = Array.isArray(response) ? response : [response];

@@ -77,6 +77,7 @@ var returnedResults = [];

};
exports.flattenOperationResult = flattenOperationResult;
/***
* @description Flatten all error from preapply response (including internal error)
*/
exports.flattenErrors = function (response, status) {
var flattenErrors = function (response, status) {
var e_1, _a;

@@ -117,2 +118,3 @@ if (status === void 0) { status = 'failed'; }

};
exports.flattenErrors = flattenErrors;
//# sourceMappingURL=operation-errors.js.map

@@ -17,6 +17,7 @@ "use strict";

Object.defineProperty(exports, "OpKind", { enumerable: true, get: function () { return rpc_1.OpKind; } });
exports.attachKind = function (op, kind) {
var attachKind = function (op, kind) {
return __assign(__assign({}, op), { kind: kind });
};
exports.findWithKind = function (arr, kind) {
exports.attachKind = attachKind;
var findWithKind = function (arr, kind) {
if (Array.isArray(arr)) {

@@ -29,23 +30,31 @@ var found = arr.find(function (op) { return op.kind === kind; });

};
exports.isKind = function (op, kind) {
exports.findWithKind = findWithKind;
var isKind = function (op, kind) {
return op.kind === kind;
};
exports.isOpWithFee = function (op) {
exports.isKind = isKind;
var isOpWithFee = function (op) {
return ['transaction', 'delegation', 'origination', 'reveal'].indexOf(op.kind) !== -1;
};
exports.isOpRequireReveal = function (op) {
exports.isOpWithFee = isOpWithFee;
var isOpRequireReveal = function (op) {
return ['transaction', 'delegation', 'origination'].indexOf(op.kind) !== -1;
};
exports.isSourceOp = function (op) {
exports.isOpRequireReveal = isOpRequireReveal;
var isSourceOp = function (op) {
return ['transaction', 'delegation', 'origination', 'reveal', 'ballot'].indexOf(op.kind) !== -1;
};
exports.hasMetadata = function (op) {
exports.isSourceOp = isSourceOp;
var hasMetadata = function (op) {
return 'metadata' in op;
};
exports.hasMetadataWithResult = function (op) {
exports.hasMetadata = hasMetadata;
var hasMetadataWithResult = function (op) {
return exports.hasMetadata(op) && 'operation_result' in op.metadata;
};
exports.hasMetadataWithInternalOperationResult = function (op) {
exports.hasMetadataWithResult = hasMetadataWithResult;
var hasMetadataWithInternalOperationResult = function (op) {
return exports.hasMetadata(op) && 'internal_operation_results' in op.metadata;
};
exports.hasMetadataWithInternalOperationResult = hasMetadataWithInternalOperationResult;
//# sourceMappingURL=types.js.map

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

};
exports.evaluateOpFilter = function (op, filter) {
var evaluateOpFilter = function (op, filter) {
if ('opHash' in filter) {

@@ -70,3 +70,4 @@ return opHashFilter(op, filter);

};
exports.evaluateExpression = function (op, exp) {
exports.evaluateOpFilter = evaluateOpFilter;
var evaluateExpression = function (op, exp) {
if (Array.isArray(exp.and)) {

@@ -82,3 +83,4 @@ return exp.and.every(function (x) { return exports.evaluateFilter(op, x); });

};
exports.evaluateFilter = function (op, filter) {
exports.evaluateExpression = evaluateExpression;
var evaluateFilter = function (op, filter) {
var filters = [];

@@ -100,2 +102,3 @@ if (!Array.isArray(filter)) {

};
exports.evaluateFilter = evaluateFilter;
//# sourceMappingURL=filters.js.map

@@ -70,9 +70,6 @@ "use strict";

var TezosToolkit = /** @class */ (function () {
function TezosToolkit(_rpc, _context) {
if (_context === void 0) { _context = new context_1.Context(_rpc); }
function TezosToolkit(_rpc) {
this._rpc = _rpc;
this._context = _context;
this._options = {};
this.format = format_1.format;
this.batch = this._context.batch.batch.bind(this._context.batch);
if (typeof this._rpc === 'string') {

@@ -84,4 +81,6 @@ this._rpcClient = new rpc_1.RpcClient(this._rpc);

}
this._context = new context_1.Context(_rpc);
this._wallet = new wallet_1.Wallet(this._context);
this.setProvider({ rpc: this._rpcClient });
this.batch = this._context.batch.batch.bind(this._context.batch);
}

@@ -272,2 +271,12 @@ /**

});
/**
* @description Allow to add a module to the TezosToolkit instance. This method adds the appropriate Providers(s) required by the module to the internal context.
*
* @param module extension to add to the TezosToolkit instance
*
* @example Tezos.addExtension(new Tzip16Module());
*/
TezosToolkit.prototype.addExtension = function (module) {
module.configureContext(this._context);
};
TezosToolkit.prototype.getFactory = function (ctor) {

@@ -274,0 +283,0 @@ var _this = this;

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

var transaction_operation_1 = require("./transaction-operation");
exports.cacheUntil = function (cacheUntilObs) { return function (source) {
var cacheUntil = function (cacheUntilObs) { return function (source) {
var subject = null;

@@ -80,3 +80,4 @@ return rxjs_1.defer(function () {

}; };
exports.createNewPollingBasedHeadObservable = function (pollingTimer, sharedHeadOb, context, scheduler) {
exports.cacheUntil = cacheUntil;
var createNewPollingBasedHeadObservable = function (pollingTimer, sharedHeadOb, context, scheduler) {
return pollingTimer.pipe(operators_1.switchMap(function () { return sharedHeadOb; }), operators_1.distinctUntilKeyChanged('hash'), operators_1.timeoutWith(context.config.confirmationPollingTimeoutSecond * 1000, rxjs_1.throwError(new Error('Confirmation polling timed out')), scheduler), operators_1.shareReplay({

@@ -87,2 +88,3 @@ refCount: true,

};
exports.createNewPollingBasedHeadObservable = createNewPollingBasedHeadObservable;
var OperationFactory = /** @class */ (function () {

@@ -89,0 +91,0 @@ function OperationFactory(context) {

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

var operation_errors_1 = require("../operations/operation-errors");
exports.receiptFromOperation = function (op, _a) {
var receiptFromOperation = function (op, _a) {
var _b = _a === void 0 ? {

@@ -42,2 +42,3 @@ ALLOCATION_BURN: 257,

};
exports.receiptFromOperation = receiptFromOperation;
//# sourceMappingURL=receipt.js.map

@@ -235,14 +235,14 @@ "use strict";

Wallet.prototype.pkh = function (_a) {
var forceRefetch = (_a === void 0 ? {} : _a).forceRefetch;
var _b = _a === void 0 ? {} : _a, forceRefetch = _b.forceRefetch;
return __awaiter(this, void 0, void 0, function () {
var _b;
return __generator(this, function (_c) {
switch (_c.label) {
var _c;
return __generator(this, function (_d) {
switch (_d.label) {
case 0:
if (!(!this._pkh || forceRefetch)) return [3 /*break*/, 2];
_b = this;
_c = this;
return [4 /*yield*/, this.walletProvider.getPKH()];
case 1:
_b._pkh = _c.sent();
_c.label = 2;
_c._pkh = _d.sent();
_d.label = 2;
case 2: return [2 /*return*/, this._pkh];

@@ -378,5 +378,6 @@ }

*/
Wallet.prototype.at = function (address) {
Wallet.prototype.at = function (address, contractAbstractionComposer) {
if (contractAbstractionComposer === void 0) { contractAbstractionComposer = function (x) { return x; }; }
return __awaiter(this, void 0, void 0, function () {
var script, entrypoints, blockHeader, chainId;
var script, entrypoints, blockHeader, chainId, abs;
return __generator(this, function (_a) {

@@ -394,3 +395,4 @@ switch (_a.label) {

chainId = blockHeader.chain_id;
return [2 /*return*/, new contract_1.ContractAbstraction(address, script, this, this.context.contract, entrypoints, chainId)];
abs = new contract_1.ContractAbstraction(address, script, this, this.context.contract, entrypoints, chainId);
return [2 /*return*/, contractAbstractionComposer(abs, this.context)];
}

@@ -397,0 +399,0 @@ });

@@ -9,5 +9,5 @@ import { Schema } from '@taquito/michelson-encoder';

constructor(id: BigNumber, schema: Schema, provider: ContractProvider);
get(keyToEncode: string): Promise<unknown>;
get<T>(keyToEncode: string): Promise<T | undefined>;
toJSON(): string;
toString(): string;
}

@@ -46,2 +46,5 @@ import { ParameterSchema, Schema } from '@taquito/michelson-encoder';

}
/**
* @description Utility class to retrieve data from a smart contract's storage without incurring fees via a contract's view method
*/
export declare class ContractView {

@@ -55,3 +58,12 @@ private currentContract;

private args;
constructor(currentContract: ContractAbstraction<ContractProvider | Wallet>, provider: ContractProvider | Wallet, name: string, chainId: string, callbackParametersSchema: ParameterSchema, parameterSchema: ParameterSchema, args: any[]);
constructor(currentContract: ContractAbstraction<ContractProvider | Wallet>, provider: ContractProvider, name: string, chainId: string, callbackParametersSchema: ParameterSchema, parameterSchema: ParameterSchema, args: any[]);
/**
*
* @description Find which lambda contract to use based on the current network,
* encode parameters to Michelson,
* create an instance of Lambdaview to retrive data, and
* Decode Michelson response
*
* @param Options Address of a lambda contract (sandbox users)
*/
read(customLambdaAddress?: string): Promise<any>;

@@ -58,0 +70,0 @@ }

@@ -6,1 +6,2 @@ export * from './contract';

export * from './prepare';
export * from './view_lambda';
import { Schema } from '@taquito/michelson-encoder';
import { Context } from '../context';
import { DelegateOperation } from '../operations/delegate-operation';

@@ -121,3 +122,3 @@ import { OriginationOperation } from '../operations/origination-operation';

transfer(params: TransferParams): Promise<TransactionOperation>;
at(address: string, schema?: ContractSchema): Promise<ContractAbstraction<ContractProvider>>;
at<T extends ContractAbstraction<ContractProvider>>(address: string, contractAbstractionComposer?: (abs: ContractAbstraction<ContractProvider>, context: Context) => T): Promise<T>;
}

@@ -86,3 +86,5 @@ import { Schema } from '@taquito/michelson-encoder';

transfer(params: TransferParams): Promise<TransactionOperation>;
at(address: string): Promise<ContractAbstraction<ContractProvider>>;
at<T extends ContractAbstraction<ContractProvider>>(address: string, contractAbstractionComposer?: ContractAbstractionComposer<T>): Promise<T>;
}
declare type ContractAbstractionComposer<T> = (abs: ContractAbstraction<ContractProvider>, context: Context) => T;
export {};
import { RpcClient } from '@taquito/rpc';
import { RPCBatchProvider } from './batch/rpc-batch-provider';
import { Protocols } from './constants';
import { Config, Context, TaquitoProvider } from './context';
import { Config, TaquitoProvider } from './context';
import { ContractProvider, EstimationProvider } from './contract/interface';
import { Extension } from './extension/extension';
import { Forger } from './forger/interface';

@@ -29,2 +31,3 @@ import { format } from './format';

export * from './wallet';
export { Extension } from './extension/extension';
export interface SetProviderOptions {

@@ -46,3 +49,2 @@ forger?: Forger;

private _rpc;
private _context;
private _stream;

@@ -52,4 +54,6 @@ private _options;

private _wallet;
private _context;
batch: RPCBatchProvider['batch'];
readonly format: typeof format;
constructor(_rpc: RpcClient | string, _context?: Context);
constructor(_rpc: RpcClient | string);
/**

@@ -120,3 +124,2 @@ * @description Sets configuration on the Tezos Taquito instance. Allows user to choose which signer, rpc client, rpc url, forger and so forth

get operation(): OperationFactory;
batch: (params?: import("./operations/types").ParamsWithKind[] | undefined) => import("./batch/rpc-batch-provider").OperationBatch;
/**

@@ -138,3 +141,11 @@ * @description Provide access to operation estimation utilities

get signer(): Signer;
/**
* @description Allow to add a module to the TezosToolkit instance. This method adds the appropriate Providers(s) required by the module to the internal context.
*
* @param module extension to add to the TezosToolkit instance
*
* @example Tezos.addExtension(new Tzip16Module());
*/
addExtension(module: Extension): void;
getFactory<T, K extends Array<any>>(ctor: TaquitoProvider<T, K>): (...args: K) => T;
}

@@ -12,3 +12,3 @@ import { BlockResponse, OperationContentsAndResultOrigination, OperationContentsAndResultReveal } from '@taquito/rpc';

status(): Promise<OperationStatus>;
contract(): Promise<import("../contract").WalletContract>;
contract(): Promise<import("../contract").ContractAbstraction<import("./wallet").Wallet>>;
}
import { Context } from '../context';
import { ContractMethod, WalletContract } from '../contract';
import { ContractAbstraction, ContractMethod } from '../contract';
import { OpKind, withKind } from '../operations/types';

@@ -130,3 +130,3 @@ import { WalletDelegateParams, WalletOriginateParams, WalletProvider, WalletTransferParams } from './interface';

*/
at(address: string): Promise<WalletContract>;
at<T extends ContractAbstraction<Wallet>>(address: string, contractAbstractionComposer?: (abs: ContractAbstraction<Wallet>, context: Context) => T): Promise<T>;
}
{
"name": "@taquito/taquito",
"version": "7.1.0-preview-lambdaview.0",
"version": "7.2.0-alpha.0",
"description": "High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.",

@@ -80,7 +80,7 @@ "keywords": [

"dependencies": {
"@taquito/http-utils": "^7.1.0-preview-lambdaview.0",
"@taquito/michel-codec": "^7.1.0-preview-lambdaview.0",
"@taquito/michelson-encoder": "^7.1.0-preview-lambdaview.0",
"@taquito/rpc": "^7.1.0-preview-lambdaview.0",
"@taquito/utils": "^7.1.0-preview-lambdaview.0",
"@taquito/http-utils": "^7.2.0-alpha.0",
"@taquito/michel-codec": "^7.2.0-alpha.0",
"@taquito/michelson-encoder": "^7.2.0-alpha.0",
"@taquito/rpc": "^7.2.0-alpha.0",
"@taquito/utils": "^7.2.0-alpha.0",
"bignumber.js": "^9.0.1",

@@ -92,9 +92,9 @@ "rx-sandbox": "^1.0.3",

"@babel/types": "7.11.5",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"colors": "^1.4.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"jest": "^26.5.2",
"jest-config": "^26.5.2",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"lint-staged": "^10.4.0",

@@ -112,8 +112,8 @@ "lodash.camelcase": "^4.3.0",

"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.3",
"typescript": "^4.1.2",
"webpack": "^4.44.2",

@@ -124,3 +124,3 @@ "webpack-assets-manifest": "^3.1.1",

},
"gitHead": "5263f97e652a38b0d04f1696241ed214c59b3c6d"
"gitHead": "cb287bf294290e81516f30a606b55cf26e0b3225"
}

@@ -10,4 +10,4 @@ [![pkgsign status](https://us-central1-pkgsign.cloudfunctions.net/pkgsign-badge?name=@taquito/taquito&expectedIdentity=%40jevonearth)](https://github.com/RedpointGames/pkgsign)

```html
<script src="https://unpkg.com/@taquito/taquito@7.0.0-beta.0/dist/taquito.min.js"
crossorigin="anonymous" integrity="sha384-RZiQYo14SL8QO7L6eGZOgqdt59Y1n2rNqmeqQaNy460S8BXxd7pr255cwlTdIgHU"></script>
<script src="https://unpkg.com/@taquito/taquito@7.1.0-beta.0/dist/taquito.min.js"
crossorigin="anonymous" integrity="sha384-c9msz0FnVsYK9zbVj8VRZUwGDJb7H9xG7F2drGc7sbeF/uDXYs8Eg3IKMACLPtsL"></script>
```

@@ -14,0 +14,0 @@

@@ -29,3 +29,3 @@ {

"path": "dist/lib/contract/contract.js",
"sha512": "b7a3ace6469174fd543b0a7877471eb1966d7eb6bedf961df991852ebc34769314b8a9a54c7580e023aa279ca9dfade0f020ccab413dbc18cfd210f29e43f592"
"sha512": "e7818061333a3d1fd9790308edf57c513a490cb8654d11762aa5dcf1c73e3826ead4df459eb22b39aeefd3aba2a938d1359762c2f0742a96fe3a0d927c265e56"
},

@@ -50,3 +50,3 @@ {

"path": "dist/lib/subscribe/filters.js",
"sha512": "95e78081b973b477b5fcc8ee51d4eb0fb67d6697c3315e7f5dcf6b52e1fd367c87f6c870ce97daab6ae7b93cecdf83a13f63e2349a17b022c93675da8497ffd1"
"sha512": "4454580b6c49b0d1ba8470d96a64ce4c070c402d7df0855721e557cbfee8b28205ba8af5a1941ab6feeee26ab25a8b9e2f046ae854f6fbc3d9a902a90bb3da64"
},

@@ -59,3 +59,3 @@ {

"path": "dist/lib/contract/index.js",
"sha512": "7acec56298982e8acb12d12c89539d73b277b204c8e0e4b96018d0491b8095999cb80d2b5b4e2da0b05f22e0c4f703bd321bfc94cea7d5e504bc525c184ad683"
"sha512": "27fcbefbe93e56f27b486d02bf0308361c3179a1175212bca72e25f7f54d1d5b656984267f9907211d946dc7a9dbf6a42b7b1f23765fde0738a5af36b9a76785"
},

@@ -124,3 +124,3 @@ {

"path": "dist/lib/operations/operation-errors.js",
"sha512": "0eea1af66fa59566d91e2bd2f82083af1b6b4232304a68a8263acad480c244c576c6a2d892228c26093d637e6638c4744e59328822305be5cd9c4ac2b550921f"
"sha512": "e3600d1da1afe145a7606904c3d40e6e9ac516d41d6cfde57cf60f4c5e24e469c642ba0f6d8876705a4ec258b5d8e1bfad690f0f102fff102c011f41f6d43123"
},

@@ -137,3 +137,3 @@ {

"path": "dist/lib/wallet/opreation-factory.js",
"sha512": "75c48f8469230a4392f952d89fca8bdb4f7c211fbdc6d29b953430f9905d0ca8d460fb991a2b07c7cc5522d4f8ff99e052c2d2ce0baa0c13791f1cb919b4e0be"
"sha512": "838309d9f5f8263937b471fe801138c227820ddf74bd8713795bfb872e08f49cb93ff94d1065a2d4aef821162a7d889812e65a1b2e6042e4d9aa3584fe236708"
},

@@ -158,7 +158,7 @@ {

"path": "dist/lib/contract/prepare.js",
"sha512": "49aaca36f19ceca74e7b744de9f3ad2ca584a8db9bcabf7eadadfe8d5e9de02d86dab2502507cd1fdf01a1082ef69afb5183bcb7cbd16a9491a8fa61747bed30"
"sha512": "134652c6e57afa5cf9e679bda86d55b00d624b881f292d6405e1e5a4d085c21fb3e043359a9d4f4e5850cbe7a77731b545cfb8d6a6ce70c363e3ce630c611f0c"
},
{
"path": "dist/lib/wallet/receipt.js",
"sha512": "a27001b172bb2b600f524f317a55de58ed540ac93946f4d1f412008b7b5ca3257f72dcfa3f44e92a198bb8cf8eab302da1ad9b447d854d5b1b1e8616b508d0db"
"sha512": "a934d2ca1a2c70f36fa1beb0545a2cb544bdcd3e0d9653fea95760851d046221d64e1cf22aa2b0ce8246d5e595d4874538251d56442a3f3221de89fbafc88b4d"
},

@@ -191,15 +191,19 @@ {

"path": "dist/lib/contract/semantic.js",
"sha512": "7988248afebcb60a2ffbf1f622141bb99c7518e4f5691f07cea6ab0426c44bdfc064308b796f031f6d1993de32d3392a2ed1ac6d1ff5fd33c0281a6a257dc69f"
"sha512": "a86fb625f714446ea0fe67fe56502fd4c4be31dd4395ab4874a9b28cfbebf47ba6b826a4883ab17ce34dc2211f5035dab9e3f6ba5387bc6fbe535a59384410a1"
},
{
"path": "dist/taquito.es5.js",
"sha512": "011c9547309984c284abb0f20228fab308c8c721b428de27550072e2ef68be00d0a0e8e6bca8f0c70296cd4611b7f47363aca47d81443e5fcd85338db59c4801"
"sha512": "ee5b58ab6a0e9b3c7cc29644b582d474f79d25c426c0365f46a87cb630f6e9a4c11349a73e307a9d1d1aeed7b7780f4928f96d5ebc476ebd0c9f262c7f36ce2b"
},
{
"path": "dist/lib/taquito.js",
"sha512": "716a588160851112b13e69bbb4eee034cf38faab161fde9524f69fed67bd893d5e7288c855240dcc5960cc499663eb9d87bc081d6ae27a14b7d840620b473218"
"sha512": "5b183728525b9b6bcb772d42a2a2a3952aabcbc29e7a08cb3ca943631045e5b6b461d9b0d94cef1e160ce0034083e1067d070d309714296aeabcc5eb6dbd5222"
},
{
"path": "dist/taquito.min.js",
"sha512": "f9ec4089807c41007f49e998862563885f178e8816e31f0a580a2185249a0829127fcbe4ca30dda085585c1df2e4393f8211879520af40ed968132a360616f92"
},
{
"path": "dist/taquito.umd.js",
"sha512": "58278b46f446ee2af951e59f02d03932aeb97f926624cee8758e4f36e7df49b7290b1c4ceebb9a281cd5f67b1b63d577a8902ab6a31d26bff1de06b968fd31be"
"sha512": "6391a2e9e0505f03ffb7470ec3951d7aa3917ebc8770c68fc73ba26a7c973191934544f6cea736bbd88b2316adc67e88d14b71cf592748c46473c1d3053de9f1"
},

@@ -216,11 +220,11 @@ {

"path": "dist/lib/operations/types.js",
"sha512": "f9fa3bb720faf8eb483e39a8e22a577038735ca93bdfad47a324c54b100f183b99d27c4cc4fb5b18000655f0f63c4f86265f6b5c0ef020fcf120c45d7a96d83b"
"sha512": "f8b8c08e25845ab975633e0e6722f7b5bcc1a78c22250daaf701fd873f666bbd172cc34613cfa443359b170f2646ec725b82a88dbd178e73313aaab496896d1d"
},
{
"path": "dist/lib/contract/view_lambda.js",
"sha512": "b5a8e92befad072215ddfcb7b44d41fa917bdf47a46a51353f21e95fdc6dc1218fc9c4e00364f184de01e3bcbb92395771f9264135a8b9706dc63ee7346916cd"
"sha512": "d910a500f1e21352d1f42a2f03856a353715457173c836330a63d88eaea4068c2d6d297a10d16d23b70f5a3745dfa8da21b1a56e99b23c7922fd0d8b50c25962"
},
{
"path": "dist/lib/wallet/wallet.js",
"sha512": "2dd4203a38fd18748798776447eb06e2b85890f7600eeea8a25d9d2b3bde14606bb58248bcc4c5cce74606ee67368f1c32aea284e8a576c2d6db82c564643af1"
"sha512": "816eec0fb4c79ad66adcf39273c5a1662f08b8635f890d9df6bcd2e90724b670f9bb8f411e13c522f7ff35a6de0d964226118d9ed2b64e9cb4b55afffd8650a8"
},

@@ -249,3 +253,3 @@ {

"path": "dist/lib/contract/contract.js.map",
"sha512": "8e0b3e03a35d288b0e32713cf57f586a0e3093f939ed81d331dc43d5a94387d6b1b215012589ff9f88d90f67ee3f17d09935e3bdb9109f2fc6e453911fa15e5e"
"sha512": "714e002c09802c78abc59e0b2e7d7a378d05f3533deab68a10e6dd43644762dd6c580f06cfa6502a1abfe71ce6f222eef0eb1188ad74df37b1aa57d692ad7adb"
},

@@ -270,3 +274,3 @@ {

"path": "dist/lib/subscribe/filters.js.map",
"sha512": "4a8b1b278e4dc047e9889150dc20d64fa88731ae6c366f970c584e48798e772f703b1c6be8b567293670b0d873cba8eeff15f37d07d63f8ad11620dbecc33f01"
"sha512": "d491d1d7a23ea23db9c8d84f5a026901763e98f2d88da2ad5551ee634c5707b78a860119111b859893915be4ea009a0bc0ef1b546d4d18cf31bf079e29425c13"
},

@@ -279,3 +283,3 @@ {

"path": "dist/lib/contract/index.js.map",
"sha512": "8aa96c3be894c40bdd729ed6e9c5fc9b535c34e4349f6f1b7a9bff90d07cf03effa1377efc6e92f105b892e882a76fe32c6deb3e9283eafe57ae10d4cc887b65"
"sha512": "0b2d3e671192acdb2aed53f063b27ed7d65cc86632e105623fc87f12a1968dc0f4cacbec19466951f7ce6cde7ee45250c10fc1d2fa430abb2f4270e5376e5451"
},

@@ -344,3 +348,3 @@ {

"path": "dist/lib/operations/operation-errors.js.map",
"sha512": "4a891b6f1a83472f02372bbedd4cea0e411e45a58f7be36e122f072e15e70a89135ec110e109ebd536081162c9e32a915f371dfe73d1748a2f6ad13b2b416b99"
"sha512": "b1c5b41b1b6ffdbbe826a398b6ca0be0001e765dcfce6a24a9177733ce34eb386469ef14814fc73963381da504bf6440b70bd6b3d5a9bbea95c94c7ea9b117ed"
},

@@ -357,3 +361,3 @@ {

"path": "dist/lib/wallet/opreation-factory.js.map",
"sha512": "8683141746683b63804331c3a716c4e715b73e85ec80fef9bdbf257373abddb1f7e2ff0c3dfc3bbec294cb399e4038d58b62bc210c2a3bef2be62a9dad123c47"
"sha512": "f2c2785f42fa3ab75258293dc6bd372ca6fc1d799db89bf660883d1da4f00d109a2e15d4c386d8bb9ffa18e6aac64ecb0db4c300772d18a978c1ffd7d46ac048"
},

@@ -374,7 +378,7 @@ {

"path": "dist/lib/contract/prepare.js.map",
"sha512": "21ebc8645ec76c4a226840fbc6e5e5002dce3e8f9ee59bf4c83ee42b11f5d839ea13cd6470379cfa51dfe74eeb326f0c730e88dbac5c60ad4e79d55f91128d35"
"sha512": "26ce52d0900bb5eace8c14ff21a1ee2e20a65d7c2f343727e0f8f9014fe0e8404d1496e08ca66f9231fa1f38922cac8bc6b922285d8f3a35e290e9f649560294"
},
{
"path": "dist/lib/wallet/receipt.js.map",
"sha512": "b27d8369326b134282a234adc471baee6c44ab0778041190f3d91a00493d8556976a42bcfd3af50962c77fd3e46c92bacdbaee91027fd7d078461406be6a86ac"
"sha512": "f30e5aa3c5bf7ec79d1a9ea6c2f60742c68d2399e3c88e29a6e1bea2ae0278e0f29130d6660f99b7147746f5fa467cbbc3b5f2b896ce53e1eae52403d3e64397"
},

@@ -407,15 +411,15 @@ {

"path": "dist/lib/contract/semantic.js.map",
"sha512": "91ecf283c6a653ef5464fc9e6a166698590d99722553ab2cbd60356bfae7cb25e60f86d2f9d8c829e779e5353a5bb9474546d78e01dbecc9894731607658e74d"
"sha512": "5063f2ed25bbd1efc79be634ed1039158304a0d8b6667d408789beccb17af82fbcdd6b15d67f78989fa5c148661efd01fa7d2a46e48ab0d517d46f5b6c7d810d"
},
{
"path": "dist/taquito.es5.js.map",
"sha512": "5957c45afee2f719be8e8d5f48c1a37d92590a90b9c5c54f48b09473dd28ab8b5f55b2fb8b5f77648d1934d03105c19ef59a0ae57f56aff69df9794d34e99e05"
"sha512": "cd573c6b8d66f9a0333cefcb59d581a72955f3ae5f00c71462477e2a6a33baf45c87a79d2b356a1a64efa18bc22595152af98db707b2510aca7dde55c509806d"
},
{
"path": "dist/lib/taquito.js.map",
"sha512": "98babb51772900d16f0575f0ba21d051e33cb8733cb7ffc80bf7a1adb40c3c73b7798e26c62b9b0f8a178bf182467053c0f8b8c66236309a4b2a9dd0b06d7a66"
"sha512": "9470f3b1187aca2ae64f3d0ce42dc5ec761064468f06a406ce8c6bf74383104383193b2f2012af8c16681df2f491212a87b332ac58a5ca51878f8d47c9a29a9a"
},
{
"path": "dist/taquito.umd.js.map",
"sha512": "47dd0e4aade9cd31a33f9209e0f61e2f4c4482a633edec262a502dfd9f7622b68a4b786d68e6535d08a267f0a46a8bfabfc91eb8b5b45f4211d098f481d9fd25"
"sha512": "ac64a23702d1a2359bca3ea5543e45c84cc7dc16e4ad2f055c19769113337c14c80625ace3cd0b6f66b878fb94585ac0792cf4e1cd033c246469b693718a5fc9"
},

@@ -432,15 +436,15 @@ {

"path": "dist/lib/operations/types.js.map",
"sha512": "d6962f944e36fa03d734913cb4fd8f19fb4ca26428412d14432eab9ac8e0402111444a0bc4b12eec77224f96ae16efb07c28bc321ace2a36eafedcfd0bfbdf93"
"sha512": "3a911cbe4cdbf62a13596203ec99f766ff4c70e3c55b14152ee7db5d0d78b1f788a4a0b33c8427550c60907da9c6f087348738b35c4abf9965fa9f0022ffcd60"
},
{
"path": "dist/lib/contract/view_lambda.js.map",
"sha512": "d89cf62e2819934ce633bee7cd56846a8f4d4a864994afe460bf4716a14522f4842a9215321855a46faad3210938bbf38a5702184463106c70755f1dbc814307"
"sha512": "f6144b96d9345da551b9b93b0b8099a044dcf03a4a80f299ac05818944ab5200ca905a984143f6f58db585b55ed0b814c4a55310f71f62201cc7484d0c6b26b3"
},
{
"path": "dist/lib/wallet/wallet.js.map",
"sha512": "8711520e7678d943fffa138d6906b458e40d9c9e8009d123086779a5ce2acbb6819fc09a234eee3b8418885c5cb7154682590aea495dd0b52204ca77aa0911cb"
"sha512": "dabfb70844028ebc3caf49e2dbd9a1b3937b01f0513530ca4eda953e56707bf95e92752d235eb698d8fb86a1f61168bf7eb03f610e5997ad4790274a917bf6fa"
},
{
"path": "README.md",
"sha512": "ce19929ea8883fdc2db1a84d36c959d426b0d799ecda2c1ec80ee0ba4b8abeaa13f2ace46670e2742aecb70399c1bcc91629ae83317412fac1984842445cbcc8"
"sha512": "7ab9ff2c23e5db0c1543dcc36bcd43d1b03af1f29972764ce644fa1a3d0b90ebdca5a803e79d4fd51974af6cd161ce0d685f53f0031cee9862d8e4f345340e79"
},

@@ -469,3 +473,3 @@ {

"path": "dist/types/contract/contract.d.ts",
"sha512": "216ea67c686a7859109f07bc05b451cd06cea1d90dd13987ca47296e7ebc4015b53648fb2d7bd8e2e7a2d66e1fa5485cbd86ee5ed4af3aa194eb4b2cea48dbcd"
"sha512": "eb3005318d98f5da7b189f883b6d9c0284dd42f12bc5489f574e553ed25a0c12b2d98c0eb677fe2bcc0633aa3d7ba131120f7548b20b9ee284a30271ca2b3456"
},

@@ -498,3 +502,3 @@ {

"path": "dist/types/contract/index.d.ts",
"sha512": "c375f34100aaa14436bcb6a49b86ba1ca4d308adf655ec867583503c528312b4466deeb750a612340dd2bb4541e9937eae2540aa6bb852c51ab553573d4c753c"
"sha512": "6d80630154eda17c9f06f38836d22caaa5e4473fd71c2cfba380a7df9464043d2be9a29935a90c24255f46a15df07dc8bc0475f47b20c2966408bc6e72f8a2a5"
},

@@ -627,3 +631,3 @@ {

"path": "dist/types/taquito.d.ts",
"sha512": "9817497495de215bae7128f637b7129ca515a4258728ad929a9389490c8969a8820bc116e90fdfc494b27b13a3c13a9c597739b64d0578268244fba068b02a9f"
"sha512": "52ab5f6500dffab6257f8b2cba25c5948125e174979806eb5773d8924bb0377dbf1c07de5cfd5e6c7abb7cebc69e5b44484a1d37f301c891928c23e91cda0b8d"
},

@@ -649,2 +653,6 @@ {

"sha512": "19db47c6a9fdf581097ebfa00e54178aaf99c2267eeecff4db1c572eb08341913958754ee91cf053eff12f17e392c4799bf900823f627fa44b82fa4a24366b4f"
},
{
"path": "dist/taquito.min.js.LICENSE.txt",
"sha512": "3f1d7511b4d8fb46608a36f18f2b0de5336d75dda7a2520e7f6a145a0d027e83860ff6ef6d5135a21e6082b751eb7bf04fe82a4a43d5054e94eaf8ed4984c4e0"
}

@@ -688,3 +696,3 @@ ]

],
"sha512": "bdcfa043cbd816765121a80c25ad7162066f31ee096da4b8f29db3036003fc148e7bce44fa7be810e792b728927ef1c09fcac2c476b9a8915c848549add3e030"
"sha512": "efd6ba61e1d4e585c9e8732e5c26c2c0e235ac5cc5772c81466d76c330f6e8d908bf3fe410fe972cc7853d5b88619f108ed7b6a5919c19489897ac0832a8a901"
}

@@ -697,3 +705,3 @@ },

"name": "@taquito/taquito",
"version": "7.1.0-preview-lambdaview.0",
"version": "7.1.0-beta.0",
"description": "High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.",

@@ -775,7 +783,7 @@ "keywords": [

"dependencies": {
"@taquito/http-utils": "^7.1.0-preview-lambdaview.0",
"@taquito/michel-codec": "^7.1.0-preview-lambdaview.0",
"@taquito/michelson-encoder": "^7.1.0-preview-lambdaview.0",
"@taquito/rpc": "^7.1.0-preview-lambdaview.0",
"@taquito/utils": "^7.1.0-preview-lambdaview.0",
"@taquito/http-utils": "^7.1.0-beta.0",
"@taquito/michel-codec": "^7.1.0-beta.0",
"@taquito/michelson-encoder": "^7.1.0-beta.0",
"@taquito/rpc": "^7.1.0-beta.0",
"@taquito/utils": "^7.1.0-beta.0",
"bignumber.js": "^9.0.1",

@@ -787,9 +795,9 @@ "rx-sandbox": "^1.0.3",

"@babel/types": "7.11.5",
"@types/jest": "^26.0.14",
"@types/node": "^14.11.5",
"@types/jest": "^26.0.16",
"@types/node": "^14.14.10",
"colors": "^1.4.0",
"coveralls": "^3.1.0",
"cross-env": "^7.0.2",
"jest": "^26.5.2",
"jest-config": "^26.5.2",
"jest": "^26.6.3",
"jest-config": "^26.6.3",
"lint-staged": "^10.4.0",

@@ -807,8 +815,8 @@ "lodash.camelcase": "^4.3.0",

"terser-webpack-plugin": "^4.2.3",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^9.0.0",
"typescript": "^4.0.3",
"typescript": "^4.1.2",
"webpack": "^4.44.2",

@@ -824,3 +832,3 @@ "webpack-assets-manifest": "^3.1.1",

],
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJfqdDpCRAD9Qy5GYHsngAA//UQAHroKjAXPDLvKF/h/Tpdnyyl\nDPtc8X5m6ta8hZrdC2KDjQOEZ4Vb/Hhz+St6AOAQJH16oJvIccVH3LhEBjZRxPXr\nnNspZj0VpCUmtHBOahWefLOsPjs8mgLHbwkWRvbt97RwaF/ceyV2nfopGeZHWtZI\nL7SbpUd3DTGIh9zfcEDFvdUhBwZ7BQOqTkxbdmFy3Cl+G/hUhdv3TsUQnqUS9Owv\nIAMr1wsIc8n/9rt08ppSBOtc3CPfA1nxSCad5LSTmAQq5fhBYcBEjr65eshNrcXq\nyB7bzIgUa7PxLzy1726cxtwOsOJEf7FuPu6LQT69ooWZ/xPscYJmXcWQRXAIVXqH\nuc2un1BYPXBhaUrpF+F6CzyA5rUYL4/wiP6Ut1HL7gYonX2MSD03A99ypAamGSsR\nFlU04QnbtCCK/6J7YGDE5MC9wQowvmAvFnAuQiIqdYfos7XQeZ/nDhkrnZUpQ1H1\nP/6Q25cR2R2hUItCcVzbPf78TF4V9hmet0b0Cq/l86KUxNk8I/R0vSS8ahd9l/3U\n6n4sStLag3qi92Z+D1uc24o/2peuwKW6ANVaYNkg8SNOwkAtHpMI+lgMjTQ9qCTk\nA1D+Du1Cr6swpnkRtRnhflc61B/+pp/OcHcdyrdPU8flOdDU0FKLRA5ksuKci6uY\ntz/oHD7HHv2JmOEipteA\n=udyD\n-----END PGP SIGNATURE-----\n"
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJfz5jSCRAD9Qy5GYHsngAAk7wQAEMmPC1uPCPEDEdv3bzTBMGy\nADeq0yC6a/BXLxEzbDiP5QQH+7atiIPyh9eqRyAq6QzyrtK5T69TekLv98itoWT/\nmG6aHgDkTBuKQhDXl4LlcCWqZuSEyoOEpyUIFPy8vswXn8d2MqtQjqQTfxsl2Sqn\nUqZ2nJd8Kyso8mHMOemQAk7UYk4nCkUSmVJ/O4NUr387dihY6YwAf5WPEeTkHlWG\naqcwcdPqxqeU/P1BwFkouUrZUZUFIxx/QdQbQbaw9lAKionQuTBcOcBV0cZjNMkJ\nrCFnuopekGBvDpW8lyU7PMKDOE/XeRGGGBYJp/o5k5jseZer4XnalVrRhkAO93gT\nLrzNnxjuaNx3T3lwHQo5RUuea9beaTNxOQa3OV0Sr+iaES4zLvSXpbwiWDnAe338\nA9y6aUpEHWEAAxk7jAYHrMGJLJ6n3H67QVYvWDHuLJMR6/Z17+AbGZ85IwBZoVV0\nFz7GFmR8wRlqbpi9W/bOur4Xc76LnnHntNWLJkCPfUvXbhTiW3mj5oy/cVig2RxF\nflXCJWe+QrC7AFOnXbtk3YZuKXDHGAQNEWtpZGMz9y7qLPyXn6kqVxyfkyQNpWKJ\nz1qYRATgrUCcFsL+R9s7ozZtDqj4g2BCO5KXiTjigCwwozYSRRKcfow7OFcn9G7T\nxC8osfne6gtfud9I+Eze\n=DJSa\n-----END PGP SIGNATURE-----\n"
}

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

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

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

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

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 too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

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