
Research
2025 Report: Destructive Malware in Open Source Packages
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.
@arbitrum/sdk
Advanced tools
A TypeScript library for client-side interactions with Arbitrum. The Arbitrum SDK provides essential helper functionality and direct access to underlying smart contract interfaces, enabling developers to build powerful applications on the Arbitrum network.
[!IMPORTANT]
This is the code and documentation for
@arbitrum/sdkv4.If you're looking for v3, check out this branch.
If you're looking to migrate from v3 to v4, check out this guide.
Arbitrum SDK simplifies the process of interacting with Arbitrum chains, offering a robust set of tools for asset bridging and cross-chain messaging.
npm install @arbitrum/sdk
# or
yarn add @arbitrum/sdk
Arbitrum SDK facilitates the bridging of assets between an Arbitrum chain and its parent chain. Currently supported asset bridgers:
EthBridger: For bridging ETH to and from an Arbitrum chain (L2 or L3)Erc20Bridger: For bridging ERC-20 tokens to and from an Arbitrum chain (L2 or L3)EthL1L3Bridger: For bridging ETH to an L3 directly from L1Erc20L1L3Bridger: For bridging ERC-20 tokens to an L3 directly from L1Cross-chain communication is handled through ParentToChildMessage and ChildToParentMessage classes. These encapsulate the lifecycle of messages sent between chains, typically created from transaction receipts that initiate cross-chain messages.
The SDK comes preconfigured for Arbitrum One, Arbitrum Nova and Arbitrum Sepolia. Custom Arbitrum networks can be registered using registerCustomArbitrumNetwork, which is required before utilizing other SDK features.
Here's a basic example of using the SDK to bridge ETH:
import { ethers } from 'ethers'
import { EthBridger, getArbitrumNetwork } from '@arbitrum/sdk'
async function bridgeEth(parentSigner: ethers.Signer, childChainId: number) {
const childNetwork = await getArbitrumNetwork(childChainId)
const ethBridger = new EthBridger(childNetwork)
const deposit = await ethBridger.deposit({
amount: ethers.utils.parseEther('0.1'),
parentSigner,
})
const txReceipt = await deposit.wait()
console.log(`Deposit initiated: ${txReceipt.transactionHash}`)
}
For more detailed usage examples and API references, please refer to the Arbitrum SDK documentation.
Set up a Nitro test node by following the instructions here.
Copy .env.example to .env and update relevant environment variables.
Generate the network configuration against your active Nitro test node:
yarn gen:network
Execute the integration tests:
yarn test:integration
For comprehensive guides and API documentation, visit the Arbitrum SDK Documentation.
Arbitrum SDK is released under the Apache 2.0 License.
FAQs
Typescript library client-side interactions with Arbitrum
The npm package @arbitrum/sdk receives a total of 12,693 weekly downloads. As such, @arbitrum/sdk popularity was classified as popular.
We found that @arbitrum/sdk demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 4 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
Destructive malware is rising across open source registries, using delays and kill switches to wipe code, break builds, and disrupt CI/CD.

Security News
Socket CTO Ahmad Nassri shares practical AI coding techniques, tools, and team workflows, plus what still feels noisy and why shipping remains human-led.

Research
/Security News
A five-month operation turned 27 npm packages into durable hosting for browser-run lures that mimic document-sharing portals and Microsoft sign-in, targeting 25 organizations across manufacturing, industrial automation, plastics, and healthcare for credential theft.