
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@apillon/wallet-vue
Advanced tools
Collection of Vue composabes to help with embedded wallet implementation.
<EmbeddedWallet />
Initialize wallet SDK and UI.
import { EmbeddedWallet } from '@apillon/wallet-vue';
<EmbeddedWallet ...props />
Get the initialized instance of embedded wallet.
Also exposes the most common wallet actions.
import { useWallet } from '@apillon/wallet-vue';
const { wallet, signMessage, sendTransaction } = useWallet();
console.log(await wallet.value.userExists('johndoe'));
Get current connected account info.
import { useAccount } from '@apillon/wallet-vue';
const { info, getBalance } = useAccount();
Helper methods to interact with EVM contracts.
import { useContract } from '@apillon/wallet-vue';
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-vue';
const { polkadotApi, sendTransaction } = usePolkadot();
sendTransaction(polkadotApi.tx.balances.transferAllowDeath(...));
FAQs
▶◀ Apillon Embedded Wallet Vue UI ▶◀
The npm package @apillon/wallet-vue receives a total of 0 weekly downloads. As such, @apillon/wallet-vue popularity was classified as not popular.
We found that @apillon/wallet-vue 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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.