Giter VIP home page Giter VIP logo

tatumio / tatum-js Goto Github PK

View Code? Open in Web Editor NEW
344.0 22.0 111.0 66.11 MB

๐Ÿš€ Tatum SDK: A ๐Ÿ’ช powerful, ๐ŸŒŸ feature-rich TypeScript/JavaScript ๐Ÿ“š library that streamlines the ๐Ÿ› ๏ธ development of ๐ŸŒ blockchain applications.

Home Page: https://docs.tatum.io

License: MIT License

TypeScript 99.89% JavaScript 0.11%
blockchain api cryptocurrency dev-tool ethereum polygon sdk tron exchange-rate fee-estimation

tatum-js's Introduction

Tatum Website

๐Ÿš€ Tatum SDK โ€“ Your Gateway to Blockchain

The Tatum SDK is a comprehensive TypeScript/JavaScript library designed to simplify blockchain application development. Whether you're monitoring blockchain addresses, making RPC calls, managing NFTs, or querying wallet balances and transactions, Tatum SDK streamlines the process with its robust features:

  • ๐Ÿ•ต๏ธโ€โ™‚๏ธ Blockchain Monitoring: Easily track activities on any blockchain address.
  • ๐Ÿ“ž RPC Calls Simplified: Interact with various blockchains through simplified RPC calls.
  • ๐Ÿ–ผ๏ธ NFT Insights: Access detailed information on NFT balances, transactions, and ownership.
  • ๐Ÿ’ฐ Wallet Intelligence: Get precise data on wallet balances and transaction history.

GitHub Downloads NPM Version GitHub License Build


๐Ÿ”‘ Don't have an API key? Unlock all networks, features, and monitor error logs & usage with ease. Create API Key for FREE - Start building on Tatum with full access to our powerful suite of features.

Tailored for Developers

Engineered with a developer-first approach, Tatum SDK accelerates your blockchain application development, regardless of your experience level. Explore our Documentation and Getting Started Guide to jumpstart your projects:

  • Super fast development: Start building blockchain applications in no time.
  • No previous blockchain experience required: Perfect for beginners and experts alike.
  • One line of code: Perform complex tasks with minimal effort.

Need help or want to contribute? Report Bugs, join our community, or collaborate on improvements.

Join us on Discord Follow on X (formerly Twitter) Subscribe on YouTube

๐Ÿ”Œ Perform Native RPC Calls

Interact seamlessly with various blockchains through native RPC calls. Say goodbye to the hassle of juggling separate RPC clients for each blockchain.

Documentation
EVM Blockchains
Ethereum RPC
Polygon RPC
Flare RPC
Haqq RPC
Optimism RPC
Horizen EON RPC
Arbitrum One RPC
Chiliz RPC
Ethereum Classic RPC
Klaytn RPC
Avalanche RPC
Celo RPC
XinFin RPC
Fantom RPC
Base RPC
UTXO Blockchains
Bitcoin RPC
Litecoin RPC
Dogecoin RPC
ZCash RPC
Bitcoin Cash RPC
Other Blockchains
Solana RPC
XPR RPC
Tron RPC
Eos RPC
Tezos RPC
Agorand RPC
Cardano RPC
Stellar RPC
Iota RPC
Kadena RPC
Rostrum RPC
Cronos RPC

๐Ÿ”” Create Notifications

Effortlessly monitor wallet activities. Set up real-time notifications for events like:

Documentation
Start monitoring of the address
Stop monitoring of the address
Get all sent notifications
Get all existing monitoring subscriptions

๐Ÿ‘› Access Wallet Information

Through a single interface, obtain crucial wallet details such as balances, transaction history, and other pertinent information.

Documentation
Get all assets the wallet holds
Get all transactions on the wallet

๐Ÿ–ผ๏ธ NFT Actions

Dive into a comprehensive suite of actions related to non-fungible tokens (NFTs).

Documentation
Get all NFTs the wallet holds
Get all NFTs in the NFT collection
Trace the history of a specific NFT
Show the NFT history of a wallet
Create NFT Collection
Create MultiToken NFT Collection
Retrieve the owner of the NFT
Check if the wallet owns a specific NFT
Get the metadata of a specific NFT

๐Ÿช™ Fungible Tokens

Explore the world of fungible tokens, manage their properties, and track your assets seamlessly.

Documentation
Get all fungible tokens the wallet holds
Show fungible token history of a wallet
Get metadata of a fungible token
Create a fungible token

๐Ÿ“ IPFS

Enables you as a developer to use IPFS to store and retrieve your media.

Documentation
Upload file to IPFS

โ›ฝ Fee Estimation

Stay updated with real-time fee insights and ensure smooth transactions without overpaying.

Documentation
Fetch real-time fee data

๐Ÿ’ป Wallet Provider

Integrate, transact, and manage assets using a secure and user-friendly wallet provider interface.

Documentation
Connect a wallet
Transfer native assets
Transfer your NFT
Create your NFT Collection
Create your Fungible Token
Create your NFT (ERC-1155 MultiToken) Collection
Transfer fungible tokens like USDT
Approve the transfer of a fungible token like USDT
Build your own custom transaction

๐Ÿ’ฒ Exchange Rates

Access the latest crypto exchange rates and supported currency information to stay ahead in the market.

Documentation
Get current exchange rate of the crypto asset
Get current rates for multiple crypto assets at once
Supported Crypto Currencies
Supported Fiats

๐Ÿ“˜ Getting Started with TatumSDK

This guide will lead you step by step, from basic setup and installation to harnessing the immense capabilities of our library. For a detailed walkthrough, check out the Getting Started page.

๐Ÿ“Š TatumSDK Dashboard

Experience powerful insights into your application's usage with the Tatum Dashboard. It provides real-time analytics, user engagement metrics, and an intuitive interface, seamlessly integrating with TatumSDK for optimal app monitoring.

๐ŸŒฑ Always Evolving

Our library is on a continuous journey of growth. We regularly add new features and extend support for more blockchains. It's the go-to choice for developers aiming to craft robust, scalable, and efficient blockchain apps without the overwhelming intricacies of diverse blockchain protocols.

Prerequisites

Before diving into TatumSDK, ensure that you have the following prerequisites installed:

  • Node.js: Ensure you have the latest LTS version installed.
  • npm: npm is bundled with Node.js, so installing Node.js should automatically install npm.

Installation

To install TatumSDK, simply run the following command in your terminal or command prompt:

Install using npm

npm install @tatumio/tatum

Install using yarn

yarn add @tatumio/tatum

Install using pnpm

pnpm install @tatumio/tatum

Getting started

Basic Usage

Here's a brief overview of how to utilize TatumSDK for RPC calls and subscribing to notifications.

Initialization

Start by importing the TatumSDK library and initializing Ethereum client as follows:

import { TatumSDK, Network, Ethereum } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM })

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the Get started documentation.

RPC Calls

To make RPC calls, use the available methods to interact with Ethereum blockchain. For example, to fetch the balance of a specific Ethereum address:

import { TatumSDK, Network, Ethereum } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM })

const { result } = await tatum.rpc.getBalance('0x742d35Cc6634C0532925a3b844Bc454e4438f44e')
console.log(`Balance: ${result}`)

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the RPC documentation.

Subscribing to Notifications

To subscribe to notifications for events related to a specified Ethereum address, choose a type of event you want to be notified about. We are going to use addressEvent as an example, which sends you notification about any transfer on the address - native ones, ERC20 tokens or NFTs. To subscribe to this event, use the following code:

import { TatumSDK, Network, Ethereum } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM })

const response = await tatum.notification.subscribe.addressEvent({
  url: 'https://<YOUR_WEBHOOK_URL>',
  address: '0x690B9A9E9aa1C9dB991C7721a92d351Db4FaC990',
})

console.log(response)
// ๐ŸŽ‰  Now your address is subscribed for any events!

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the Notifications documentation.

Get NFT balance of a wallet

Using TatumSDK, obtain the NFT balance of an address by calling the getNFTBalance method within the NFT submodule and passing the target address as an argument. This streamlined process efficiently retrieves the total number of NFTs owned by the specified address. To achieve this, use the following code:

import { TatumSDK, Network, Ethereum, NftAddressBalance } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM })

const balances: NftAddressBalance[] = await tatum.nft.getBalance({
  addresses: ['0x53e8577c4347c365e4e0da5b57a589cb6f2ab849'],
})

console.log(balances)

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the NFTs documentation.

Connect to MetaMask and send transaction

Using TatumSDK, it's possible to connect your browser application to MetaMask and perform transactions using it. To achieve this, use the following code:

import { TatumSDK, Network, Ethereum, MetaMask } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM })

