Socket
Socket
Sign inDemoInstall

@taquito/michelson-encoder

Package Overview
Dependencies
Maintainers
2
Versions
198
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@taquito/michelson-encoder - npm Package Compare versions

Comparing version 6.1.0-beta.0 to 6.1.1-beta.0

104

dist/lib/michelson-map.js

@@ -56,5 +56,9 @@ "use strict";

};
var _a;
Object.defineProperty(exports, "__esModule", { value: true });
var storage_1 = require("./schema/storage");
var fast_json_stable_stringify_1 = require("fast-json-stable-stringify");
// Retrieve a unique symbol associated with the key from the environment
// Used in order to identify all object that are of type MichelsonMap even if they come from different module
var michelsonMapTypeSymbol = Symbol.for('taquito-michelson-map-type-symbol');
var isMapType = function (value) {

@@ -85,2 +89,3 @@ return 'args' in value && Array.isArray(value.args) && value.args.length === 2;

this.keyMap = new Map();
this[_a] = true;
if (mapType) {

@@ -90,2 +95,8 @@ this.setType(mapType);

}
// Used to check if an object is a michelson map.
// Using instanceof was not working for project that had multiple instance of taquito dependencies
// as the class constructor is different
MichelsonMap.isMichelsonMap = function (obj) {
return obj && obj[michelsonMapTypeSymbol] === true;
};
MichelsonMap.prototype.setType = function (mapType) {

@@ -135,23 +146,23 @@ if (!isMapType(mapType)) {

MichelsonMap.prototype.keys = function () {
var _a, _b, _c, key, e_1_1;
var e_1, _d;
return __generator(this, function (_e) {
switch (_e.label) {
var _b, _c, _d, key, e_1_1;
var e_1, _e;
return __generator(this, function (_f) {
switch (_f.label) {
case 0:
_e.trys.push([0, 5, 6, 7]);
_a = __values(this.entries()), _b = _a.next();
_e.label = 1;
_f.trys.push([0, 5, 6, 7]);
_b = __values(this.entries()), _c = _b.next();
_f.label = 1;
case 1:
if (!!_b.done) return [3 /*break*/, 4];
_c = __read(_b.value, 1), key = _c[0];
if (!!_c.done) return [3 /*break*/, 4];
_d = __read(_c.value, 1), key = _d[0];
return [4 /*yield*/, key];
case 2:
_e.sent();
_e.label = 3;
_f.sent();
_f.label = 3;
case 3:
_b = _a.next();
_c = _b.next();
return [3 /*break*/, 1];
case 4: return [3 /*break*/, 7];
case 5:
e_1_1 = _e.sent();
e_1_1 = _f.sent();
e_1 = { error: e_1_1 };

@@ -161,3 +172,3 @@ return [3 /*break*/, 7];

try {
if (_b && !_b.done && (_d = _a.return)) _d.call(_a);
if (_c && !_c.done && (_e = _b.return)) _e.call(_b);
}

@@ -171,23 +182,23 @@ finally { if (e_1) throw e_1.error; }

MichelsonMap.prototype.values = function () {
var _a, _b, _c, value, e_2_1;
var e_2, _d;
return __generator(this, function (_e) {
switch (_e.label) {
var _b, _c, _d, value, e_2_1;
var e_2, _e;
return __generator(this, function (_f) {
switch (_f.label) {
case 0:
_e.trys.push([0, 5, 6, 7]);
_a = __values(this.entries()), _b = _a.next();
_e.label = 1;
_f.trys.push([0, 5, 6, 7]);
_b = __values(this.entries()), _c = _b.next();
_f.label = 1;
case 1:
if (!!_b.done) return [3 /*break*/, 4];
_c = __read(_b.value, 2), value = _c[1];
if (!!_c.done) return [3 /*break*/, 4];
_d = __read(_c.value, 2), value = _d[1];
return [4 /*yield*/, value];
case 2:
_e.sent();
_e.label = 3;
_f.sent();
_f.label = 3;
case 3:
_b = _a.next();
_c = _b.next();
return [3 /*break*/, 1];
case 4: return [3 /*break*/, 7];
case 5:
e_2_1 = _e.sent();
e_2_1 = _f.sent();
e_2 = { error: e_2_1 };

@@ -197,3 +208,3 @@ return [3 /*break*/, 7];

try {
if (_b && !_b.done && (_d = _a.return)) _d.call(_a);
if (_c && !_c.done && (_e = _b.return)) _e.call(_b);
}

@@ -207,23 +218,23 @@ finally { if (e_2) throw e_2.error; }

MichelsonMap.prototype.entries = function () {
var _a, _b, key, e_3_1;
var e_3, _c;
return __generator(this, function (_d) {
switch (_d.label) {
var _b, _c, key, e_3_1;
var e_3, _d;
return __generator(this, function (_e) {
switch (_e.label) {
case 0:
_d.trys.push([0, 5, 6, 7]);
_a = __values(this.valueMap.keys()), _b = _a.next();
_d.label = 1;
_e.trys.push([0, 5, 6, 7]);
_b = __values(this.valueMap.keys()), _c = _b.next();
_e.label = 1;
case 1:
if (!!_b.done) return [3 /*break*/, 4];
key = _b.value;
if (!!_c.done) return [3 /*break*/, 4];
key = _c.value;
return [4 /*yield*/, [this.keyMap.get(key), this.valueMap.get(key)]];
case 2:
_d.sent();
_d.label = 3;
_e.sent();
_e.label = 3;
case 3:
_b = _a.next();
_c = _b.next();
return [3 /*break*/, 1];
case 4: return [3 /*break*/, 7];
case 5:
e_3_1 = _d.sent();
e_3_1 = _e.sent();
e_3 = { error: e_3_1 };

@@ -233,3 +244,3 @@ return [3 /*break*/, 7];

try {
if (_b && !_b.done && (_c = _a.return)) _c.call(_a);
if (_c && !_c.done && (_d = _b.return)) _d.call(_b);
}

@@ -290,6 +301,6 @@ finally { if (e_3) throw e_3.error; }

MichelsonMap.prototype.forEach = function (cb) {
var e_4, _a;
var e_4, _b;
try {
for (var _b = __values(this.entries()), _c = _b.next(); !_c.done; _c = _b.next()) {
var _d = __read(_c.value, 2), key = _d[0], value = _d[1];
for (var _c = __values(this.entries()), _d = _c.next(); !_d.done; _d = _c.next()) {
var _e = __read(_d.value, 2), key = _e[0], value = _e[1];
cb(value, key, this);

@@ -301,3 +312,3 @@ }

try {
if (_c && !_c.done && (_a = _b.return)) _a.call(_b);
if (_d && !_d.done && (_b = _c.return)) _b.call(_c);
}

@@ -310,2 +321,3 @@ finally { if (e_4) throw e_4.error; }

exports.MichelsonMap = MichelsonMap;
_a = michelsonMapTypeSymbol;
//# sourceMappingURL=michelson-map.js.map

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

};
var _a;
Object.defineProperty(exports, "__esModule", { value: true });

@@ -20,2 +21,3 @@ var bigmap_1 = require("../tokens/bigmap");

var token_1 = require("../tokens/token");
var schemaTypeSymbol = Symbol.for('taquito-schema-type-symbol');
/**

@@ -26,2 +28,3 @@ * @warn Our current smart contract abstraction feature is currently in preview. It's API is not final, and it may not cover every use case (yet). We will greatly appreciate any feedback on this feature.

function Schema(val) {
this[_a] = true;
this.root = createToken_1.createToken(val, 0);

@@ -38,2 +41,5 @@ if (this.root instanceof bigmap_1.BigMapToken) {

}
Schema.isSchema = function (obj) {
return obj && obj[schemaTypeSymbol] === true;
};
Schema.fromRPCResponse = function (val) {

@@ -81,4 +87,4 @@ var storage = val &&

}
var eltFormat = diff.map(function (_a) {
var key = _a.key, value = _a.value;
var eltFormat = diff.map(function (_b) {
var key = _b.key, value = _b.value;
return ({ args: [key, value] });

@@ -123,3 +129,3 @@ });

Schema.prototype.ComputeState = function (tx, state) {
var _a;
var _b;
var _this = this;

@@ -132,3 +138,3 @@ if (!this.bigMap) {

}, {});
return __assign(__assign({}, this.Execute(state)), (_a = {}, _a[this.bigMap.annot()] = bigMap, _a));
return __assign(__assign({}, this.Execute(state)), (_b = {}, _b[this.bigMap.annot()] = bigMap, _b));
};

@@ -138,2 +144,3 @@ return Schema;

exports.Schema = Schema;
_a = schemaTypeSymbol;
//# sourceMappingURL=storage.js.map

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

Object.defineProperty(exports, "__esModule", { value: true });
var michelson_map_1 = require("../michelson-map");
var token_1 = require("./token");
var michelson_map_1 = require("../michelson-map");
var BigMapValidationError = /** @class */ (function (_super) {

@@ -61,3 +61,3 @@ __extends(BigMapValidationError, _super);

BigMapToken.prototype.isValid = function (value) {
if (value instanceof michelson_map_1.MichelsonMap) {
if (michelson_map_1.MichelsonMap.isMichelsonMap(value)) {
return null;

@@ -64,0 +64,0 @@ }

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

Object.defineProperty(exports, "__esModule", { value: true });
var michelson_map_1 = require("../michelson-map");
var token_1 = require("./token");
var michelson_map_1 = require("../michelson-map");
var MapValidationError = /** @class */ (function (_super) {

@@ -55,3 +55,3 @@ __extends(MapValidationError, _super);

MapToken.prototype.isValid = function (value) {
if (value instanceof michelson_map_1.MichelsonMap) {
if (michelson_map_1.MichelsonMap.isMichelsonMap(value)) {
return null;

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

import { MichelsonV1Expression } from '@taquito/rpc';
declare const michelsonMapTypeSymbol: unique symbol;
export declare type MichelsonMapKey = Array<any> | Object | string | boolean | number;

@@ -16,2 +17,4 @@ export declare class MapTypecheckError implements Error {

private keyMap;
[michelsonMapTypeSymbol]: boolean;
static isMichelsonMap(obj: any): obj is MichelsonMap<any, any>;
private keySchema?;

@@ -60,1 +63,2 @@ private valueSchema?;

}
export {};
import { MichelsonV1Expression, ScriptResponse } from '@taquito/rpc';
import { Semantic } from '../tokens/token';
import { RpcTransaction } from './model';
declare const schemaTypeSymbol: unique symbol;
/**

@@ -9,2 +10,4 @@ * @warn Our current smart contract abstraction feature is currently in preview. It's API is not final, and it may not cover every use case (yet). We will greatly appreciate any feedback on this feature.

private root;
[schemaTypeSymbol]: boolean;
static isSchema(obj: any): obj is Schema;
private bigMap?;

@@ -36,1 +39,2 @@ static fromRPCResponse(val: {

}
export {};

@@ -1,2 +0,2 @@

import { Token, TokenFactory, ComparableToken, Semantic, TokenValidationError } from './token';
import { ComparableToken, Semantic, Token, TokenFactory, TokenValidationError } from './token';
export declare class BigMapValidationError extends TokenValidationError {

@@ -3,0 +3,0 @@ value: any;

@@ -1,2 +0,2 @@

import { Token, TokenFactory, Semantic, TokenValidationError, ComparableToken } from './token';
import { ComparableToken, Semantic, Token, TokenFactory, TokenValidationError } from './token';
export declare class MapValidationError extends TokenValidationError {

@@ -3,0 +3,0 @@ value: any;

{
"name": "@taquito/michelson-encoder",
"version": "6.1.0-beta.0",
"version": "6.1.1-beta.0",
"description": "converts michelson data and types into convenient JS/TS objects",

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

"dependencies": {
"@taquito/utils": "^6.1.0-beta.0",
"@taquito/utils": "^6.1.1-beta.0",
"bignumber.js": "^9.0.0",

@@ -76,3 +76,3 @@ "fast-json-stable-stringify": "^2.1.0"

"devDependencies": {
"@taquito/rpc": "^6.1.0-beta.0",
"@taquito/rpc": "^6.1.1-beta.0",
"@types/jest": "^23.3.2",

@@ -104,3 +104,3 @@ "@types/node": "^10.14.13",

},
"gitHead": "2d5087b871ab1fc36bd69bf99476cef15a4c78b5"
"gitHead": "5c113668a9e479d0ebdcd2d01e0a3ef8ad4e6011"
}

@@ -1,2 +0,2 @@

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

@@ -3,0 +3,0 @@ # Taquito Michelson Encoder package

@@ -13,3 +13,3 @@ {

"path": "dist/lib/tokens/bigmap.js",
"sha512": "b0a36731d66703b007ffdfcf575cf623ec15d49a96f5e6666a7fa75a2358c68e001478b83075c780cb44f991c39e75989f97ea9388b732edd1d1d1d22f209e60"
"sha512": "50959f77bbd3b783b5569729597531935c2451b20b3315305cabccc92002217bc45e0c0d37a1d44c9371f845884d3686f53463e2a3dccd79aa331eac4061604d"
},

@@ -62,7 +62,7 @@ {

"path": "dist/lib/tokens/map.js",
"sha512": "5ddeec117e0e81b6fe7b400a3ae37a60c1452ef47d4d1a2df0222dd0e2565c0d21f1eb2f5c25571dca6bdbba435df5b3dcf5700a4b17281fd1580551d748c5f6"
"sha512": "cb00d527bdf5be3c14fa24225306d3ac39cb72f2b8d0d1467b80f4ebf9785b211f1a548c2cbe50b67b9fdbe3791ad68b4164704a75f57c9713eea1fd9ab4d32a"
},
{
"path": "dist/lib/michelson-map.js",
"sha512": "edda471043f11dab09448afb807fd750a538797ec12f71155f61ae8b9917c3c6f3d16fba757d226fa0d919ae526c07f8b4345df075fef15d141a97c159a441bc"
"sha512": "6c0543f7c39d2722eadc1a60c8bf7927ecbd6f03d808a89ab32bd4ef9ce64dc66fb635d04a9247a17b80ec33bf20916e71f8040a21e7b68d40adb98230ca7304"
},

@@ -111,3 +111,3 @@ {

"path": "dist/lib/schema/storage.js",
"sha512": "acef64371d68b0b9bd74e63f724cdf06e2bdb91f0b62f9f70bc6088cb938b16720a663d7e7c626fe052639a5ddfe2f9d0a4d561164ffc1473a0760863dadfed2"
"sha512": "2f59b1a7d50ab4bdb5710aa4c302bb336a6a45c914b38243ce0930f791a7da49916f85d827f617a8b85105ee43b49a4d88193e18c1a960ff48b22c90048ad0e3"
},

@@ -120,3 +120,3 @@ {

"path": "dist/taquito-michelson-encoder.es5.js",
"sha512": "3d1ee1db0832cbd323779a13c2d3d17eabe8fd70aedd47c76d7bbcdd31ad1717549a9a7689c94159a3f61dd42e2f4328187d4625d11472ec2c3d4e696fcb464d"
"sha512": "f11bb0dd1f541803da5bcffa8e193bb068e9781861f2037bcbb4ea9713a5c0f6435bee4515802b362b0e41bdce7ac2b07c7077b7da525f93d9ac213391f95773"
},

@@ -129,3 +129,3 @@ {

"path": "dist/taquito-michelson-encoder.umd.js",
"sha512": "3737c4299c2961d2dfe7556b481131ba3463815bfa5d57edaa24738cf2b2efdac5f774ab6d3c9ebedd7134e4199414ffe1ddb77f06f9d573989cadba8e06cdfd"
"sha512": "fd258d5929861569cecb9ca81ceccc233283a3210fa89993209eade579c7fb7221fb6084181be133efe74939699aae909fa9f32dcac6757076e7aeac7a670a01"
},

@@ -158,3 +158,3 @@ {

"path": "dist/lib/tokens/bigmap.js.map",
"sha512": "2c2d97f57f11502c3eeb7d6685048b45a0ed8a60919d5ba2df63a3ceaa6ee57c93b0580b6d5e34cdb2404825e372942113056a9ee799f589e49b686c1ffd5ae1"
"sha512": "881f9e8e021990155c2bf766f3bedeb5e1f0fc054bc92fe07def2a7810298f37a7698cc717189b27b0d7b07ac405fdd1cf871a04a270882b1baf9522a8064849"
},

@@ -207,7 +207,7 @@ {

"path": "dist/lib/tokens/map.js.map",
"sha512": "6a2758f6a86a821519ab0f634bb32991a00c6141f65bed5495e18ffd255669ebef42c5bcfe315992086d690c93d9d44e0c22403c37c0eae94cbb8a658be4edf5"
"sha512": "22e25056f02de2fd9b9acc5f1909e0a0d6652b344652c22d1c2c1c19d63be62e2a2be420da201eeb2a9a99679c3db10f791e4504f9c372b73f1bb94dee19d0c0"
},
{
"path": "dist/lib/michelson-map.js.map",
"sha512": "d85ba239401c3aa01ccae9e3d40399f5ed9bb7e8f12529fe25fc309c22115b640720646d0c6a4afe5dfae15a86bc03579dec9ab7630684ce84414727b5b086c9"
"sha512": "a9b7fb54c3389ef8a12a1291812e62107f8e904192a9957c69871de38250e4f37ee79bbc653427db9ab19a38a0ac53da943d3fa0635445db96a4bd6c3aa9e46a"
},

@@ -256,3 +256,3 @@ {

"path": "dist/lib/schema/storage.js.map",
"sha512": "4a1c0ab0044443b26d75b4eed508dc9e9dc099bef386b87a9bb055915d3788e36aeae791021ea9767ffd9cc46c76115ea595b9212dac7e67447b30afc36dce1b"
"sha512": "cb31649329fc32ce35e1e1700dcd7076edcda314dec75822ee95733b90b970f76a6b1ce16f623af7f8a23e69a7aad08f2f202add53706b02b237d488a5c77de1"
},

@@ -265,3 +265,3 @@ {

"path": "dist/taquito-michelson-encoder.es5.js.map",
"sha512": "acff3cfe2aa763f32d6996e82eea8223b1586023aa19244ac5edc29d36c21e6dc97433fa3853a33b50bbc7b6bf6c345887f11406e5b99cd2bfc29db20e5969ea"
"sha512": "e5ec51cba2d8a1c0e6eadd0f23a81335adbf5c0b50f823e14e8848a4572c2b08baeb42a0cb9bf14a1a2f9e6aac85f85624048f3df0b3eaa02a7187cc7fb1efe7"
},

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

"path": "dist/taquito-michelson-encoder.umd.js.map",
"sha512": "18b32bac9e4380376f49bee889b5e3ee8f7741df41f240f2acb7fe33d9990f44b606f134f03d21797849318722eb30e0d2eb7b706832ba0c36d62fbf0722c800"
"sha512": "0cd679ddd4fe42a842d81a6e9c63e1748388d2de2e971fdd09ff23db540ced7050db64815e66972ceaa5b11cfcea5d125b4ec4cd4c77fddc1ac05552be3ef546"
},

@@ -299,3 +299,3 @@ {

"path": "README.md",
"sha512": "9cac27a409820f802f48eda86d42dcbdfa434dc2e71e490d3b9df3c8ad1db425811ff46dcf2fdeaba5bd93db6435224461ef357ea4cd1172a65c955aa5ae6d3c"
"sha512": "7b6b3848334c56d9655b1e9501671736292d34dbd6b2e0263f829871ac45faa6a28137462ae99b6d45d3957991404e4d3e3b9132bd110a5c8646367af40c0dfd"
},

@@ -308,3 +308,3 @@ {

"path": "dist/types/tokens/bigmap.d.ts",
"sha512": "5444d849e94a0c3be1115d66e38fa8037f8faff5fe0d98a19a57185a528d7ffdded5c184161f275dca9a0ceca922b7dc7689699315cebc8cbdc3eaa80448f16b"
"sha512": "2f76432e9bd6fdfe956610b798f566fb0ed134bdba987d496f40f9319e3357e999c7a5752bef42a8ee082ad25cbf9514b9ee271a52e9b43a36005d643100dc57"
},

@@ -357,7 +357,7 @@ {

"path": "dist/types/tokens/map.d.ts",
"sha512": "f0c993992950f51586941171c75ff45f00ea4295454542f33c0d17cd5b0ec1598585530aedb41961f9a72567fcf65a9493913fd65750b32775edbdab5b419632"
"sha512": "cf28013224e393b1ae9f272b51a5bbb22dcd05bfbf2b7345d00e79470e1a3898ba06478ed887d633cda882efb1d3fb6f325024e1b054d78e34c2a517a1aa2fd1"
},
{
"path": "dist/types/michelson-map.d.ts",
"sha512": "4e5188b5b5554be91be053fcc989c2cecdbd7ba0b1ce5ef47acafd233d85ea478830b2560dd9bac029565d9bb7d7ca4bd94fe8359ba0b21b3a223a6b2910e8ff"
"sha512": "5851363ec4148ae4f09333eecf30b3c65e5f379bc73539cc10544b3642ecd21d07a26c897557f03ad23d46a55af5e1bc687c288fecdb4a1c8716841609e55515"
},

@@ -406,3 +406,3 @@ {

"path": "dist/types/schema/storage.d.ts",
"sha512": "f868b33c459527c1a286dc81f66bbbf0af61efef3968aa8ec21675533a59cdf47c8f25d61b624c4e2e736e3161ca790c28c92922e860114ac92364dacd81304a"
"sha512": "d05cf743fa2af12650cae5924d0b14eb600f53690c312f532990025bce8d3bc2a821336c509a446e6662058ea2bf3547884e8139940f9ef6cdd8ac67a8e831c6"
},

@@ -444,3 +444,3 @@ {

"identity": {
"keybaseUser": "simrob"
"keybaseUser": "jevonearth"
}

@@ -472,3 +472,3 @@ }

],
"sha512": "9769a8966936917c5541c0b3eb6ad566194d7918deeee16a8d80d2e1c551eb39fa5bb69e408e46d6d99b53cfbaa560896266ec2b2b7130250a59de86f03601c7"
"sha512": "1b00d38e35ed62d6ba32f62eaeed71888b591f782aa922ebf04127599044d1d693e25151fda027d5f235a6e0de432ed7e92a303ecbf1e5532ea21e34562714c7"
}

@@ -481,3 +481,3 @@ },

"name": "@taquito/michelson-encoder",
"version": "6.1.0-beta.0",
"version": "6.1.1-beta.0",
"description": "converts michelson data and types into convenient JS/TS objects",

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

"dependencies": {
"@taquito/utils": "^6.1.0-beta.0",
"@taquito/utils": "^6.1.1-beta.0",
"bignumber.js": "^9.0.0",

@@ -555,3 +555,3 @@ "fast-json-stable-stringify": "^2.1.0"

"devDependencies": {
"@taquito/rpc": "^6.1.0-beta.0",
"@taquito/rpc": "^6.1.1-beta.0",
"@types/jest": "^23.3.2",

@@ -587,3 +587,3 @@ "@types/node": "^10.14.13",

],
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJeX/ObCRCwAkEJD2ZwqwAAczkQABp4lWwllFTIhmzrdR8xV0Sv\n+U02ynHri3+Xa+vFMiw0pP/mqoEzXbFuBKXv8zmdtqqDSi5VlV1wKMGxHX2EdCaT\ndXWyAIwT4eIa6lChvBOKPsDdN+bFXrirU6DpOtP3AfYkwyQ2rrXuYWBhdQDIfzZo\nlif+DjitrTYDprLv9XCw3JoQBhibgHa3j6pSxnVmXmpiHfuk3RcWvjhqba6R3pFD\npVlo3qSmE2IwKJqrJRYOuz84CHNm47KVOVcUaOmUlcsPfOJpxLk6Eprdzs1hqV5q\nmhi7AyQGbIHolpyKORl3C5bOWTqqwk1GdPenXHLGsFgnCP80zlAqEt5E0qTOlKcv\n06eHOAuaQyI9xEmil+AgBOrr9MHGSoMeF2QfMGX0UWmX4FO8ZFeKG9t1MY4DsByI\nWJ06GItaU3BM1aQ6giAgOLRDVub+obcXYgNsNYfXwKbMtcKrWy+3zBi/AaqbuI+i\njzFPhIWW7A0no75FsKe6A9ZU/lx0B8CSwLaPycCYzJbl44eSWzj3/rZytrge4AQi\nYxO/RWRacCPuR7XqsXxQ5RL05KX1pgmDO2MRKC9k8KglUw8zvMX3ZADDqvT/6E1Q\nYHr2D1bcZdVeRG3hFY9ldX6e6eVdcVFsZvBvWn7rqeXiNzA3t8U+fjDelyBLO5em\nsYd7Bhj+MRHDrISkxafZ\n=Mn6B\n-----END PGP SIGNATURE-----\n"
"signature": "-----BEGIN PGP SIGNATURE-----\n\nwsFcBAABCAAQBQJecT8ICRAD9Qy5GYHsngAAUoMQAH5I5pgf+oleMBb2zVmWlN+8\nD8o4TcXKzGflTXy5MfqRQfuBBoCVz6EK9m2HNAhVqyV8Ao8sEdD9Z0rH5kkE6xtr\nEdevymHLPqc8dRGoGBCXeSsemPaKGfNJzvCPDTIlx6UAKhpUo66EFCNjx4FEtH5p\nVFrxrmuG5Nw1q/n9TW4sRD1lq20WGb9374qM7EpAa4SAnHLIxigdu578PyYIj2eF\n8yWaaMRoOVyxSZxQKLqOEsA/UsL9Ah8+gagHQbPRkJC5HXIfVIuOfk0xfaNWe4Qj\nk9ttqrU5Qr822OGCWKHvThVdjtYEg58GDR5e6aN9g0vB8uEdi2K8puNzSQ6fqMKd\n/MkI+il/sET79w2JMZjgUmLgDybi0Wk/mFEoAmMlvS3hVF+iZd06kFdSIa4VT7yd\nUVqDh8On/ug5v3zWNwgCQdS4bvQyqpgXQejBjcnCnQUVqDxCrjImf7zYAvSNEJph\n0icfBpFJzwu1Li7/t7XhGxqQBJabqWWkuwfuNd5JKSUvF/kh5XtcVa9WMidBoACz\nFpROvviQYVOX5uO1vfb4CyGiF5+x0/yMdMJOU/PZn7a4sFP9SNn8iuFtsOyD6O/r\nwF4d1Rv44QbFdQDZysYMcDT7PVQtI1B3Jrgg4YDEz2iqiDBFPciqGVRhXiPCUaJl\njQdASKhQKo80YeIAkrXZ\n=io5x\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 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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc