npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@exodus/taquito-taquito

v16.1.1-exodus.11

Published

High level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

Downloads

3,530

Readme

Taquito high-level functions

TypeDoc style documentation is available on-line here

The @exodus/taquito-taquito package contains higher-level functionality that builds upon the other packages in the Tezos Typescript Library Suite.

CDN Bundle

<script src="https://unpkg.com/@exodus/[email protected]/dist/taquito.min.js"
crossorigin="anonymous" integrity="sha384-aoF/c3t0snVS3cQRL0pjHDvDMZidG2D59nwa/1rWdDaUHyAPxgH3wZX3Qr8q1NKU"></script>

General Information

The TezosToolkit is a facade class that surfaces all of the library's capability and allows its configuration through different providers.

Install

npm i --save @exodus/taquito-taquito

Minimal configuration

TezosToolkit instantiation

The TezosToolkit constructor takes at least an RPC URL as a parameter. When instantiating the toolkit with a URL, a default instance of RpcClient is created. The RpcClient class is used to interact with the Tezos network.

import { TezosToolkit } from '@exodus/taquito-taquito';

const Tezos = new TezosToolkit('https://YOUR_PREFERRED_RPC_URL');

It is also possible to instantiate the TezosToolkit with a class that implements the RpcClientInterface. See the RpcClientCache from the @exodus/taquito-rpc package as an example that provides caching functionality.

Choosing between the contract or the wallet APIs

In most cases, you want to use the Wallet API when you give the users of your dapp the freedom to choose the wallet of their choice to interact with. The Contract API is more suited for back-end applications and forging/signing offline (for example, using the inMemorySigner). You would also use the Contract API to build a wallet.

Configure a signer to use the Contract API

Sending operations using the Contract API requires a signer to be configured. Taquito provides different signer implementations (e.g. see the taquito/remote-signer, taquito/signer and taquito/legder-signer). Here is an example using the InMemorySigner:

import { InMemorySigner } from '@exodus/taquito-signer';
import { TezosToolkit } from '@exodus/taquito-taquito';

const Tezos = new TezosToolkit('https://YOUR_PREFERRED_RPC_URL');

Tezos.setProvider({ signer: await InMemorySigner.fromSecretKey('edsk...') });

// Using the contract API, the follwing operation is signed using the configured signer:
await Tezos.contract.transfer({ to: publicKeyHash, amount: 2 });

Configure a wallet to use the Wallet API

Sending operations using the Wallet API requires a wallet to be configured. The wallet API supports different kinds of wallets. For example, the BeaconWallet from the @exodus/taquito-beacon-wallet can be used. Use the setWalletProvider method of the TezosToolkit to set the wallet and refer to the @exodus/taquito-beacon-wallet for specific configuration:

import { TezosToolkit } from '@exodus/taquito-taquito';
import { BeaconWallet } from '@exodus/taquito-beacon-wallet';

const Tezos = new TezosToolkit('https://YOUR_PREFERRED_RPC_URL');
const wallet = new BeaconWallet(options);

await wallet.requestPermissions(network);

Tezos.setWalletProvider(wallet);

// Using the wallet API, the configured wallet will prepare the transaction and broadcast it
await Tezos.wallet.transfer({ to: publicKeyHash, amount: 2 }).send();

TezosToolkit examples of additional configuration

The TezosToolkit contains different default providers that are customizable to adapt to users' needs.

Forger

Replace the default RpcForger with an instance of LocalForger:

import { localForger } from '@exodus/taquito-local-forger'
Tezos.setForgerProvider(localForger);

Packer

To fetch values of the big map using the local implementation to pack data, replace the default RpcPacker with an instance of MichelCodecPacker:

import { MichelCodecPacker } from '@exodus/taquito-taquito';
// Fetch values of the big map using local implementation to pack data
Tezos.setPackerProvider(new MichelCodecPacker());

Poller configuration

Polling interval for operation confirmation can be set globally for a taquito instance.

Tezos.setProvider(
    {
        config: {
            confirmationPollingIntervalSecond: 5,
            confirmationPollingTimeoutSecond: 180
        }
    }
)

Estimation

Use the estimate member to estimate fees, gas and storage of operations.

const estimate = await Tezos.estimate.transfer(transferParams);

Stream

Use the stream member to subscribe to specific operations:

Tezos.setProvider({ 
    config: { shouldObservableSubscriptionRetry: true, streamerPollingIntervalMilliseconds: 15000 } 
});

const bakerEndorsementFilter = {
    and: [{ source: 'tz2TSvNTh2epDMhZHrw73nV9piBX7kLZ9K9m' }, { kind: 'endorsement' }]
}

const bakerDelegation = {
    and: [{ destination: 'tz2TSvNTh2epDMhZHrw73nV9piBX7kLZ9K9m' }, { kind: 'delegation' }]
}

const sub = tezos.stream.subscribeOperation({
    or: [bakerEndorsementFilter, bakerDelegation]
})

sub.on('data', console.log)

Additional info

See the top-level https://github.com/ecadlabs/taquito file for details on reporting issues, contributing and versioning.

Disclaimer

THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.