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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@tronweb3/tronwallet-adapter-tokenpocket-evm

v1.0.0

Published

Wallet adapter for TokenPocket extension and app on EVM-Compatible Chains.

Downloads

57

Readme

@tronweb3/tronwallet-adapter-tokenpocket-evm

This package provides an adapter to enable DApps to connect to the TokenPocket on EVM-Compatible Chains.

Demo

import { TokenPocketEvmAdapter } from '@tronweb3/tronwallet-adapter-tokenpocket-evm';

const adapter = new TokenPocketEvmAdapter();
// connect
await adapter.connect();

// then you can get address
console.log(adapter.address);

// just use the sendTransaction method to send a transfer transaction.
const transaction = {
    value: '0x' + Number(0.01 * Math.pow(10, 18)).toString(16), // 0.01 is 0.01ETH
    to: 'your target address',
    from: adapter.address,
};
await adapter.sendTransaction(transaction);

Documentation

API

  • Constructor(config: TokenPocketEvmAdapterOptions)

    import { TokenPocketEvmAdapter } from '@tronweb3/tronwallet-adapter-tokenpocket-evm';
    interface TokenPocketEvmAdapterOptions {
        /**
         * Set if open TokenPocket app when in mobile device.
         * Default is true.
         */
        useDeeplink?: boolean;
        /**
         * Set if open Wallet's website when wallet is not installed.
         * Default is true.
         */
        openUrlWhenWalletNotFound?: boolean;
    }
    
    // Default: open the TokenPocket app on mobile, and open the wallet website
    // when the wallet is not detected.
    const adapter = new TokenPocketEvmAdapter();
    // Stay on the current page on mobile instead of opening the TokenPocket app.
    const withoutDeeplink = new TokenPocketEvmAdapter({ useDeeplink: false });
    // Do not open the wallet website when the wallet is not detected.
    const withoutWebsite = new TokenPocketEvmAdapter({ openUrlWhenWalletNotFound: false });
    // Never navigate away; handle both cases in your own UI.
    const silent = new TokenPocketEvmAdapter({ useDeeplink: false, openUrlWhenWalletNotFound: false });

    How the two options interact

    connect() evaluates the deeplink first, so at most one of them takes effect per call:

    1. In a mobile browser outside the TokenPocket in-app browser, and when useDeeplink is not false, the adapter opens the TokenPocket app and connect() resolves with an empty string immediately. openUrlWhenWalletNotFound is never reached.
    2. Otherwise — on desktop, inside the TokenPocket in-app browser, or with useDeeplink: false — the adapter looks for the injected provider. If it is missing and openUrlWhenWalletNotFound is not false, the wallet website is opened in a new tab, and WalletNotFoundError is thrown either way.

    So openUrlWhenWalletNotFound only applies on the path where no deeplink was opened.

Caveats

  • Contract Deployment on TokenPocket iOS App: The TokenPocket iOS App cannot sign transactions for deploying new contracts because it requires a to field to be present. However, passing a to field causes the wallet to process the transaction as a contract call rather than a contract deployment.

More detailed API can be found in Abstract Adapter.