-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Lohann Paterno Coutinho Ferreira <lohann@enjin.io>
- Loading branch information
1 parent
8d0abba
commit d6301e0
Showing
15 changed files
with
638 additions
and
54 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
chains/arbitrum/testing/rosetta-testing-arbitrum/Cargo.toml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[package] | ||
name = "rosetta-testing-arbitrum" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "MIT" | ||
repository = "https://github.com/analog-labs/chain-connectors" | ||
description = "Arbitrum unit test." | ||
|
||
[dependencies] | ||
anyhow = "1.0" | ||
ethers = { version = "2.0", default-features = true, features = ["abigen", "rustls"] } | ||
rosetta-config-ethereum.workspace = true | ||
rosetta-core.workspace = true | ||
rosetta-docker = { workspace = true, features = ["tests"] } | ||
rosetta-server-ethereum.workspace = true | ||
sequential-test = "0.2.4" | ||
serde_json.workspace = true | ||
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] } | ||
tracing = "0.1.40" | ||
|
||
[dev-dependencies] | ||
alloy-sol-types = { version = "0.5" } | ||
ethers-solc = "2.0" | ||
rosetta-client.workspace = true | ||
sha3 = "0.10" | ||
url = "2.4" |
11 changes: 11 additions & 0 deletions
11
chains/arbitrum/testing/rosetta-testing-arbitrum/Readme.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Arbitrum test instructions | ||
|
||
Before running the test-cases need to setup the [Arbitrum nitro-testnode](https://github.com/OffchainLabs/nitro-testnode). | ||
|
||
Place the nitro-testnode in side the testing folder. | ||
|
||
Clone repo using : | ||
|
||
```bash | ||
git clone -b release --recurse-submodules https://github.com/OffchainLabs/nitro-testnode.git | ||
``` |
Oops, something went wrong.