const account: string = await tatum.walletProvider.use(MetaMask).getWallet()
const txId: string = await tatum.walletProvider
  .use(MetaMask)
  .transferNative('0x53e8577C4347C365E4e0DA5B57A589cB6f2AB848', '1')

console.log(txId)

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the Wallet Provider documentation.

Get exchange rates

Using TatumSDK, obtain current fiat/crypto exchange rates To achieve this, use the following code:

import { TatumSDK, Network, Ethereum } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM })

const res = await tatum.rates.getCurrentRate('BTC', 'EUR')

console.log(res.data)

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the Exchange Rates documentation.

Get current fees

Using TatumSDK, you can obtain recommended fee/gas price for a blockchain.

import { TatumSDK, Network, Ethereum } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({
  network: Network.ETHEREUM_SEPOLIA,
  verbose: true,
  retryDelay: 1000,
  retryCount: 2,
  version: ApiVersion.V3,
})

const result = await tatum.fee.getCurrentFee()

console.log(result.data)

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the Fee Estimation documentation.

Get token balance

Using TatumSDK, obtain all fungible token balances of an address by calling the getBalance method within the token submodule and passing the target address as an argument. This streamlined process efficiently retrieves all balances for fungible tokens that specified address holds. To achieve this, use the following code:

import { TatumSDK, Network, Ethereum } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM_SEPOLIA })

const { data: balances } = await tatum.token.getBalance({
  addresses: ['0x2cbaf358c0af93096bd820ce57c26f0b7c6ec7ab'],
})

console.log(balances)

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the Fungible Tokens documentation.

Get all transactions on the wallet

Using TatumSDK, you can obtain transaction history of the wallet.

import { TatumSDK, Network, Ethereum } from '@tatumio/tatum'

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM_SEPOLIA })

const { data: txs } = await tatum.address.getTransactions({
  address: '0x514d547c8ac8ccbec29b5144810454bd7d3625ca',
})

console.log(txs)

// Destroy Tatum SDK - needed for stopping background jobs
await tatum.destroy()

For more details, check out the Wallet address operations documentation.

RPC calls

All RPC calls are implemented in the tatum.rpc.* submodule.

See the RPC API Reference for more about supported chains and methods.

Distinguishing Between Archive and Full Nodes

When interacting with the blockchain, it's essential to know whether a JSON RPC call requires an archive node or can be serviced by a full node. The distinction hinges on the type of data requested and the historical depth of that data. Here's a breakdown of the conditions under which a call is classified for an archive or a full node:

Archive Node Calls

Archive nodes store the entire history of the blockchain, including the state of all accounts at every block. Calls that require an archive node typically involve querying historical states. Conditions include:

  1. Calls to Methods getCode or call: Always require an archive node because they may query the state at any block height.

  2. Calls Including debug or trace Methods: These methods require historical data not available on full nodes.

  3. Parameters Indicating a Specific Block Number: For following methods, if the call specifies a block number, it requires an archive node. This includes:

  • getStorageAt with a specific block number.
  • getBalance with a specific block number.
  • getBlockByNumber when a block number is specified.
  • getLogs calls where fromBlock or toBlock specify a block number other than the latest.

Full Node Calls

Any other calls not meeting the conditions for archive node calls can be serviced by a full node. These calls typically involve querying the current state of the blockchain.

Status Pages

This section provides a list of various blockchain network status pages, powered by Tatum. These links direct you to real-time status updates for each network.

Status Pages
bitcoin-mainnet.status.tatum.io
bitcoin-testnet.status.tatum.io
dogecoin-mainnet.status.tatum.io
dogecoin-testnet.status.tatum.io
eos-mainnet-archive.status.tatum.io
ethereum-mainnet-archive.status.tatum.io
ethereum-mainnet.status.tatum.io
ethereum-sepolia-archive.status.tatum.io
ethereum-holesky-archive.status.tatum.io
ethereum-sepolia.status.tatum.io
flare-coston-archive.status.tatum.io
flare-coston2-archive.status.tatum.io
flare-songbird-archive.status.tatum.io
flare-mainnet-archive.status.tatum.io
haqq-mainnet-archive.status.tatum.io
haqq-mainnet.status.tatum.io
haqq-testnet.status.tatum.io
chiliz-mainnet.status.tatum.io
chiliz-mainnet-archive.status.tatum.io
litecoin-mainnet.status.tatum.io
litecoin-testnet.status.tatum.io
optimism-mainnet-archive.status.tatum.io
polygon-mainnet-archive.status.tatum.io
polygon-mainnet.status.tatum.io
horizen-eon-mainnet-archive.status.tatum.io
horizen-eon-gobi.status.tatum.io
bsc-mainnet-archive.status.tatum.io
polygon-mumbai-archive.status.tatum.io
polygon-mumbai.status.tatum.io
tron-mainnet-archive.status.tatum.io
arbitrum-one-mainnet-archive.status.tatum.io
ethereum-classic-mainnet-archive.status.tatum.io
zcash-mainnet.status.tatum.io
ripple-mainnet.status.tatum.io
ripple-testnet.status.tatum.io
bitcoin-cash-mainnet.status.tatum.io
klaytn-mainnet.status.tatum.io
klaytn-mainnet-archive.status.tatum.io
klaytn-baobab.status.tatum.io
klaytn-baobab-archive.status.tatum.io
avalanche-c-mainnet-archive.status.tatum.io
solana-mainnet.status.tatum.io
solana-devnet.status.tatum.io
celo-mainnet-archive.status.tatum.io
celo-testnet-archive.status.tatum.io
tezos-testnet.status.tatum.io
tezos-mainnet.status.tatum.io
algorand-mainnet-algod.status.tatum.io
algorand-testnet-algod.status.tatum.io
algorand-mainnet-indexer.status.tatum.io
algorand-testnet-indexer.status.tatum.io
cardano-mainnet.status.tatum.io
cardano-preprod.status.tatum.io
xinfin-mainnet-archive.status.tatum.io
stellar-mainnet-archive.status.tatum.io
base-mainnet-archive.status.tatum.io
kadena-mainnet.status.tatum.io
kadena-testnet.status.tatum.io
rostrum-mainnet.status.tatum.io
cronos-mainnet-archive.status.tatum.io
fantom-mainnet-archive.status.tatum.io
iota-mainnet.status.tatum.io

Load Balancer

Load balancer is used managing RPC calls to nodes in a blockchain network. It maintains a list of available nodes and their status, and it automatically selects the most responsive node for subsequent RPC calls.

For use of the Load Balancer, you don't need to know how it is working!. Load Balancer works automatically in the background and selects the most responsive node for subsequent RPC calls. You can use the SDK without any knowledge of the Load Balancer.

Load Balancer implementation is available in LoadBalancerRpc.ts

Using a load balancer to distribute traffic across multiple nodes, as opposed to routing all traffic to a single node, has several advantages:

  • Improved Performance and Responsiveness: Load balancers can distribute network or application traffic across several servers, which can help prevent any single server from becoming a bottleneck. As a result, users often experience faster response times.

  • Scalability: Load balancers enable you to handle larger amounts of traffic by simply adding more servers to the pool. This makes it easier to scale your infrastructure as your needs grow.

  • Redundancy and High Availability: If a server goes down, a load balancer can automatically reroute traffic to the remaining online servers. This ensures that your service remains available even in the face of hardware failures or other issues.

  • Prevents Overloading of Nodes: Load balancers can prevent any single server from being overloaded with too many requests, which can degrade the performance of the server and impact user experience.

  • Efficient Use of Resources: By distributing the load, you can make sure that all your servers are being used efficiently, rather than having some servers idle while others are overloaded.

  • Flexibility and Maintenance: With a load balancer, you can take servers offline for maintenance without disrupting service. The load balancer will simply stop sending traffic to the offline server.

  • Better User Experience: Ultimately, all of these benefits can lead to a better user experience, with faster response times and higher availability of services.

Initialization

At start the Load Balancer is initialized with a list of nodes. List of nodes are dynamically fetched from the remote server. There is also option to pass your custom list of nodes instead of the dynamic list. From the list of the nodes is randomly selected one node as a primary node, which is kept as a primary node until first load balancing is performed. The Load Balancer maintain lists of two types of nodes, normal and archive nodes.

Load Balancing

The load balancing process is running in the background and every minute it checks the status of all nodes in the list. The status of each node is determined by making a request to the node's URL and checking the response. The fastest responding node in each category is then selected as the active node for that normal and archive category. The selected nodes are then used for subsequent RPC calls.

Error Handling

If a RPC call fails, failure is logged, and the current active node is marked as failed, and load balancer selects a new active node.

Destroy

When you need to stop load balancer, you should can call destroy method. This method stops the load balancing process on the background.

List of nodes

The list of nodes is dynamically fetched from the remote server and it is defined for every blockchain.

Here are the list of nodes for each blockchain:

