Socket
Socket
Sign inDemoInstall

@bitgo/statics

Package Overview
Dependencies
Maintainers
8
Versions
394
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bitgo/statics - npm Package Compare versions

Comparing version 1.5.1 to 1.6.1-rc.0

5

dist/src/base.d.ts

@@ -77,2 +77,3 @@ import { BaseNetwork } from './networks';

AGI = "agi",
AGWD = "agwd",
AION = "aion",

@@ -121,2 +122,3 @@ AMN = "amn",

CHSB = "chsb",
CIX100 = "cix100",
CLN = "cln",

@@ -159,3 +161,2 @@ CMT = "cmt",

ETHOS = "ethos",
ETO = "eto",
EURS = "eurs",

@@ -202,2 +203,3 @@ EURX = "eurx",

KNC = "knc",
KOZ = "koz",
KZE = "kze",

@@ -259,3 +261,2 @@ LBA = "lba",

QSP = "qsp",
QUASH = "quash",
QVT = "qvt",

@@ -262,0 +263,0 @@ R = "r",

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

account_1.erc20('agi', 'SingularityNET', 8, '0x8eb24319393716668d768dcec29356ae9cffe285', "agi" /* AGI */),
account_1.erc20('agwd', 'AGARWOOD', 18, '0xc3e419177044c9172823f06335d5d82aaf38a5c6', "agwd" /* AGWD */),
account_1.erc20('aion', 'AION', 8, '0x4ceda7906a5ed2179785cd3a40a69ee8bc99c466', "aion" /* AION */),

@@ -109,2 +110,3 @@ account_1.erc20('amn', 'Amon', 18, '0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c', "amn" /* AMN */),

account_1.erc20('chsb', 'SwissBorg', 8, '0xba9d4199fab4f26efe3551d490e3821486f135ba', "chsb" /* CHSB */),
account_1.erc20('cix100', 'Cryptoindex 100', 18, '0x6393e822874728f8afa7e1c9944e417d37ca5878', "cix100" /* CIX100 */),
account_1.erc20('cln', 'Colu Local Network', 18, '0x4162178b78d6985480a308b2190ee5517460406d', "cln" /* CLN */),

@@ -147,3 +149,2 @@ account_1.erc20('cmt', 'CyberMiles', 18, '0xf85feea2fdd81d51177f6b8f35f0e6734ce45f5f', "cmt" /* CMT */),

account_1.erc20('ethos', 'Ethos', 8, '0x5af2be193a6abca9c8817001f45744777db30756', "ethos" /* ETHOS */),
account_1.erc20('eto', 'Ethos Coin', 8, '0x5af2be193a6abca9c8817001f45744777db30756', "eto" /* ETO */),
account_1.erc20('eurs', 'Stasis EURS', 2, '0xdb25f211ab05b1c97d595516f45794528a807ad8', "eurs" /* EURS */),

@@ -190,2 +191,3 @@ account_1.erc20('eurx', 'eToro Euro', 18, '0x05ac103f68e05da35e78f6165b9082432fe64b58', "eurx" /* EURX */),

account_1.erc20('knc', 'Kyber Network', 18, '0xdd974d5c2e2928dea5f71b9825b8b646686bd200', "knc" /* KNC */),
account_1.erc20('koz', 'KOZJIN Token', 18, '0xd95e7d16000cbeb66acbf70b4a843d4346ff4555', "koz" /* KOZ */),
account_1.erc20('kze', 'Almeela', 18, '0x8de67d55c58540807601dbf1259537bc2dffc84d', "kze" /* KZE */),

@@ -247,3 +249,2 @@ account_1.erc20('lba', 'Cred', 18, '0xfe5f141bf94fe84bc28ded0ab966c16b17490657', "lba" /* LBA */),

account_1.erc20('qsp', 'Quantstamp', 18, '0x99ea4db9ee77acd40b119bd1dc4e33e1c070b80d', "qsp" /* QSP */),
account_1.erc20('quash', 'Qash', 6, '0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6', "quash" /* QUASH */),
account_1.erc20('qvt', 'Qvolta', 18, '0x1183f92a5624d68e85ffb9170f16bf0443b4c242', "qvt" /* QVT */),

@@ -250,0 +251,0 @@ account_1.erc20('r', 'Revain', 0, '0x48f775efbe4f5ece6e0df2f7b5932df56823b990', "r" /* R */),

1

dist/src/index.d.ts

@@ -5,4 +5,5 @@ export * from './base';

export * from './errors';
export { OfcCoin } from './ofc';
export { UtxoCoin } from './utxo';
export { AccountCoin, Erc20Coin } from './account';
export { CoinMap } from './map';

