
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
@biconomy/abstractjs-canary
Advanced tools
SDK for Biconomy integration with support for account abstraction, smart accounts, ERC-4337.
The Biconomy SDK is your all-in-one toolkit for building decentralized applications (dApps) with ERC4337 Account Abstraction and Smart Accounts. It is designed for seamless user experiences and offers non-custodial solutions for user onboarding, sending transactions (userOps), gas sponsorship and much more.
bun add @biconomy/abstractjs viem @rhinestone/module-sdk
import { toMultichainNexusAccount, mcUSDC, createMeeClient } from "@biconomy/abstractjs";
import { base, optimism } from "viem/chains";
import { privateKeyToAccount } from "viem/accounts";
import { http } from "viem";
const eoaAccount = privateKeyToAccount(`0x${process.env.PRIVATE_KEY}`)
const mcNexus = await toMultichainNexusAccount({
signer: eoaAccount,
chainConfigurations: [
{
chain: base,
transport: http(),
version: getMEEVersion(DEFAULT_MEE_VERSION)
},
{
chain: optimism,
transport: http(),
version: getMEEVersion(DEFAULT_MEE_VERSION)
}
]
})
const meeClient = await createMeeClient({ account: mcNexus })
const quote = await meeClient.getQuote({
instructions: [{
calls: [{ to: "0x...", value: 1n, gasLimit: 100000n }],
chainId: base.id
}],
feeToken: {
address: mcUSDC.addressOn(base.id),
chainId: base.id
}
})
// Execute the quote and get back a transaction hash
// This sends the transaction to the network
const { hash } = await meeClient.executeQuote({ quote })
Prerequisites:
Setup:
bun install --frozen-lockfile
Funding test accounts:
# Fund test nexus accounts with native tokens and USDC, using a funded PRIVATE_KEY master account
bun run fund:nexus
Running Tests:
# Run all tests
bun run test
# Run tests in watch mode for a specific subset of tests (by test description)
bun run test:watch -t=mee
For detailed information about the testing framework, network configurations, and debugging guidelines, please refer to our Testing Documentation.
For a comprehensive understanding of our project and to contribute effectively, please refer to the following resources:
This project is licensed under the MIT License. See the LICENSE file for details
FAQs
SDK for Biconomy integration with support for account abstraction, smart accounts, ERC-4337.
The npm package @biconomy/abstractjs-canary receives a total of 24 weekly downloads. As such, @biconomy/abstractjs-canary popularity was classified as not popular.
We found that @biconomy/abstractjs-canary demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 5 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
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.