Nodes List
rpc.tatum.io/bitcoin-mainnet/list.json
rpc.tatum.io/bitcoin-testnet/list.json
rpc.tatum.io/dogecoin-mainnet/list.json
rpc.tatum.io/dogecoin-testnet/list.json
rpc.tatum.io/eos-mainnet-archive/list.json
rpc.tatum.io/ethereum-mainnet-archive/list.json
rpc.tatum.io/ethereum-mainnet/list.json
rpc.tatum.io/ethereum-sepolia-archive/list.json
rpc.tatum.io/ethereum-holesky-archive/list.json
rpc.tatum.io/ethereum-sepolia/list.json
rpc.tatum.io/flare-coston-archive/list.json
rpc.tatum.io/flare-coston2-archive/list.json
rpc.tatum.io/flare-mainnet-archive/list.json
rpc.tatum.io/flare-songbird-archive/list.json
rpc.tatum.io/haqq-mainnet-archive/list.json
rpc.tatum.io/haqq-mainnet/list.json
rpc.tatum.io/haqq-testnet/list.json
rpc.tatum.io/chiliz-mainnet/list.json
rpc.tatum.io/chiliz-mainnet-archive/list.json
rpc.tatum.io/litecoin-mainnet/list.json
rpc.tatum.io/litecoin-testnet/list.json
rpc.tatum.io/optimism-mainnet-archive/list.json
rpc.tatum.io/polygon-mainnet-archive/list.json
rpc.tatum.io/polygon-mainnet/list.json
rpc.tatum.io/horizen-eon-mainnet-archive/list.json
rpc.tatum.io/horizen-eon-gobi/list.json
rpc.tatum.io/bsc-mainnet-archive/list.json
rpc.tatum.io/polygon-mumbai-archive/list.json
rpc.tatum.io/polygon-mumbai/list.json
rpc.tatum.io/tron-mainnet-archive/list.json
rpc.tatum.io/arbitrum-one-mainnet-archive/list.json
rpc.tatum.io/ethereum-classic-mainnet-archive/list.json
rpc.tatum.io/zcash-mainnet/list.json
rpc.tatum.io/ripple-mainnet/list.json
rpc.tatum.io/ripple-testnet/list.json
rpc.tatum.io/klaytn-mainnet/list.json
rpc.tatum.io/klaytn-mainnet-archive/list.json
rpc.tatum.io/klaytn-baobab/list.json
rpc.tatum.io/klaytn-baobab-archive/list.json
rpc.tatum.io/bitcoin-cash-mainnet/list.json
rpc.tatum.io/avalanche-c-mainnet-archive/list.json
rpc.tatum.io/solana-mainnet/list.json
rpc.tatum.io/solana-devnet/list.json
rpc.tatum.io/celo-mainnet-archive/list.json
rpc.tatum.io/celo-testnet-archive/list.json
rpc.tatum.io/tezos-testnet/list.json
rpc.tatum.io/tezos-mainnet/list.json
rpc.tatum.io/algorand-mainnet-algod/list.json
rpc.tatum.io/algorand-testnet-algod/list.json
rpc.tatum.io/algorand-mainnet-indexer/list.json
rpc.tatum.io/algorand-testnet-indexer/list.json
rpc.tatum.io/cardano-mainnet/list.json
rpc.tatum.io/cardano-preprod/list.json
rpc.tatum.io/xinfin-mainnet-archive/list.json
rpc.tatum.io/stellar-mainnet-archive/list.json
rpc.tatum.io/base-mainnet-archive/list.json
rpc.tatum.io/kadena-mainnet/list.json
rpc.tatum.io/kadena-testnet/list.json
rpc.tatum.io/rostrum-mainnet/list.json
rpc.tatum.io/cronos-mainnet-archive/list.json
rpc.tatum.io/fantom-mainnet-archive/list.json
rpc.tatum.io/iota-mainnet/list.json

Following pattern defines the URL for fetching the list of nodes:

https://rpc.tatum.io/${network}/list.json

Networks enum is available in the Network.ts

For instance if we will need Bitcoin mainnet nodes, we will use this URL:

curl https://rpc.tatum.io/bitcoin-mainnet/list.json

The response is a list of nodes with their url, type (0 - normal, 1 - archive) and location.

[
  {
    "location": "Sydney",
    "type": 0,
    "url": "https://02-sydney-007-01.rpc.tatum.io/"
  },
  {
    "location": "Tokyo",
    "type": 0,
    "url": "https://02-tokyo-007-02.rpc.tatum.io/"
  },
  {
    "location": "Dallas",
    "type": 0,
    "url": "https://02-dallas-007-03.rpc.tatum.io/"
  },
  {
    "location": "Sao Paulo",
    "type": 0,
    "url": "https://02-saopaulo-007-04.rpc.tatum.io/"
  },
  {
    "location": "Warsaw",
    "type": 0,
    "url": "https://01-warsaw-007-05.rpc.tatum.io/"
  }
]

Load Balancer selects from this list the most responsive node.

Usage

Default config

const tatum = await TatumSDK.init<Ethereum>({ network: Network.ETHEREUM })
const info = await tatum.rpc.chainId()
tatum.rpc.destroy()

Custom RPC node list

const tatum = await TatumSDK.init<Ethereum>({
  network: Network.ETHEREUM,
  rpc: {
    nodes: [
      {
        url: 'https://api.tatum.io/v3/blockchain/node/ethereum-mainnet',
        type: RpcNodeType.NORMAL,
      },
    ],
    allowedBlocksBehind: 20,
    oneTimeLoadBalancing: false,
  },
})
const info = await tatum.rpc.chainId()
tatum.rpc.destroy()

Documentation

Examples

Explore various applications that utilize the Tatum SDK. These examples help illustrate the SDK's functionality and offer a starting point for developers looking to integrate similar features into their applications.

Metamask notifications

๐ŸŒ Extension Ecosystem

Quickstart

Import any Tatum SDK extension to your project and start using it right away.

import { TatumSDK, Ethereum, Network, ApiVersion } from '@tatumio/tatum'
import { HelloWorldExtension } from '@tatumio/hello-world'

const tatumSdk = await TatumSDK.init<Ethereum>({
  network: Network.ETHEREUM_SEPOLIA,
  configureExtensions: [HelloWorldExtension],
})

After that you can use the extension in your code with full intellisense.

await tatumSdk.extension(HelloWorldExtension).sayHello()

Wallet Providers

Tatum SDK supports wallet provider extensions for various wallets. You can use them to integrate your application with the wallet of your choice.

import { TatumSDK, Ethereum, Network, ApiVersion } from '@tatumio/tatum'
import { EvmWalletProvider } from '@tatumio/evm-wallet-provider'

const tatumSdk = await TatumSDK.init<Ethereum>({
  network: Network.ETHEREUM_SEPOLIA,
  configureWalletProviders: [EvmWalletProvider],
})

Usage for wallet providers is similar to the extensions.

await tatumSdk.walletProvider.use(EvmWalletProvider).getWallet()

๐Ÿ” Check out our built-in MetaMask wallet provider

๐Ÿ“š Learn more about Tatum SDK Extension ecosystem here - Tatum SDK Extensions

Legacy versions

Older versions of the Tatum SDK has been moved to long living branches Tatum SDK V1 and Tatum SDK V2.

๐Ÿค Contributing

We appreciate your interest in contributing to the Tatum SDK. Here's a guide to help you make meaningful contributions:

Local Testing

Before making a pull request, ensure you've thoroughly tested your changes with a local client.

Unit Tests

Include unit test coverage for any new code you're adding. This helps in maintaining the quality and reliability of our SDK.

Update the Changelog

For every contribution, it's essential to document your changes in the changelog. The changelog keeps track of all the changes, updates, and fixes we make to our SDK. Use the provided format:

## [Version Number] - YYYY.MM.DD

### Added/Updated/Fixed/Changed

- Description of the change

For instance:

## [3.0.10] - 2023.08.11

### Added

- New feature XYZ

Update package.json

Before creating a pull request or releasing a new version, ensure the version in package.json is updated to reflect the new release number.

Release Consideration

Your changes will be released after merging the pull request.

How to add support for new RPC chain

  • Add new chain to the Network.ts enum (Check also LOAD_BALANCER_NETWORKS constants)
  • Add new class to the tatum.ts file
  • Add new chain getClient method in the Utils.ts file
  • Add new chain CURRENCY_NAMES and DECIMALS constants in the constants.ts file
  • Update README.md with new chain for status page and list.json
  • Add E2E test

๐Ÿ™Œ Thank you for helping make Tatum SDK better! Your contributions play a crucial role in its continuous improvement and growth.

Bugs and feature requests

Have a bug or a feature request? Please first read the issue guidelines and search for existing and closed issues. If your problem or idea is not addressed yet, please open a new issue.

