
Research
Two Malicious Rust Crates Impersonate Popular Logger to Steal Wallet Keys
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
@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'
);
FAQs
▶◀ Apillon Embedded Wallet React UI ▶◀
The npm package @apillon/wallet-react receives a total of 13 weekly downloads. As such, @apillon/wallet-react popularity was classified as not popular.
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
Socket uncovers malicious Rust crates impersonating fast_log to steal Solana and Ethereum wallet keys from source code.
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.