
Research
Malicious fezbox npm Package Steals Browser Passwords from Cookies via Innovative QR Code Steganographic Technique
A malicious package uses a QR code as steganography in an innovative technique.
@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
A malicious package uses a QR code as steganography in an innovative technique.
Research
/Security News
Socket identified 80 fake candidates targeting engineering roles, including suspected North Korean operators, exposing the new reality of hiring as a security function.
Application Security
/Research
/Security News
Socket detected multiple compromised CrowdStrike npm packages, continuing the "Shai-Hulud" supply chain attack that has now impacted nearly 500 packages.