
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@pooltogether/evm-chains-extended
Advanced tools
Package to get chain data from ethereum-lists/chains with extra data such as blockExplorerUrls
Package to query chain data from ethereum-lists/chains with extended data necessary for EIP3085.
Makes use of Pedro Gomes' evm-chains package for the initial data, then merges in the extended data.
Includes Block Explorer URLs and network logos for certain networks.
This package is meant as a holdover and may be deprecated in the future in favor of simply using evm-chains
. That is dependent on EIPs such as: https://github.com/ethereum/EIPs/pull/3091
NOTE: This also makes use of a silent interface pattern where missing networks will be returned undefined instead of throwing.
npm install --save evm-chains-extended
#or
yarn add evm-chains-extended
function getAllChains(): IChainDataExtended[] | undefined;
function getChain(chainId: number): IChainDataExtended | undefined;
function getChainByChainId(chainId: number): IChainDataExtended | undefined;
function formatNetworkForAddEthereumChain(network: IChainDataExtended): IAddEthereumChainParameter;
To use network logos import into your dapp:
import EthLogo from '@pooltogether/evm-chains-extended/dist/umd/images/ethereum-icon.png'
import BscLogo1 from '@pooltogether/evm-chains-extended/dist/umd/images/bsc-icon-1.png'
import BscLogo2 from '@pooltogether/evm-chains-extended/dist/umd/images/bsc-icon-2.png'
import OptimismLogo from '@pooltogether/evm-chains-extended/dist/umd/images/optimism-icon.png'
import PoALogo from '@pooltogether/evm-chains-extended/dist/umd/images/poa-icon.png'
import PolygonLogo from '@pooltogether/evm-chains-extended/dist/umd/images/polygon-icon.png'
import XDaiLogo from '@pooltogether/evm-chains-extended/dist/umd/images/xdai-logo.png'
// then:
<img src={XDaiLogo} />
interface IChainDataExtended {
name: string;
chainId: number;
shortName: string;
chain: string;
network: string;
networkId: number;
nativeCurrency: {
name: string;
symbol: string;
decimals: number;
};
rpc: string[];
faucets: string[];
infoURL: string;
blockExplorerUrls: string[]
}
// format for EIP3085 wallet_addEthereumChain
interface IAddEthereumChainParameter {
chainId: string; // A 0x-prefixed hexadecimal string
chainName: string;
nativeCurrency: {
name: string;
symbol: string; // 2-6 characters long
decimals: number;
};
rpcUrls: string[];
blockExplorerUrls?: string[];
iconUrls?: string[]; // Currently ignored.
}
FAQs
Package to get chain data from ethereum-lists/chains with extra data such as blockExplorerUrls
We found that @pooltogether/evm-chains-extended demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
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.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.