tatum-js's People

Contributors

alexloiko avatar dependabot[bot] avatar evgeniabogranskaya avatar filipkastovsky avatar hathoriel avatar hehe100596 avatar isra67 avatar jakcinmarina avatar jdckl avatar jeydev310 avatar karolrec avatar martinttm avatar ncodes avatar npwork avatar oliverjantar avatar opefago avatar pedrodbaptista avatar petrjurasek1 avatar philipmantrov avatar rachitgod avatar ruckim avatar samtatum avatar samuelsramko avatar sceri avatar smrecz avatar snyk-bot avatar turinglabsorg avatar vlnevyhosteny avatar von-drc avatar yocontra avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tatum-js's Issues

vulnerabilities

Upon installing I have the following warning for vulnerabilities. Here are the print of npm audit

npm WARN EBADENGINE Unsupported engine {
npm WARN EBADENGINE   package: '[email protected]',
npm WARN EBADENGINE   required: { node: '^12.20.0 || ^14.13.1 || >=16.0.0' },
npm WARN EBADENGINE   current: { node: 'v14.0.0', npm: '7.6.3' }
npm WARN EBADENGINE }

up to date, audited 1027 packages in 3s

94 packages are looking for funding
  run `npm fund` for details

# npm audit report

ansi-regex  >2.1.1 <5.0.1
Severity: moderate
 Inefficient Regular Expression Complexity in chalk/ansi-regex - https://github.com/advisories/GHSA-93q8-gq69-wqmw
No fix available
node_modules/table/node_modules/ansi-regex
  strip-ansi  4.0.0 - 5.2.0
  Depends on vulnerable versions of ansi-regex
  node_modules/table/node_modules/strip-ansi
    string-width  2.1.0 - 4.1.0
    Depends on vulnerable versions of strip-ansi
    node_modules/table/node_modules/string-width
      table  4.0.2 - 5.4.6
      Depends on vulnerable versions of string-width
      node_modules/table
        flow-typed  >=2.3.0
        Depends on vulnerable versions of table
        node_modules/flow-typed
          @elrondnetwork/hw-app-elrond  >=0.1.1
          Depends on vulnerable versions of flow-typed
          node_modules/@elrondnetwork/hw-app-elrond
            @elrondnetwork/erdjs  *
            Depends on vulnerable versions of @elrondnetwork/hw-app-elrond
            Depends on vulnerable versions of axios
            node_modules/@elrondnetwork/erdjs
              @tatumio/tatum  *
              Depends on vulnerable versions of @elrondnetwork/erdjs
              Depends on vulnerable versions of class-validator
              Depends on vulnerable versions of web3
              node_modules/@tatumio/tatum

axios  <=0.21.1
Severity: high
Incorrect Comparison in axios - https://github.com/advisories/GHSA-cph5-m8f7-6c5x
Server-Side Request Forgery in Axios - https://github.com/advisories/GHSA-4w2v-q235-vp99
No fix available
node_modules/@binance-chain/javascript-sdk/node_modules/axios
node_modules/@cityofzion/neon-api/node_modules/axios
node_modules/@cityofzion/neon-core/node_modules/axios
node_modules/@elrondnetwork/erdjs/node_modules/axios
node_modules/stellar-sdk/node_modules/axios
  @binance-chain/javascript-sdk  *
  Depends on vulnerable versions of axios
  node_modules/@binance-chain/javascript-sdk
  @cityofzion/neon-api  *
  Depends on vulnerable versions of @cityofzion/neon-core
  Depends on vulnerable versions of axios
  Depends on vulnerable versions of ws
  node_modules/@cityofzion/neon-api
    @cityofzion/neon-js  >=4.0.0-next.0
    Depends on vulnerable versions of @cityofzion/neon-api
    Depends on vulnerable versions of @cityofzion/neon-core
    node_modules/@cityofzion/neon-js
  @cityofzion/neon-core  <=5.0.0-next.7
  Depends on vulnerable versions of axios
  node_modules/@cityofzion/neon-core
    @cityofzion/neon-nep5  <=4.9.0
    Depends on vulnerable versions of @cityofzion/neon-core
    node_modules/@cityofzion/neon-nep5
  @elrondnetwork/erdjs  *
  Depends on vulnerable versions of @elrondnetwork/hw-app-elrond
  Depends on vulnerable versions of axios
  node_modules/@elrondnetwork/erdjs
    @tatumio/tatum  *
    Depends on vulnerable versions of @elrondnetwork/erdjs
    Depends on vulnerable versions of class-validator
    Depends on vulnerable versions of web3
    node_modules/@tatumio/tatum
  stellar-sdk  *
  Depends on vulnerable versions of axios
  node_modules/stellar-sdk

class-transformer  <0.3.1
Severity: moderate
Prototype pollution in class-transformer - https://github.com/advisories/GHSA-6gp3-h3jj-prx4
fix available via `npm audit fix`
node_modules/class-transformer

class-validator  *
Severity: critical
SQL Injection and Cross-site Scripting in class-validator - https://github.com/advisories/GHSA-fj58-h2fr-3pp2
No fix available
node_modules/class-validator
  @tatumio/tatum  *
  Depends on vulnerable versions of @elrondnetwork/erdjs
  Depends on vulnerable versions of class-validator
  Depends on vulnerable versions of web3
  node_modules/@tatumio/tatum

elliptic  <6.5.4
Severity: moderate
Use of a Broken or Risky Cryptographic Algorithm - https://github.com/advisories/GHSA-r9p9-mrjm-926w
fix available via `npm audit fix`
node_modules/@vechain/ethers/node_modules/elliptic
node_modules/thor-devkit/node_modules/elliptic
  @vechain/ethers  *
  Depends on vulnerable versions of elliptic
  node_modules/@vechain/ethers
    thor-devkit  >=0.9.2
    Depends on vulnerable versions of @vechain/ethers
    Depends on vulnerable versions of elliptic
    node_modules/thor-devkit
      thorify  >=1.4.1
      Depends on vulnerable versions of thor-devkit
      node_modules/thorify

web3  <=1.5.2
Insecure Credential Storage in web3 - https://github.com/advisories/GHSA-27v7-qhfv-rqq8
No fix available
node_modules/web3
  @tatumio/tatum  *
  Depends on vulnerable versions of @elrondnetwork/erdjs
  Depends on vulnerable versions of class-validator
  Depends on vulnerable versions of web3
  node_modules/@tatumio/tatum

ws  7.0.0 - 7.4.5
Severity: moderate
ReDoS in Sec-Websocket-Protocol header - https://github.com/advisories/GHSA-6fc8-4gx4-v693
fix available via `npm audit fix`
node_modules/ws
  @cityofzion/neon-api  *
  Depends on vulnerable versions of @cityofzion/neon-core
  Depends on vulnerable versions of axios
  Depends on vulnerable versions of ws
  node_modules/@cityofzion/neon-api
    @cityofzion/neon-js  >=4.0.0-next.0
    Depends on vulnerable versions of @cityofzion/neon-api
    Depends on vulnerable versions of @cityofzion/neon-core
    node_modules/@cityofzion/neon-js

23 vulnerabilities (1 low, 12 moderate, 8 high, 2 critical)

To address issues that do not require attention, run:
  npm audit fix

Some issues need review, and may require choosing
a different dependency.

error while importing package

Getting the following error while trying to import this package

While trying to resolve module http while using @tatumio/tatum
ceptionsManager.js:158 Invariant Violation: "Coinbox" has not been registered. This can happen if:

  • Metro (the local dev server) is run from the wrong folder. Check if Metro is running, stop it and restart it in the current project.
  • A module failed to load due to an error and AppRegistry.registerComponent wasn't called.

Transaction Failed When Transfering NFT Token

I had created NFT MarketPlace With Tatum and minted token which were also seen in open sea testnet . when i tried to transfer the token with api call of tatum which uses safetransfer() it fails but when i transfered using opensea then it got transferd.

failing transaction id : 0xc5e11b38da10e50f4976de55a2b28ffb19a064cce03944518669009de06d1d5e

I tried through both rest api and tatum method ("transferNFT")

Still same result

[Error] signatureId must be shorter than or equal to 24 characters

transaction = await deployNFT(useTestNet,
            {
                name,
                chain: "MATIC",
                symbol,
                provenance: true,
                publicMint: false,
                signatureId: 'a4873cd9-...........-7074056db3c4'
            });

Response with error:

signatureId must be shorter than or equal to 24 characters

Using the endpoint API with same payload works ok.
signatureId validation should change to 36 characters same as the API.

bitcoin -> offchain (sendBitcoinOffchainTransaction) errors

Blows up here: https://github.com/tatumio/tatum-js/blob/master/src/offchain/bitcoin.ts#L95

Error: Invalid Argument: First argument is required, please include address data. Documentation: http://bitcore.io/guide/address.html
Error
    at new NodeError (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/errors/index.js:20:41)
    at Object.checkArgument (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/util/preconditions.js:14:13)
    at new Address (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/address.js:69:5)
    at Address (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/address.js:57:12)
    at Function.Script.fromAddress (/Users/contra/Projects/createsafe-wallet/api/node_modules/bitcore-lib/lib/script/script.js:1010:13)
    at /Users/contra/Projects/createsafe-wallet/api/node_modules/@tatumio/tatum/src/offchain/bitcoin.ts:95:36
    at Array.forEach (<anonymous>)
    at Object.prepareBitcoinSignedOffchainTransaction (/Users/contra/Projects/createsafe-wallet/api/node_modules/@tatumio/tatum/src/offchain/bitcoin.ts:90:14)
    at Object.sendBitcoinOffchainTransaction (/Users/contra/Projects/createsafe-wallet/api/node_modules/@tatumio/tatum/src/offchain/bitcoin.ts:30:24)
    at processTicksAndRejections (node:internal/process/task_queues:96:5)

I think this is an API issue, the API WithdrawalResponseData[] response has a null address:

Screen Shot 2021-06-20 at 4 25 15 PM

And in this function there doesn't seem to be any behavior defined for this case, which leads me to think the API is at fault. Transferring with the same code/account/ledger works fine with other currencies besides BTC.

[BUG] signature ID is not supplied when broadcasting some transactions to the blockchain

The signatureId is not supplied in a number of calls to oneBroadcast in the Harmony.ONE blockchain transaction methods. The specific one that gave me problems was sendOneDeploy721SignedTransaction, and you can see that it only supplies the first argument to oneBroadcast. Most of the other methods that use oneBroadcast in that file have the same problem, but a few of them such as sendOneGenerateCustodialWalletSignedTransaction and sendOneDeployMarketplaceListingSignedTransaction do not.

403 API Error when sending transaction

When attempting to do a transfer of native tokens from a custodial wallet to a blockchain address:

    const sentTransaction = await ethSdk.custodial.send.transferFromCustodialWallet(
      {
        chain: "ETH",
        custodialAddress: userAddress,
        contractType: 3,
        recipient: destination,
        amount: amount.toString(),
        signatureId: config.tatumSignatureId
      },
      config.env !== "production"
    );

Then receive the following error:

  {
    "name": "ApiError",
    "url": "https://api-eu1.tatum.io/v3/ethereum/broadcast",
    "status": 403,
    "statusText": "Forbidden",
    "body": {
      "statusCode": 403,
      "errorCode": "eth.broadcast.failed",
      "message": "Unable to broadcast transaction due to invalid argument 0: json: cannot unmarshal hex string without 0x prefix into Go value of type hexutil.Bytes."
    }
  }

Test data:

userAddress = '0x4d6968b4c98452d6e9d0c3029c72285a9e0ecc1e'
destination = '0x76c4CAbA24840EC9b7644Cbe3FF9b329D49ADEf6'
amount = 1

Any ideas?

Mints using SolanaNftMetadata are not visible from Phantom wallet, incorrect metadata format?

I'm following the Tatum Solana documentation for NodeJS, but it seems the metadata that goes into the mint isn't compatible with Phantom wallet.

More details found in links detailing the issue below:
https://help.phantom.app/hc/en-us/articles/4406463116307-Why-doesn-t-my-NFT-show-up-

https://docs.phantom.app/best-practices/tokens/non-fungible-tokens#on-chain-metadata

Example code, and structure used:

const nft = await solanaSDK.transaction.mintNft({
  chain: 'SOL',
  from: meta.from,
  fromPrivateKey: meta.fromPrivateKey,
  to: meta.to,
  metadata: {
    name: meta.nft_name,
    symbol: meta.nft_symbol,
    sellerFeeBasisPoints: 5,
    uri: meta.image_url,
    creators: [{
      address: meta.from,
      verified: true,
      share: 100
    }]
  }
})

Outcome:

Screen Shot 2022-05-05 at 4 13 07 PM

Tatum js for React Native

For those who need to use Tatum js with React Native here it is how I finally make it to work:

npm i rn-nodeify -g
npm i react-native-randombytes --save
npm i @tatumio/tatum --save
rn-nodeify --install http,https,path,crypto,fs,stream,os --hack
cd ios && pod install

A shim.js file will be generated in the root directory of the app. You need to import the shim.js file in the index.js file at top of the file:
import "./shim";

Here is my shim.js (should be the same)
Uncomment the last line require('crypto')

if (typeof __dirname === 'undefined') global.__dirname = '/'
if (typeof __filename === 'undefined') global.__filename = ''
if (typeof process === 'undefined') {
  global.process = require('process')
} else {
  const bProcess = require('process')
  for (var p in bProcess) {
    if (!(p in process)) {
      process[p] = bProcess[p]
    }
  }
}

process.browser = false
if (typeof Buffer === 'undefined') global.Buffer = require('buffer').Buffer

// global.location = global.location || { port: 80 }
const isDev = typeof __DEV__ === 'boolean' && __DEV__
process.env['NODE_ENV'] = isDev ? 'development' : 'production'
if (typeof localStorage !== 'undefined') {
  localStorage.debug = isDev ? '*' : ''
}

// If using the crypto shim, uncomment the following line to ensure
// crypto is loaded first, so it can populate global.crypto
require('crypto')

Since the env is needed you can fix that by adding as well in index.js or where you wish but before importing Tatum the following:
process.env.TATUM_API_KEY = "XXXXXX-XXXXX......";

๐Ÿ’ฅ Hope I didn't forget anything, let me know if you have any issues (and I will recheck my project setup)

Proposition: clearly separate local vs api methods

(assumption: I put myself in the shoes of a user who is just getting started to work with tatum)

Let's imagine that I read API documentation page https://tatum.io/apidoc.php#operation/BtcGenerateAddress
which says that there is a Get enpoint /v3/bitcoin/address/{xpub}/{index} that I can use to get address from my xpub by index

later in tatum-js library I find function generateAddressFromXPub

const address = await generateAddressFromXPub(Currency.QTUM, true, 'tpubDEPswwDHtxcS3q3K81iRgcxRKinjdEBM6dKer3HjeVPRgL44fFpJpttdDxQLLAxLoZLu69c6bMeyGqCPihUdCZedYu9vqah2gbP1wkLUvzB', 1)

Given the code example above can you tell whether the API request will be made? (the answer is no)
What about this one? (the answer is yes)

const fee = await estimateQtumFee(12345)

The only way to tell is to look inside implementation (which probably breaks the incapsulation idea)

Proposition is:
Clearly separate boundaries of local and remote calls by combining remote functions into objects with a descriptive name.

const option1 = tatumApi.estimateQtumFee(12345)
const option2 = qtumApi.estimateFee(12345)
const option3 = tatumApi.qtum.estimateFee(12345)

how to use ethereum-goerli

Describe the issue

I see ethereum-sepolia only
how to use ethereum-goerli?

What operating system(s) are you seeing the problem on?

Windows

What environment do you see the problem on (Web/Node)?

NodeJS

What version of tatum sdk are you using?

2.0.1-alpha.426

Broken imports

Running a basic example

const { generateWallet, Currency } = require('@tatumio/tatum');
const btcWallet = generateWallet(Currency.BTC, true);
console.log(btcWallet);

throws:

node:internal/modules/cjs/loader:936
  throw err;
  ^

