Research
Security News
Malicious npm Package Targets Solana Developers and Hijacks Funds
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Librería para buscar divisas conforme listado ISO 4217. Last update: 2022-03-29
Package currency_iso4217
is a self-contained module that allows search currency
by code, country or currency definition returning the corresponding active currency information.
Python >=3.6
pip install currency-iso4217
from currency_iso4217 import search_by_code
search_by_code('CLP')
[{'position': 42, 'code': 'CLP', 'country': 'Chile', 'currency': 'Peso chileno', 'decimals': '0'}]
from currency_iso4217 import search_by_country
search_by_country('Chile')
[{'position': 41, 'code': 'CLP', 'country': 'Chile', 'currency': 'Unidad de fomento', 'decimals': '4'}, {'position': 42, 'code': 'CLP', 'country': 'Chile', 'currency': 'Peso chileno', 'decimals': '0'}]
from currency_iso4217 import search_by_currency
search_by_currency('Peso chileno')
[{'position': 42, 'code': 'CLP', 'country': 'Chile', 'currency': 'Peso chileno', 'decimals': '0'}]
from currency_iso4217 import search_decimals
search_decimals('USD')
2
from currency_iso4217 import show_list
show_list() [...]
Written by Marcelo Daniel Iacobucci. Distributed under Public Domain.
FAQs
Librería para buscar divisas conforme listado ISO 4217. Last update: 2022-03-29
We found that currency-iso4217 demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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
A malicious npm package targets Solana developers, rerouting funds in 2% of transactions to a hardcoded address.
Security News
Research
Socket researchers have discovered malicious npm packages targeting crypto developers, stealing credentials and wallet data using spyware delivered through typosquats of popular cryptographic libraries.
Security News
Socket's package search now displays weekly downloads for npm packages, helping developers quickly assess popularity and make more informed decisions.