# @tronweb3/tronwallet-adapter-tronlink-evm

> Wallet adapter for TronLink wallet extension.

Latest version **1.2.1** (published 2026-08-07) · MIT license · 0 weekly downloads

## Install

```sh
npm install @tronweb3/tronwallet-adapter-tronlink-evm
pnpm add @tronweb3/tronwallet-adapter-tronlink-evm
yarn add @tronweb3/tronwallet-adapter-tronlink-evm
bun add @tronweb3/tronwallet-adapter-tronlink-evm
```

## Health

**Score 70/100 (B)** — status: active.

Positive: has types; esm support; no vulnerabilities; recently updated; high maintenance score; high quality score.

Warnings: low downloads.

## Facts

| | |
|---|---|
| Version | 1.2.1 |
| Published | 2026-08-07 |
| First published | 2023-11-15 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Node | >=16 |
| Dependencies | 1 |
| Unpacked size | 115.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 80 |
| Author | tronweb3 |
| Maintainers | troncore, tronwallet-adapter |
| Keywords | EVM, Ethereum Wallet, TronLink wallet |

## Links

- npm: https://www.npmjs.com/package/@tronweb3/tronwallet-adapter-tronlink-evm
- Repository: https://github.com/tronweb3/tronwallet-adapter
- Homepage: https://github.com/tronweb3/tronwallet-adapter#readme
- Issues: https://github.com/tronweb3/tronwallet-adapter/issues
- npm.io page: https://npm.io/package/@tronweb3/tronwallet-adapter-tronlink-evm

## Dependencies (1)

- [@tronweb3/abstract-adapter-evm](https://npm.io/package/@tronweb3/abstract-adapter-evm.md) ^1.1.2

## Recent versions

- 1.2.1 (latest) — 2026-08-07
- 1.2.0 — 2026-06-11
- 1.1.1 — 2026-04-09
- 1.1.0 — 2026-01-07
- 1.0.2 — 2025-09-25
- 1.0.1 — 2024-09-24
- 1.0.0 — 2023-11-15

## README

# `@tronweb3/tronwallet-adapter-tronlink-evm`

This package provides an adapter to enable DApps to connect to the [TronLink Wallet extension](https://chrome.google.com/webstore/detail/tronlink/ibnejdfjmmkpcnlpebklmnkoeoihofec).

## Demo

```typescript
import { TronLinkEvmAdapter } from '@tronweb3/tronwallet-adapter-tronlink-evm';

const adapter = new TronLinkEvmAdapter();
// 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: TronLinkEvmAdapterOptions)`

    ```typescript
    import { TronLinkEvmAdapter } from '@tronweb3/tronwallet-adapter-tronlink-evm';
    interface TronLinkEvmAdapterOptions {
        /**
         * Set if open Wallet's website when wallet is not installed.
         * Default is true.
         */
        openUrlWhenWalletNotFound?: boolean;
    }
    const tronLinkEvmAdapter = new TronLinkEvmAdapter({ openUrlWhenWalletNotFound: false });
    ```

    Note: unlike other EVM adapters, `TronLinkEvmAdapter` does not support `useDeeplink`, since TronLink's mobile in-app browser already injects the provider directly.

**Caveat** Currently TronLink wallet does not support `addChain()` and `signTypedData()`.

More detailed API can be found in [Abstract Adapter](https://github.com/tronweb3/tronwallet-adapter/blob/main/packages/adapters/evm/abstract-adapter/README.md).

---
_Source: https://npm.io/package/@tronweb3/tronwallet-adapter-tronlink-evm · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
