Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@iota/pad

Package Overview
Dependencies
Maintainers
6
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@iota/pad - npm Package Compare versions

Comparing version 1.0.0-beta.19 to 1.0.0-beta.30

.nyc_output/1cd01ec4-bec6-49a7-ac30-ffc8c278cc83.json

2

.nyc_output/processinfo/index.json

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

{"processes":{"79cae80f-39e3-4922-ba77-020d287e1d15":{"parent":"8077c5bc-28c1-47ee-ac38-1a1be14d3195","children":[]},"8077c5bc-28c1-47ee-ac38-1a1be14d3195":{"parent":null,"children":["79cae80f-39e3-4922-ba77-020d287e1d15","a7232b6d-404b-40f3-9bf2-8e38929e4d5b","cade4d26-8531-4df1-8694-2dce9a0a5da4","e958bc28-3770-43d9-88ff-ae61bb1fe8a6"]},"a7232b6d-404b-40f3-9bf2-8e38929e4d5b":{"parent":"8077c5bc-28c1-47ee-ac38-1a1be14d3195","children":[]},"cade4d26-8531-4df1-8694-2dce9a0a5da4":{"parent":"8077c5bc-28c1-47ee-ac38-1a1be14d3195","children":[]},"e958bc28-3770-43d9-88ff-ae61bb1fe8a6":{"parent":"8077c5bc-28c1-47ee-ac38-1a1be14d3195","children":[]}},"files":{"/Users/chris/Desktop/iota.js/packages/pad/out/pad/src/index.js":["79cae80f-39e3-4922-ba77-020d287e1d15","a7232b6d-404b-40f3-9bf2-8e38929e4d5b","cade4d26-8531-4df1-8694-2dce9a0a5da4"]},"externalIds":{}}
{"processes":{"1cd01ec4-bec6-49a7-ac30-ffc8c278cc83":{"parent":"7135e8e6-a566-48ce-9a4a-ca49a0c50ffe","children":[]},"6a4abbb2-1519-4710-a409-8d5be97b75d6":{"parent":"7135e8e6-a566-48ce-9a4a-ca49a0c50ffe","children":[]},"7135e8e6-a566-48ce-9a4a-ca49a0c50ffe":{"parent":null,"children":["1cd01ec4-bec6-49a7-ac30-ffc8c278cc83","6a4abbb2-1519-4710-a409-8d5be97b75d6","d5dedb14-730f-4bc6-930a-7c8bfc5f18d6"]},"d5dedb14-730f-4bc6-930a-7c8bfc5f18d6":{"parent":"7135e8e6-a566-48ce-9a4a-ca49a0c50ffe","children":[]}},"files":{"/Users/umairsarfraz/workspace/iota.js/packages/pad/out/pad/src/index.js":["1cd01ec4-bec6-49a7-ac30-ffc8c278cc83","6a4abbb2-1519-4710-a409-8d5be97b75d6","d5dedb14-730f-4bc6-930a-7c8bfc5f18d6"]},"externalIds":{}}

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

IRICommand["REMOVE_NEIGHBORS"] = "removeNeighbors";
IRICommand["GET_TIPS"] = "getTips";
IRICommand["FIND_TRANSACTIONS"] = "findTransactions";

@@ -19,0 +18,0 @@ IRICommand["GET_TRYTES"] = "getTrytes";

{
"name": "@iota/pad",
"version": "1.0.0-beta.19",
"version": "1.0.0-beta.30",
"description": "Padding utility",

@@ -65,3 +65,6 @@ "main": "./out/pad/src/index.js",

},
"gitHead": "b602d1f2264af14920f616e52e8d7d9e3b5b6747"
"devDependencies": {
"ava": "^0.25.0"
},
"gitHead": "9f37d7e9b4981a9b971f331ccd268646bdbce9a1"
}

@@ -5,2 +5,2 @@ import '../../typed-array';

export declare const padTag: (trytes: string) => string;
export declare const padTagArray: (tags: ReadonlyArray<string>) => string[];
export declare const padTagArray: (tags: readonly string[]) => string[];

@@ -69,3 +69,2 @@ /// <reference types="node" />

REMOVE_NEIGHBORS = "removeNeighbors",
GET_TIPS = "getTips",
FIND_TRANSACTIONS = "findTransactions",

@@ -133,3 +132,2 @@ GET_TRYTES = "getTrytes",

readonly addresses: ReadonlyArray<Hash>;
readonly threshold: number;
readonly tips?: ReadonlyArray<Hash>;

@@ -151,3 +149,2 @@ }

readonly transactions: ReadonlyArray<Hash>;
readonly tips: ReadonlyArray<Hash>;
}

@@ -186,9 +183,2 @@ export interface GetInclusionStatesResponse {

}
export interface GetTipsCommand extends BaseCommand {
command: IRICommand.GET_TIPS;
}
export interface GetTipsResponse {
readonly hashes: ReadonlyArray<Hash>;
readonly duration: number;
}
export interface TransactionsToApprove {

@@ -240,3 +230,3 @@ readonly trunkTransaction: Hash;

export declare type NativeGenerateSignatureFunction = (seed: number[], index: number, numberOfFragments: number, bundle: number[]) => Promise<number[]>;
export declare const asArray: <T>(x: T | ReadonlyArray<T>) => ReadonlyArray<T>;
export declare const asArray: <T>(x: T | readonly T[]) => readonly T[];
export declare const getOptionsWithDefaults: <T>(defaults: Readonly<T>) => (options: Readonly<Partial<T>>) => Readonly<T>;

@@ -243,0 +233,0 @@ export declare type CreatePersistence<K, V> = (adapter: PersistenceAdapter<K, V>) => Persistence<K, V>;

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