@@ -10,2 +10,4 @@ "use strict";

__export(require("./errors"));
var ofc_1 = require("./ofc");
exports.OfcCoin = ofc_1.OfcCoin;
var utxo_1 = require("./utxo");

@@ -12,0 +14,0 @@ exports.UtxoCoin = utxo_1.UtxoCoin;

@@ -9,2 +9,3 @@ import { CoinFamily } from './base';

abstract readonly family: CoinFamily;
abstract readonly explorerUrl: string | undefined;
}

@@ -68,10 +69,13 @@ export interface UtxoNetwork extends BaseNetwork {

}
declare class Ethereum extends Mainnet implements AccountNetwork {
declare class Algorand extends Mainnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class Kovan extends Testnet implements AccountNetwork {
declare class AlgorandTestnet extends Testnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class Bitcoin extends BitcoinLikeMainnet {
family: CoinFamily;
explorerUrl: string;
bech32: string;

@@ -81,2 +85,3 @@ }

family: CoinFamily;
explorerUrl: string;
bech32: string;

@@ -86,11 +91,15 @@ }

family: CoinFamily;
explorerUrl: string;
}
declare class BitcoinCashTestnet extends BitcoinLikeTestnet {
family: CoinFamily;
explorerUrl: string;
}
declare class BitcoinSV extends BitcoinLikeMainnet {
family: CoinFamily;
explorerUrl: string;
}
declare class BitcoinSVTestnet extends BitcoinLikeTestnet {
family: CoinFamily;
explorerUrl: string;
}

@@ -103,2 +112,3 @@ declare class BitcoinGold extends BitcoinLikeMainnet {

family: CoinFamily;
explorerUrl: string;
}

@@ -111,2 +121,3 @@ declare class Dash extends BitcoinLikeMainnet {

family: CoinFamily;
explorerUrl: string;
}

@@ -123,3 +134,20 @@ declare class DashTestnet extends BitcoinLikeTestnet {

family: CoinFamily;
explorerUrl: string;
}
declare class Ethereum extends Mainnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class Kovan extends Testnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class Eos extends Mainnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class EosTestnet extends Testnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class Litecoin extends BitcoinLikeMainnet {

@@ -132,2 +160,3 @@ messagePrefix: string;

family: CoinFamily;
explorerUrl: string;
}

