Security News
PyPI’s New Archival Feature Closes a Major Security Gap
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
@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/sdk
v4.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 20,800 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 0 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.
Security News
PyPI now allows maintainers to archive projects, improving security and helping users make informed decisions about their dependencies.
Research
Security News
Malicious npm package postcss-optimizer delivers BeaverTail malware, targeting developer systems; similarities to past campaigns suggest a North Korean connection.
Security News
CISA's KEV data is now on GitHub, offering easier access, API integration, commit history tracking, and automated updates for security teams and researchers.