New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

@thetalabs/wallet-metadata

Package Overview
Dependencies
Maintainers
4
Versions
57
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@thetalabs/wallet-metadata

A mapping of TNT20 contract addresses to broadly accepted icons for those tokens.

latest
npmnpm
Version
1.0.58
Version published
Maintainers
4
Created
Source

@thetalabs/wallet-metadata

A mapping of checksummed contract addresses to metadata, like names, and images of their logos.

All address keys follow the EIP 55 address checksum format.

Usage

You can install from npm with npm install @thetalabs/wallet-metadata and use it in your code like this:

import tokensByChainId from '@thetalabs/tnt20-contract-metadata';
import ethJSUtil from 'ethereumjs-util'
const { toChecksumAddress } = ethJSUtil

function getTokenMetadata (address) {
  const chainId = 'testnet';
  return tokensByChainId[chainId][toChecksumAddress(address)];
}

getTokenMetadata ("0x141eE1a64645C29b3D1881B2734d315f9f74A377")

FAQs

Package last updated on 18 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts