A TypeScript library for client-side interactions with Arbitrum. The Arbitrum Python 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 here are based on the official @arbitrum/sdk v4 and have been rewritten in Python. Based release version: v4.0.2
This repository is a community effort and is not officially supported by Offchain Labs. Please see the disclaimer at the end of this document.
- 📚 Documentation
- 💡 Tutorials
Arbitrum Python SDK simplifies the process of interacting with Arbitrum chains, offering a robust set of tools for asset bridging and cross-chain messaging.
pip3 install arbitrum_py
Arbitrum Python 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 L1
Cross-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 register_custom_arbitrum_network
, which is required before utilizing other SDK features.
Here's a basic example of using the SDK to bridge ETH:
from web3 import Web3
from eth_account import Account
from arbitrum_py.data_entities.networks import get_arbitrum_network
from arbitrum_py.asset_bridger.eth_bridger import EthBridger
from arbitrum_py.data_entities.signer_or_provider import SignerOrProvider
def bridge_eth(parent_signer: SignerOrProvider, child_chain_id: int):
child_network = get_arbitrum_network(child_chain_id)
eth_bridger = EthBridger(child_network)
deposit = eth_bridger.deposit({
'amount': Web3.to_wei(0.1, 'ether'),
'parentSigner': parent_signer,
})
print(f"Deposit initiated: {deposit['transactionHash'].hex()}")
For more detailed usage examples and API references, please refer to the Arbitrum Python SDK documentation or check out the tutorials
- Set up test nodes by following the instructions here or below quick setup:
# Make sure docker is installed
git clone -b release --recurse-submodules https://github.com/OffchainLabs/nitro-testnode.git && cd nitro-testnode
chmod +x ./test-node.bash && && ./test-node.bash --init --tokenbridge --l3node --l3-token-bridge --blockscout --detach
# (Optional) You can fund default accounts with ETH using the following command
# https://docs.arbitrum.io/run-arbitrum-node/run-local-full-chain-simulation#blockscout
# Send 5 ETH to the dev account in L2 network.
./test-node.bash script send-l2 --to 0x3f1Eae7D46d88F08fc2F8ed27FCb2AB183EB2d0E --ethamount 5
# Send 5 ETH to the dev account in 12 network.
./test-node.bash script send-l1 --to 0x3f1Eae7D46d88F08fc2F8ed27FCb2AB183EB2d0E --ethamount 5
-
Copy
.env.example
to.env
and update relevant environment variables. -
Install dependencies:
pip install -r requirements.txt
- Generate the network configuration against your active Nitro test node:
python3 -m scripts.gen_network
- Execute the integration tests:
pytest tests
For comprehensive guides and API documentation, visit the Arbitrum Python SDK Documentation. You can also find tutorials in the Arbitrum Python Tutorials
Arbitrum Python SDK is released under the Apache 2.0 License.
The code contained within this package is meant for testing purposes only and does not guarantee any level of security. It has not undergone any formal audit or security analysis. Use it at your own risk. Any potential damages or security breaches occurring from the use of this code are not the responsibility of the author(s) or contributor(s) of this repository. Please exercise caution and due diligence while using this code in any environment.