@@ -145,51 +174,50 @@ declare class LitecoinTestnet extends BitcoinLikeTestnet {

family: CoinFamily;
explorerUrl: string;
}
declare class ZCash extends BitcoinLikeMainnet {
messagePrefix: string;
pubKeyHash: number;
scriptHash: number;
declare class Ofc extends Mainnet implements OfcNetwork {
family: CoinFamily;
explorerUrl: undefined;
}
declare class ZCashTestnet extends BitcoinLikeTestnet {
messagePrefix: string;
pubKeyHash: number;
scriptHash: number;
declare class OfcTestnet extends Testnet implements OfcNetwork {
family: CoinFamily;
explorerUrl: undefined;
}
declare class Algorand extends Mainnet implements AccountNetwork {
declare class Stellar extends Mainnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class AlgorandTestnet extends Testnet implements AccountNetwork {
declare class StellarTestnet extends Testnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class Eos extends Mainnet implements AccountNetwork {
declare class SUSD extends Mainnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: undefined;
}
declare class EosTestnet extends Testnet implements AccountNetwork {
declare class SUSDTestnet extends Testnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: undefined;
}
declare class Xrp extends Mainnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class XrpTestnet extends Testnet implements AccountNetwork {
family: CoinFamily;
explorerUrl: string;
}
declare class Stellar extends Mainnet implements AccountNetwork {
declare class ZCash extends BitcoinLikeMainnet {
messagePrefix: string;
pubKeyHash: number;
scriptHash: number;
family: CoinFamily;
explorerUrl: string;
}
declare class StellarTestnet extends Testnet implements AccountNetwork {
declare class ZCashTestnet extends BitcoinLikeTestnet {
messagePrefix: string;
pubKeyHash: number;
scriptHash: number;
family: CoinFamily;
explorerUrl: string;
}
declare class Ofc extends Mainnet implements OfcNetwork {
family: CoinFamily;
}
declare class OfcTestnet extends Testnet implements OfcNetwork {
family: CoinFamily;
}
declare class SUSD extends Mainnet implements AccountNetwork {
family: CoinFamily;
}
declare class SUSDTestnet extends Testnet implements AccountNetwork {
family: CoinFamily;
}
export declare const Networks: {

@@ -200,13 +228,13 @@ main: {

bitcoinCash: Readonly<BitcoinCash>;
bitcoinGold: Readonly<BitcoinGold>;
bitcoinSV: Readonly<BitcoinSV>;
bitcoinGold: Readonly<BitcoinGold>;
dash: Readonly<Dash>;
eos: Readonly<Eos>;
ethereum: Readonly<Ethereum>;
litecoin: Readonly<Litecoin>;
ethereum: Readonly<Ethereum>;
eos: Readonly<Eos>;
ofc: Readonly<Ofc>;
stellar: Readonly<Stellar>;
susd: Readonly<SUSD>;
xrp: Readonly<Xrp>;
stellar: Readonly<Stellar>;
zCash: Readonly<ZCash>;
ofc: Readonly<Ofc>;
susd: Readonly<SUSD>;
};

@@ -219,12 +247,12 @@ test: {

dash: Readonly<DashTestnet>;
eos: Readonly<EosTestnet>;
kovan: Readonly<Kovan>;
litecoin: Readonly<LitecoinTestnet>;
kovan: Readonly<Kovan>;
eos: Readonly<EosTestnet>;
ofc: Readonly<OfcTestnet>;
stellar: Readonly<StellarTestnet>;
susd: Readonly<SUSDTestnet>;
xrp: Readonly<XrpTestnet>;
stellar: Readonly<StellarTestnet>;
zCash: Readonly<ZCashTestnet>;
ofc: Readonly<OfcTestnet>;
susd: Readonly<SUSDTestnet>;
};
};
export {};

@@ -88,19 +88,21 @@ "use strict";

}(Testnet));
var Ethereum = /** @class */ (function (_super) {
__extends(Ethereum, _super);
function Ethereum() {
var Algorand = /** @class */ (function (_super) {
__extends(Algorand, _super);
function Algorand() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "eth" /* ETH */;
_this.family = "algo" /* ALGO */;
_this.explorerUrl = 'https://algoexplorer.io/tx/';
return _this;
}
return Ethereum;
return Algorand;
}(Mainnet));
var Kovan = /** @class */ (function (_super) {
__extends(Kovan, _super);
function Kovan() {
var AlgorandTestnet = /** @class */ (function (_super) {
__extends(AlgorandTestnet, _super);
function AlgorandTestnet() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "eth" /* ETH */;
_this.family = "algo" /* ALGO */;
_this.explorerUrl = 'https://testnet.algoexplorer.io/tx/';
return _this;
}
return Kovan;
return AlgorandTestnet;
}(Testnet));

@@ -112,2 +114,3 @@ var Bitcoin = /** @class */ (function (_super) {

_this.family = "btc" /* BTC */;
_this.explorerUrl = 'https://smartbit.com.au/tx/';
_this.bech32 = 'bc';

@@ -123,2 +126,3 @@ return _this;

_this.family = "btc" /* BTC */;
_this.explorerUrl = 'https://testnet.smartbit.com.au/tx/';
_this.bech32 = 'tb';

@@ -134,2 +138,3 @@ return _this;

_this.family = "bch" /* BCH */;
_this.explorerUrl = 'http://blockdozer.com/tx/';
return _this;

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

_this.family = "bch" /* BCH */;
_this.explorerUrl = 'https://tbch.blockdozer.com/tx/';
return _this;

@@ -154,2 +160,3 @@ }

_this.family = "bsv" /* BSV */;
_this.explorerUrl = 'https://blockchair.com/bitcoin-sv/transaction/';
return _this;

@@ -164,2 +171,3 @@ }

_this.family = "bsv" /* BSV */;
_this.explorerUrl = 'https://testnet.bitcoincloud.net/tx/';
return _this;

@@ -178,2 +186,3 @@ }

_this.family = "btg" /* BTG */;
_this.explorerUrl = 'https://btgexplorer.com/tx/';
return _this;

@@ -192,2 +201,3 @@ }

_this.family = "dash" /* DASH */;
_this.explorerUrl = 'https://insight.dashevo.org/insight/tx/';
return _this;

@@ -210,2 +220,3 @@ }

_this.family = "dash" /* DASH */;
_this.explorerUrl = 'https://tbch.blockdozer.com/tx/';
return _this;

@@ -215,2 +226,42 @@ }

}(BitcoinLikeTestnet));
var Ethereum = /** @class */ (function (_super) {
__extends(Ethereum, _super);
function Ethereum() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "eth" /* ETH */;
_this.explorerUrl = 'https://etherscan.io/tx/';
return _this;
}
return Ethereum;
}(Mainnet));
var Kovan = /** @class */ (function (_super) {
__extends(Kovan, _super);
function Kovan() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "eth" /* ETH */;
_this.explorerUrl = 'https://kovan.etherscan.io/tx/';
return _this;
}
return Kovan;
}(Testnet));
var Eos = /** @class */ (function (_super) {
__extends(Eos, _super);
function Eos() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "eos" /* EOS */;
_this.explorerUrl = 'https://bloks.io/transaction/';
return _this;
}
return Eos;
}(Mainnet));
var EosTestnet = /** @class */ (function (_super) {
__extends(EosTestnet, _super);
function EosTestnet() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "eos" /* EOS */;
_this.explorerUrl = 'https://jungle.bloks.io/transaction/';
return _this;
}
return EosTestnet;
}(Testnet));
var Litecoin = /** @class */ (function (_super) {

@@ -226,2 +277,3 @@ __extends(Litecoin, _super);

_this.family = "ltc" /* LTC */;
_this.explorerUrl = 'https://live.blockcypher.com/ltc/tx/';
return _this;

@@ -245,2 +297,3 @@ }

_this.family = "ltc" /* LTC */;
_this.explorerUrl = 'http://explorer.litecointools.com/tx/';
return _this;

@@ -250,61 +303,61 @@ }

}(BitcoinLikeTestnet));
var ZCash = /** @class */ (function (_super) {
__extends(ZCash, _super);
function ZCash() {
var Ofc = /** @class */ (function (_super) {
__extends(Ofc, _super);
function Ofc() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.messagePrefix = '\x18ZCash Signed Message:\n';
_this.pubKeyHash = 0x1cb8;
_this.scriptHash = 0x1cbd;
_this.family = "zec" /* ZEC */;
_this.family = "ofc" /* OFC */;
_this.explorerUrl = undefined;
return _this;
}
return ZCash;
}(BitcoinLikeMainnet));
var ZCashTestnet = /** @class */ (function (_super) {
__extends(ZCashTestnet, _super);
function ZCashTestnet() {
return Ofc;
}(Mainnet));
var OfcTestnet = /** @class */ (function (_super) {
__extends(OfcTestnet, _super);
function OfcTestnet() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.messagePrefix = '\x18ZCash Signed Message:\n';
_this.pubKeyHash = 0x1d25;
_this.scriptHash = 0x1cba;
_this.family = "zec" /* ZEC */;
_this.family = "ofc" /* OFC */;
_this.explorerUrl = undefined;
return _this;
}
return ZCashTestnet;
}(BitcoinLikeTestnet));
var Algorand = /** @class */ (function (_super) {
__extends(Algorand, _super);
function Algorand() {
return OfcTestnet;
}(Testnet));
var Stellar = /** @class */ (function (_super) {
__extends(Stellar, _super);
function Stellar() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "algo" /* ALGO */;
_this.family = "xlm" /* XLM */;
_this.explorerUrl = 'https://stellar.expert/explorer/public/tx/';
return _this;
}
return Algorand;
return Stellar;
}(Mainnet));
var AlgorandTestnet = /** @class */ (function (_super) {
__extends(AlgorandTestnet, _super);
function AlgorandTestnet() {
var StellarTestnet = /** @class */ (function (_super) {
__extends(StellarTestnet, _super);
function StellarTestnet() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "algo" /* ALGO */;
_this.family = "xlm" /* XLM */;
_this.explorerUrl = 'https://stellar.expert/explorer/testnet/tx/';
return _this;
}
return AlgorandTestnet;
return StellarTestnet;
}(Testnet));
var Eos = /** @class */ (function (_super) {
__extends(Eos, _super);
function Eos() {
var SUSD = /** @class */ (function (_super) {
__extends(SUSD, _super);
function SUSD() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "eos" /* EOS */;
_this.family = "susd" /* SUSD */;
_this.explorerUrl = undefined;
return _this;
}
return Eos;
return SUSD;
}(Mainnet));
var EosTestnet = /** @class */ (function (_super) {
__extends(EosTestnet, _super);
function EosTestnet() {
var SUSDTestnet = /** @class */ (function (_super) {
__extends(SUSDTestnet, _super);
function SUSDTestnet() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "eos" /* EOS */;
_this.family = "susd" /* SUSD */;
_this.explorerUrl = undefined;
return _this;
}
return EosTestnet;
return SUSDTestnet;
}(Testnet));

@@ -316,2 +369,3 @@ var Xrp = /** @class */ (function (_super) {

_this.family = "xrp" /* XRP */;
_this.explorerUrl = 'https://xrpcharts.ripple.com/#/transactions/';
return _this;

@@ -326,2 +380,3 @@ }

_this.family = "xrp" /* XRP */;
_this.explorerUrl = 'https://xrpcharts.ripple.com/#/transactions/';
return _this;

@@ -331,56 +386,28 @@ }

}(Testnet));
var Stellar = /** @class */ (function (_super) {
__extends(Stellar, _super);
function Stellar() {
var ZCash = /** @class */ (function (_super) {
__extends(ZCash, _super);
function ZCash() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "xlm" /* XLM */;
_this.messagePrefix = '\x18ZCash Signed Message:\n';
_this.pubKeyHash = 0x1cb8;
_this.scriptHash = 0x1cbd;
_this.family = "zec" /* ZEC */;
_this.explorerUrl = 'https://zcash.blockexplorer.com/tx/';
return _this;
}
return Stellar;
}(Mainnet));
var StellarTestnet = /** @class */ (function (_super) {
__extends(StellarTestnet, _super);
function StellarTestnet() {
return ZCash;
}(BitcoinLikeMainnet));
var ZCashTestnet = /** @class */ (function (_super) {
__extends(ZCashTestnet, _super);
function ZCashTestnet() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "xlm" /* XLM */;
_this.messagePrefix = '\x18ZCash Signed Message:\n';
_this.pubKeyHash = 0x1d25;
_this.scriptHash = 0x1cba;
_this.family = "zec" /* ZEC */;
_this.explorerUrl = 'https://explorer.testnet.z.cash/tx/';
return _this;
}
return StellarTestnet;
}(Testnet));
var Ofc = /** @class */ (function (_super) {
__extends(Ofc, _super);
function Ofc() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "ofc" /* OFC */;
return _this;
}
return Ofc;
}(Mainnet));
var OfcTestnet = /** @class */ (function (_super) {
__extends(OfcTestnet, _super);
function OfcTestnet() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "ofc" /* OFC */;
return _this;
}
return OfcTestnet;
}(Testnet));
var SUSD = /** @class */ (function (_super) {
__extends(SUSD, _super);
function SUSD() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "susd" /* SUSD */;
return _this;
}
return SUSD;
}(Mainnet));
var SUSDTestnet = /** @class */ (function (_super) {
__extends(SUSDTestnet, _super);
function SUSDTestnet() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.family = "susd" /* SUSD */;
return _this;
}
return SUSDTestnet;
}(Testnet));
return ZCashTestnet;
}(BitcoinLikeTestnet));
exports.Networks = {

@@ -391,13 +418,13 @@ main: {

bitcoinCash: Object.freeze(new BitcoinCash()),
bitcoinGold: Object.freeze(new BitcoinGold()),
bitcoinSV: Object.freeze(new BitcoinSV()),
bitcoinGold: Object.freeze(new BitcoinGold()),
dash: Object.freeze(new Dash()),
eos: Object.freeze(new Eos()),
ethereum: Object.freeze(new Ethereum()),
litecoin: Object.freeze(new Litecoin()),
ethereum: Object.freeze(new Ethereum()),
eos: Object.freeze(new Eos()),
ofc: Object.freeze(new Ofc()),
stellar: Object.freeze(new Stellar()),
susd: Object.freeze(new SUSD()),
xrp: Object.freeze(new Xrp()),
stellar: Object.freeze(new Stellar()),
zCash: Object.freeze(new ZCash()),
ofc: Object.freeze(new Ofc()),
susd: Object.freeze(new SUSD()),
},

@@ -410,12 +437,12 @@ test: {

dash: Object.freeze(new DashTestnet()),
eos: Object.freeze(new EosTestnet()),
kovan: Object.freeze(new Kovan()),
litecoin: Object.freeze(new LitecoinTestnet()),
kovan: Object.freeze(new Kovan()),
eos: Object.freeze(new EosTestnet()),
ofc: Object.freeze(new OfcTestnet()),
stellar: Object.freeze(new StellarTestnet()),
susd: Object.freeze(new SUSDTestnet()),
xrp: Object.freeze(new XrpTestnet()),
stellar: Object.freeze(new StellarTestnet()),
zCash: Object.freeze(new ZCashTestnet()),
ofc: Object.freeze(new OfcTestnet()),
susd: Object.freeze(new SUSDTestnet()),
},
};
//# sourceMappingURL=networks.js.map
{
"name": "@bitgo/statics",
"version": "1.5.1",
"version": "1.6.1-rc.0",
"description": "dependency-free static configuration for the bitgo platform",

@@ -5,0 +5,0 @@ "main": "./dist/src/index.js",

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

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