
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Abstraction library for managing funds for various cryptocurrencies via their RPCs
Provides a single abstract interface for managing the funds of various cryptocurrency wallets via their RPC interfaces.
This project currently supports the following coins:
pip install aiocryptocurrency
Example using Firo (the API is the same for other coins).
import asyncio
from aiocryptocurrency.coins.nero import Wownero, Monero
from aiocryptocurrency.coins.firo import Firo
async def main():
# ./firod -testnet -rpcbind=127.0.0.1 -rpcallowip=127.0.0.1 -rpcport=18888 -rpcuser=admin -rpcpassword=admin
firo = Firo()
firo.port = 18888
firo.basic_auth = ('admin', 'admin')
# create a new receiving address
blob = await firo.create_address()
address = blob['address']
# # list incoming txs
txs = await firo.list_txs(address)
for tx in txs:
print(tx.txid)
# send payment
dest = 'TRwRAjxfAVKVZYQGdmskZRDSBw9E5YqjC8'
amount = 0.05
txid = await firo.send(dest, amount)
loop = asyncio.get_event_loop()
loop.run_until_complete(main())
FAQs
Abstraction library for managing funds for various cryptocurrencies via their RPCs
We found that aiocryptocurrency 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.
Security News
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.