Error: Cannot find module 'src/blockchain'
Require stack:
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/transaction/algo.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/transaction/index.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/helpers/index.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/fungible/index.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/wallet/custodial.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/wallet/index.js
- /home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/index.js
- /home/jarin/dev/probinex/exp/tatum/test.js
    at Function.Module._resolveFilename (node:internal/modules/cjs/loader:933:15)
    at Function.Module._load (node:internal/modules/cjs/loader:778:27)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:94:18)
    at Object.<anonymous> (/home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/transaction/algo.js:6:22)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12)
    at Module.require (node:internal/modules/cjs/loader:1005:19)
    at require (node:internal/modules/cjs/helpers:94:18)
    at Object.<anonymous> (/home/jarin/dev/probinex/exp/tatum/node_modules/@tatumio/tatum/dist/src/transaction/index.js:34:14)
    at Module._compile (node:internal/modules/cjs/loader:1101:14)
    at Object.Module._extensions..js (node:internal/modules/cjs/loader:1153:10)
    at Module.load (node:internal/modules/cjs/loader:981:32)
    at Function.Module._load (node:internal/modules/cjs/loader:822:12) {

Originally posted by @jaroslav-muller in #157 (comment)

Multiple Instance of Bitcore lib found - Nestjs/Serverless Offline

Error: More than one instance of bitcore-lib found. Please make sure to require bitcore-lib and check that submodules do not also include their own bitcore-lib dependency.

Thats the error i am getting when running this in Serverless/Lambda mode. Currently using Nestjs for serverless functions and I only get this while running it locally using serverless.

    at Object.bitcore.versionGuard (/Users/mac/Bitpowr/walletsolution/node_modules/bitcore-lib/index.js:12:11)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/node_modules/bitcore-lib/index.js:15:9)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/node_modules/@tatumio/tatum/src/offchain/bitcoin.ts:3:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/node_modules/@tatumio/tatum/src/offchain/index.ts:2:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/node_modules/@tatumio/tatum/src/index.ts:7:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/enums/assets.ts:1:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/modules/assets/service.ts:3:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/modules/wallets/controller.ts:11:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/modules/wallets/module.ts:2:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at Object.<anonymous> (/Users/mac/Bitpowr/walletsolution/src/modules/wallets/lambda.ts:5:1)
    at Module._compile (internal/modules/cjs/loader.js:1063:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1092:10)
    at Module.load (internal/modules/cjs/loader.js:928:32)
    at Function.Module._load (internal/modules/cjs/loader.js:769:14)
    at Module.require (internal/modules/cjs/loader.js:952:19)
    at require (internal/modules/cjs/helpers.js:88:18)
    at /Users/mac/Bitpowr/walletsolution/node_modules/serverless-offline/dist/lambda/handler-runner/in-process-runner/InProcessRunner.js:157:133
    at processTicksAndRejections (internal/process/task_queues.js:93:5)
    at InProcessRunner.run (/Users/mac/Bitpowr/walletsolution/node_modules/serverless-offline/dist/lambda/handler-runner/in-process-runner/InProcessRunner.js:157:9)```


Gas price in polygon is not enough

Hi,
gas price in polygon transactions doesn't have enough gas price. This function

return Web3.utils.toWei(`${Math.max(30, Math.min(Math.ceil(data.fast / 10), 100))}`, 'gwei');
returns gas price 69000000000 in wei, in gwei it is 69. But the actual gas price is around 400 Gwei https://polygonscan.com/chart/gasprice. So all our NFT mint Polygon calls are failing with error:

Unexpected error occurred. Reason: Unable to broadcast transaction due to replacement transaction underpriced.

Api https://gasstation-mainnet.matic.network/ responses good with:

{"safeLow":500,"standard":555.5,"fast":700,"fastest":700,"blockTime":2,"blockNumber":23373754}

The function polygonGetGasPriceInWei uses a fast value and changes it to 69, without any logic the value is divided by 10 and bounded between 100 and 30 values. Why you are doing such a computation, please? Why is not just fast value returned?

When only return fast value, it is working.

@samuelsramko what do you think about it, please?

Wallet Creation using Password

Describe the issue

How can we create a wallet on the basis of mnemonic as well as Password??

What operating system(s) are you seeing the problem on?

macOS

What environment do you see the problem on (Web/Node)?

Web

What version of tatum sdk are you using?

@tatumio/btc - 2.1.6

BCH toLegacy conversion error

When sending a BCH testnet transaction, we get the below error:

Error: qzw986csm6297rq223m30yl0md6zv3epuvdt34juk5 has no matching Script

We isolated the issue to the following lines in src/transaction/bcash.js

for (const item of to) {
transactionBuilder.addOutput(getAddress(item.address), Number(new bignumber_js_1.default(item.value).multipliedBy(100000000).toFixed(0, bignumber_js_1.default.ROUND_FLOOR)));
}

and linked to this:

const getAddress = (address) => {
try {
return wallet_1.toLegacyAddress(address);
}
catch (e) {
return address;
}
};

this outputs the following error:
'bchtest:qzw986csm6297rq223m30yl0md6zv3epuvdt34juk5'
Uncaught Error: Non-base58 character

Thx

Missing function for getting an NFT transaction

This function is missing, not sure if it was a recent addition or not - https://tatum.io/apidoc#operation/NftGetTransactErc721

The existing function to get transactions was working fine last week, then suddenly the API stopped returning a contractAddress when looking up a recently deployed NFT transaction. Looking at the docs it appears its not got a new endpoint which will return the contract address? Not sure what the deal is with it but either way it is missing from the JS library.

Please help newbie

Hi and thanks for the code here. I have tried to install this code and it just wont install and I wonder if someone could point me in the right direction .
I have to say that the Tatum instructions accross the board are hard to understand and do not explain things well.
Large spaces of instructions are missed out or poorley explained and I just cannot work out what the problems are.
When trying to install the tatum-js i get these errors

npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/exhaust.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/exhaust.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/exhaustMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/exhaustMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/exhaustMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/exhaustMap.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/expand.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/expand.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/expand.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/expand.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/dom/fetch.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/filter.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/filter.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/filter.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/filter.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/finalize.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/finalize.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/finally.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/finally.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/find.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/find.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/find.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/find.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/findIndex.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/findIndex.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/findIndex.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/findIndex.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/first.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/first.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/first.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/first.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/forkJoin.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/forkJoin.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/forkJoin.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/ForkJoinObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/from.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/from.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/from.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromArray.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/fromEvent.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromEvent.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromEvent.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/FromEventObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/fromEventPattern.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromEventPattern.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromEventPattern.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/FromEventPatternObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/FromObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/fromPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/fromPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/fromPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/generate.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/generate.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/generate.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/GenerateObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/groupBy.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/groupBy.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/groupBy.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/groupBy.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/hostReportError.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/hostReportError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/HotObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/identity.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/identity.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/if.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/if.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/IfObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/ignoreElements.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/ignoreElements.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/ignoreElements.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/ignoreElements.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/iif.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/Immediate.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/Immediate.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/ajax'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/fetch'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/index.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal-compatibility'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/index.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/index.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/testing'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/webSocket'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/innerSubscribe.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/InnerSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/InnerSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/interfaces.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/interval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/interval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/interval.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/IntervalObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isArray.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isArrayLike.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isArrayLike.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isDate.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isDate.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/isEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/isEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/isEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/isEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isFunction.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isFunction.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isInteropObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isNumeric.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isNumeric.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isObject.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isObject.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/isScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/isScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/IteratorObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/last.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/last.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/last.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/last.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/let.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/let.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/map.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/map.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/map.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/map.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/materialize.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/materialize.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/materialize.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/materialize.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/max.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/max.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/max.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/max.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/merge.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mergeAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mergeAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mergeAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mergeAll.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mergeMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mergeMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mergeMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mergeMap.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mergeMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mergeMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mergeMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mergeMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/mergeScan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/mergeScan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/mergeScan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/mergeScan.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/min.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/min.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/min.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/min.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/multicast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/multicast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/multicast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/multicast.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/never.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/never.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/never.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/NeverObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/noop.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/noop.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/not.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/not.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Notification.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Notification.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/ObjectUnsubscribedError.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/ObjectUnsubscribedError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Observable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/symbol'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Observable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/observeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/observeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/observeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/observeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Observer.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Observer.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/of.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/of.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/of.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/onErrorResumeNext.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Operator.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Operator.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/OuterSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/OuterSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/pairs.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/pairs.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/pairs.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/PairsObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/pairwise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/pairwise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/pairwise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/pairwise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/partition.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/pipe.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/pipe.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/pluck.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/pluck.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/pluck.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/pluck.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/PromiseObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/publish.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/publish.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/publish.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/publish.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/publishBehavior.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/publishBehavior.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/publishBehavior.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/publishBehavior.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/publishLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/publishLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/publishLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/publishLast.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/publishReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/publishReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/publishReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/publishReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduler/queue.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/scheduler/queue.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduler/QueueAction.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduler/QueueScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/race.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/race.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/range.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/range.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/range.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/RangeObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/reduce.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/reduce.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/reduce.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/reduce.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/refCount.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/refCount.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/repeat.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/repeat.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/repeat.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/repeat.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/repeatWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/repeatWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/repeatWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/repeatWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/ReplaySubject.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/ReplaySubject.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/retry.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/retry.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/retry.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/retry.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/retryWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/retryWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/retryWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/retryWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/root.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/root.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Rx.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Rx.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/symbol'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/sample.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/sample.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/sample.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/sample.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/sampleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/sampleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/sampleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/sampleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/ScalarObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/scan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/scan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/scan.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/scan.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduled'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Scheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Scheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/sequenceEqual.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/sequenceEqual.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/sequenceEqual.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/sequenceEqual.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/share.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/share.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/share.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/share.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/shareReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/shareReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/shareReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/shareReplay.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/single.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/single.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/single.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/single.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/skip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/skip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/skip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/skip.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/skipLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/skipLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/skipLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/skipLast.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/skipUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/skipUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/skipUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/skipUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/skipWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/skipWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/skipWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/skipWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/startWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/startWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/startWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/startWith.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Subject.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Subject.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/SubjectSubscription.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/SubjectSubscription.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/subscribeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/subscribeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/subscribeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/subscribeOn.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/SubscribeOnObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/SubscribeOnObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Subscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Subscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeTo.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToArray.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToIterable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/subscribeToResult.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/subscribeToResult.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/Subscription.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/Subscription.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/SubscriptionLog.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/SubscriptionLoggable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/switch.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/switch.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/switchAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/switchAll.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/switchMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/switchMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/switchMap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/switchMap.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/switchMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/switchMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/switchMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/switchMapTo.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/take.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/take.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/take.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/take.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/takeLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/takeLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/takeLast.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/takeLast.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/takeUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/takeUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/takeUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/takeUntil.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/takeWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/takeWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/takeWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/takeWhile.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/tap.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/tap.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/TestMessage.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/testing/TestScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/throttle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/throttle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/throttle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/throttle.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/throttleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/throttleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/throttleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/throttleTime.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/throw.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/throw.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/throwError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/throwIfEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/throwIfEmpty.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/timeInterval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/timeInterval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/timeInterval.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/timeInterval.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/timeout.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/timeout.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/timeout.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/timeout.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/TimeoutError.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/TimeoutError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/timeoutWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/timeoutWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/timeoutWith.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/timeoutWith.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/timer.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/timer.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/timer.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/TimerObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/timestamp.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/timestamp.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/timestamp.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/timestamp.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/toArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/toArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/toArray.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/toArray.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/toPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/toPromise.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/toSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/toSubscriber.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/tryCatch.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/tryCatch.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/types.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/util/UnsubscriptionError.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/util/UnsubscriptionError.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/using.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/using.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/using.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/UsingObservable.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/scheduler/VirtualTimeScheduler.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/dom/webSocket.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/dom/webSocket.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/dom/webSocket.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/dom/WebSocketSubject.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/dom/WebSocketSubject.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/window.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/window.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/window.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/window.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/windowCount.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/windowCount.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/windowCount.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/windowCount.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/windowTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/windowTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/windowTime.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/windowTime.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/windowToggle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/windowToggle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/windowToggle.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/windowToggle.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/windowWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/windowWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/windowWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/windowWhen.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/withLatestFrom.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/withLatestFrom.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/withLatestFrom.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/withLatestFrom.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/observable/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/observable/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/observable/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/zip.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/add/operator/zipAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/internal/operators/zipAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operator/zipAll.d.ts'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/operators/zipAll.d.ts'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/_esm2015'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/_esm5'
npm WARN tar ENOENT: no such file or directory, open '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/LICENSE.txt'
npm WARN tar ENOENT: no such file or directory, lstat '/var/www/html/tatum-js/node_modules/.staging/rxjs-3ebdbea7/src'

I am cloning this git repository and providing the commands that you have given but it just wont work. I have tried ubuntu 16 / 18 and 20 and different versions of npm but just keep running in to these same errors.

If somebody could help I would really appreciate it.

SubscriptionType not exported

Hello,

I am using tatum-js and I am trying to implement subscription creation.
I followed the way it is done here: https://github.com/tatumio/tatum-js/tree/master/src/ledger#create-a-subscription---detect-incoming-blockchain-transactions

I'm having problems since when I import "@tatumio/tatum" I cannot access "SubscriptionType".
From what I can see here: https://github.com/tatumio/tatum-js/blob/master/src/model/response/index.ts
it seems that SubscriptionType is not exported in the "index.ts" file.

Could you take a look at it.

Thanks in advance!

Running into node-gyp error related to libusb when running npm i @tatumio/tatum

Describe the issue

Hi, unable to install the package on Mac OS running Monterey, error I'm getting:

npm ERR! code 1
npm ERR! path /Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb
npm ERR! command failed
npm ERR! command sh -c node-gyp-build
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/core.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/descriptor.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/hotplug.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/io.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/strerror.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/sync.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/os/poll_posix.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/os/threads_posix.o
npm ERR! CC(target) Release/obj.target/libusb/libusb/libusb/os/darwin_usb.o
npm ERR! LIBTOOL-STATIC Release/usb.a
npm ERR! CXX(target) Release/obj.target/usb_bindings/src/node_usb.o
npm ERR! gyp info it worked if it ends with ok
npm ERR! gyp info using [email protected]
npm ERR! gyp info using [email protected] | darwin | arm64
npm ERR! gyp info find Python using Python version 3.8.9 found at "/Applications/Xcode.app/Contents/Developer/usr/bin/python3"
npm ERR! gyp info spawn /Applications/Xcode.app/Contents/Developer/usr/bin/python3
npm ERR! gyp info spawn args [
npm ERR! gyp info spawn args '/usr/local/lib/node_modules/npm/node_modules/node-gyp/gyp/gyp_main.py',
npm ERR! gyp info spawn args 'binding.gyp',
npm ERR! gyp info spawn args '-f',
npm ERR! gyp info spawn args 'make',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb/build/config.gypi',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/usr/local/lib/node_modules/npm/node_modules/node-gyp/addon.gypi',
npm ERR! gyp info spawn args '-I',
npm ERR! gyp info spawn args '/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/include/node/common.gypi',
npm ERR! gyp info spawn args '-Dlibrary=shared_library',
npm ERR! gyp info spawn args '-Dvisibility=default',
npm ERR! gyp info spawn args '-Dnode_root_dir=/Users/davidnandwa/Library/Caches/node-gyp/16.15.0',
npm ERR! gyp info spawn args '-Dnode_gyp_dir=/usr/local/lib/node_modules/npm/node_modules/node-gyp',
npm ERR! gyp info spawn args '-Dnode_lib_file=/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/<(target_arch)/node.lib',
npm ERR! gyp info spawn args '-Dmodule_root_dir=/Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb',
npm ERR! gyp info spawn args '-Dnode_engine=v8',
npm ERR! gyp info spawn args '--depth=.',
npm ERR! gyp info spawn args '--no-parallel',
npm ERR! gyp info spawn args '--generator-output',
npm ERR! gyp info spawn args 'build',
npm ERR! gyp info spawn args '-Goutput_dir=.'
npm ERR! gyp info spawn args ]
npm ERR! gyp info spawn make
npm ERR! gyp info spawn args [ 'BUILDTYPE=Release', '-C', 'build' ]
npm ERR! ../libusb/libusb/io.c:2300:30: warning: comparison of integers of different signs: 'int' and 'nfds_t' (aka 'unsigned int') [-Wsign-compare]
npm ERR! for (i = internal_nfds ; i < nfds ; ++i) {
npm ERR! ~ ^ ~~~~
npm ERR! 1 warning generated.
npm ERR! /bin/sh: -c: line 0: syntax error near unexpected token (' npm ERR! /bin/sh: -c: line 0: c++ -o Release/obj.target/usb_bindings/src/node_usb.o ../src/node_usb.cc '-DNODE_GYP_MODULE_NAME=usb_bindings' '-DUSING_UV_SHARED=1' '-DUSING_V8_SHARED=1' '-DV8_DEPRECATION_WARNINGS=1' '-DV8_DEPRECATION_WARNINGS' '-DV8_IMMINENT_DEPRECATION_WARNINGS' '-D_GLIBCXX_USE_CXX11_ABI=1' '-D_DARWIN_USE_64_BIT_INODE=1' '-D_LARGEFILE_SOURCE' '-D_FILE_OFFSET_BITS=64' '-DOPENSSL_NO_PINSHARED' '-DOPENSSL_THREADS' '-DNAPI_VERSION=8' '-DBUILDING_NODE_EXTENSION' -I../src -I/Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb/node_modules/node-addon-api -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/include/node -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/src -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/openssl/config -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/openssl/openssl/include -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/uv/include -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/zlib -I/Users/davidnandwa/Library/Caches/node-gyp/16.15.0/deps/v8/include -I../libusb/libusb -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX12.3.sdk -O3 -gdwarf-2 -mmacosx-version-min=10.11 -arch arm64 -Wall -Wendif-labels -W -Wno-unused-parameter -std=gnu++14 -stdlib=libc++ -fno-rtti -fno-strict-aliasing -std=c++1y -stdlib=libc++ -MMD -MF ./Release/.deps/Release/obj.target/usb_bindings/src/node_usb.o.d.raw -c'
npm ERR! make: *** [Release/obj.target/usb_bindings/src/node_usb.o] Error 2
npm ERR! gyp ERR! build error
npm ERR! gyp ERR! stack Error: make failed with exit code: 2
npm ERR! gyp ERR! stack at ChildProcess.onExit (/usr/local/lib/node_modules/npm/node_modules/node-gyp/lib/build.js:194:23)
npm ERR! gyp ERR! stack at ChildProcess.emit (node:events:527:28)
npm ERR! gyp ERR! stack at Process.ChildProcess._handle.onexit (node:internal/child_process:291:12)
npm ERR! gyp ERR! System Darwin 21.5.0
npm ERR! gyp ERR! command "/usr/local/bin/node" "/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js" "rebuild"
npm ERR! gyp ERR! cwd /Users/davidnandwa/Desktop/HoneyCoin/Node.js (Back-End Apps)/HC-Crypto-Server/node_modules/usb
npm ERR! gyp ERR! node -v v16.15.0
npm ERR! gyp ERR! node-gyp -v v9.0.0
npm ERR! gyp ERR! not ok

npm ERR! A complete log of this run can be found in:
npm ERR! /Users/davidnandwa/.npm/_logs/2023-01-31T08_43_15_482Z-debug-0.log

This is an empty new project so package.json is empty.

What operating system(s) are you seeing the problem on?

macOS

What environment do you see the problem on (Web/Node)?

NodeJS

What version of tatum sdk are you using?

1.37.30

Not compatible with next js

Seems there are compatibility issues with next.js framework.

crashes on all modules such as 'fs' 'path' 'os' 'crypto' 'stream' and more.

Not sure what the fix is, but seems like it has to do with both browser and node.js compatibility as the same time?

Custom Derivation Path for Bip44 HD Accounts

Currently Tatum does not have a way to specify custom derivation path. For people who want to have multi-hierarchical deterministic wallets. You can find more information here: https://github.com/bitcoin/bips/blob/master/bip-0044.mediawiki.

Tatum current derivation paths conforms to bip44 but you can only have one root account (0) for every seed phrase generated. See below:

m/44'/0'/0'/0

44 - Bip 44 constants
0 - coin type for BTC Mainnet, BTC testnet is 1, ETH is 60, BCH is 145
0 - account index. can increment to create more hd root accounts
0 - change, 0 should be constant for receiving address, 1 for an internal address like an address for receiving transaction change for UTXO blockchain wallets.

Adding the /0-n will generate all the addresses for 0 account index which would result to derivation of m/44'/0'/0'/0/{0-n} . Tatum is already doing this using the derivePath function when generating addresses and private keys

We need to specify a way to use a custom derivation path, or basically add support for HD accounts for Tatum.

Here's a function we could use to generate derivation path making sure there's no chance for input error:

const changeMap = {
    external: 0,
    internal: 1,
    nested: 2
}

const generateDerivationPath = (coinType: number, account: number, change: "external" | "internal" | "nested", testnet: boolean = true): string => {
    const changeIndex = changeMap[change]
    const accountIndex = testnet ? 0 : account
    const bip44m = `m/44'/${coinType}'/${accountIndex}'/${changeIndex}`
    return bip44m
}

