Python library for client-side interactions with Arbitrum
Project description
Arbitrum Python SDK
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.
Table of Contents
- Arbitrum Python SDK
- 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.
- Send 5 ETH to the dev account in 12 network.
Overview
Arbitrum Python SDK simplifies the process of interacting with Arbitrum chains, offering a robust set of tools for asset bridging and cross-chain messaging.
Installation
pip3 install arbitrum_py
Key Features
Bridging Assets
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 Messages
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.
Network Configuration
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.
Usage
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
Running Tests
- 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.exampleto.envand 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
Documentation
For comprehensive guides and API documentation, visit the Arbitrum Python SDK Documentation. You can also find tutorials in the Arbitrum Python Tutorials
License
Arbitrum Python SDK is released under the Apache 2.0 License.
Disclaimer
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.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file arbitrum_py-0.2.0.tar.gz.
File metadata
- Download URL: arbitrum_py-0.2.0.tar.gz
- Upload date:
- Size: 134.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8b41e3d1a205b36f0933d75df71e791fa0a1eb9f0f25b36a1c0da01a013eb898
|
|
| MD5 |
5648c03b1336a28d124451743e3f128e
|
|
| BLAKE2b-256 |
92b3433f1e05fa3907d8d16b2674c96b07e5149368c50ea420e40b8b12b2c3cc
|
File details
Details for the file arbitrum_py-0.2.0-py3-none-any.whl.
File metadata
- Download URL: arbitrum_py-0.2.0-py3-none-any.whl
- Upload date:
- Size: 162.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.8.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb7b1e91b9921fe3f12e8305694964cd90761c4366ffcd4ae0df825467a164cb
|
|
| MD5 |
300de1c29625cac1bcf35181a99baf26
|
|
| BLAKE2b-256 |
b9c7b00d5ea56ffc5cbffdd90c2afbe4fa24c6d014e56ea1a52c60a2eb4503dd
|