
Research
/Security News
DuckDB npm Account Compromised in Continuing Supply Chain Attack
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
@apillon/wallet-react
Advanced tools
Collection of React hooks to help with embedded wallet implementation.
<EmbeddedWallet />
Initialize wallet SDK and UI.
import { EmbeddedWallet } from '@apillon/wallet-react';
return <EmbeddedWallet ...props />;
Get the initialized instance of embedded wallet.
Also exposes the most common wallet actions.
import { useWallet } from '@apillon/wallet-react';
const { wallet, signMessage, sendTransaction } = useWallet();
console.log(await wallet.userExists('johndoe'));
Get current connected account info.
import { useAccount } from '@apillon/wallet-react';
const { info, getBalance } = useAccount();
Helper methods to interact with contracts.
import { useContract } from '@apillon/wallet-react';
const { read, write } = useContract({
abi: ERC20Abi,
address: '0xb1058eD01451B947A836dA3609f88C91804D0663',
});
console.log(await read('balanceOf', [address]));
const txHash = await write(
'transfer',
['0x700cebAA997ecAd7B0797f8f359C621604Cce6Bf', '10000000'],
'React Transfer'
);
Helpers for interacting with polkadot API.
import { usePolkadot } from '@apillon/wallet-react';
const { polkadotApi, sendTransaction } = usePolkadot();
sendTransaction(polkadotApi.tx.balances.transferAllowDeath(...));
FAQs
▶◀ Apillon Embedded Wallet React UI ▶◀
We found that @apillon/wallet-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 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
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.
Product
Socket’s new Pull Request Stories give security teams clear visibility into dependency risks and outcomes across scanned pull requests.