If this is something Tatum would like to add to the library, I can find enough time this week to have the HD account supports

Requirements for npm install on linux

It seems that for linux (I'm having Ubuntu 20.04.3 LTS) you need to have some libraries installed before you try npm install.

In my case I was missing libudev-dev. Without it you get very cryptic errors including:

npm ERR! ../libusb/libusb/os/linux_udev.c:40:10: fatal error: libudev.h: No such file or directory
npm ERR!    40 | #include <libudev.h>
npm ERR!       |          ^~~~~~~~~~~

Having it mentioned in the documentation would help. ;)

Which SDK to use?

Hi,
I'm trying to create a virtual account using the Tatum SDK, but I'm confused about which version to use. Here are my questions:

  • Which version of the Tatum SDK is recommended for creating virtual accounts?
  • The documentation shows examples using V1 SDK, but I'm not sure if this is still the best practice. Should I use V1, V2, or V3 (current master branch)?
  • Why V3 doesn't seem to have any methods other than the notification API?
  • If V2 is the best choice, can you provide guidance on how to create a virtual account using this version?
    Thanks for your help!

Also, If Github is not suitable for asking such questions, please guide me to the right place. Thanks.

Error Installation @tatumio/eth

Hi,

I try install @tatumio/eth and I get this error

npm install @tatumio/eth
npm ERR! code ETARGET
npm ERR! notarget No matching version found for @tatumio/[email protected].
npm ERR! notarget In most cases you or one of your dependencies are requesting
npm ERR! notarget a package version that doesn't exist.
npm ERR! notarget
npm ERR! notarget It was specified as a dependency of '@tatumio/eth'
npm ERR! notarget

Any idea?

Some feedback

  1. Undici should be a dependency and not a devDependency Unless it's added to the peerDependencies section.
    "undici": "^5.21.0"
  2. reflect-metadata does not play well in some environments, for example with Pulumi's IaC lambda serializer.
  3. (Subjective) The use of typedi in a dependency might cause issues: Vendor Lock-in and conflicting dependencies. (Issue probably caused by di #808)
  4. The library assumes one instance per network, which is not always the case, and so managing many instances for each network might consume more resources.
  5. Instance Initialization is async
  6. Why are address and contract notifications "segregated" in the SDK but not in the API? Are these more like Logs notifications?

You may close this issue, as it's purely feedback. (except the first item)

Add address query parameter in `listActiveSubscriptions` function

Hi! ๐Ÿ‘‹

Firstly, thanks for your work on this project! ๐Ÿ™‚

Today I used patch-package to patch @tatumio/[email protected] for the project I'm working on.

Here is the diff that solved my problem:

diff --git a/node_modules/@tatumio/tatum/dist/src/ledger/subscription.d.ts b/node_modules/@tatumio/tatum/dist/src/ledger/subscription.d.ts
index e5733e8..9459547 100644
--- a/node_modules/@tatumio/tatum/dist/src/ledger/subscription.d.ts
+++ b/node_modules/@tatumio/tatum/dist/src/ledger/subscription.d.ts
@@ -9,7 +9,7 @@ export declare const createNewSubscription: (data: CreateSubscription) => Promis
 /**
  * For more details, see <a href="https://apidoc.tatum.io/#operation/getSubscriptions" target="_blank">Tatum API documentation</a>
  */
-export declare const listActiveSubscriptions: (pageSize?: number, offset?: number) => Promise<Subscription[]>;
+export declare const listActiveSubscriptions: (pageSize?: number, offset?: number, address?: string) => Promise<Subscription[]>;
 /**
  * For more details, see <a href="https://apidoc.tatum.io/#operation/deleteSubscription" target="_blank">Tatum API documentation</a>
  */
diff --git a/node_modules/@tatumio/tatum/dist/src/ledger/subscription.js b/node_modules/@tatumio/tatum/dist/src/ledger/subscription.js
index 1e1c187..7a4c308 100644
--- a/node_modules/@tatumio/tatum/dist/src/ledger/subscription.js
+++ b/node_modules/@tatumio/tatum/dist/src/ledger/subscription.js
@@ -14,7 +14,7 @@ exports.createNewSubscription = createNewSubscription;
 /**
  * For more details, see <a href="https://apidoc.tatum.io/#operation/getSubscriptions" target="_blank">Tatum API documentation</a>
  */
-const listActiveSubscriptions = async (pageSize = 50, offset = 0) => tatum_1.get(`/v3/subscription?pageSize=${pageSize}&offset=${offset}`);
+const listActiveSubscriptions = async (pageSize = 50, offset = 0, address = undefined) => tatum_1.get(`/v3/subscription?pageSize=${pageSize}&offset=${offset}&address=${address}`);
 exports.listActiveSubscriptions = listActiveSubscriptions;
 /**
  * For more details, see <a href="https://apidoc.tatum.io/#operation/deleteSubscription" target="_blank">Tatum API documentation</a>

This issue body was partially generated by patch-package.

Segmentation fault node js

Hey!
I've been getting the error Segmentation fault once I run tatum.js file using node js

// tatum.js
const tatum = require("@tatumio/tatum");
>npm list
[email protected] /home/benjamin/Documents/node/bitcore-tests
โ”œโ”€โ”€ @tatumio/[email protected]
โ”œโ”€โ”€ @tatumio/[email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ”œโ”€โ”€ [email protected]
โ””โ”€โ”€ [email protected]

> npm --version
8.3.0

> node --version
v16.13.2

> node tatum.js
Segmentation fault

> sudo node tatum.js
Segmentation fault

DeleteTransactionKms always returns 404

AFAIY
there is mismatch in code const deleteTransactionKMS = async (id, revert = true) => tatum_1.httpDelete(/v3/kms/${id}/${revert});
and API doc https://api-eu1.tatum.io/v3/kms/{id}?revert=trueโ€™

query param vs. path param, API doc is correct, but SDK implementation is wrong

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.