Skip to content

Commit

Permalink
feat: add support methods related to eth-connector
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksuss committed Jul 8, 2024
1 parent f5eea66 commit 35834ed
Show file tree
Hide file tree
Showing 8 changed files with 1,255 additions and 1,014 deletions.
1,734 changes: 871 additions & 863 deletions Cargo.lock

Large diffs are not rendered by default.

25 changes: 13 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,32 +19,33 @@ simple = ["toml"]
advanced = ["near-chain-configs"]

[dependencies]
aurora-engine-precompiles = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.6.1", features = ["std"] }
aurora-engine-sdk = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.6.1", features = ["std"] }
aurora-engine-transactions = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.6.1", features = ["std"] }
aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.6.1", features = ["std", "impl-serde"] }
aurora-engine-precompiles = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.6.3", features = ["std"] }
aurora-engine-sdk = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.6.3", features = ["std"] }
aurora-engine-transactions = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.6.3", features = ["std"] }
aurora-engine-types = { git = "https://github.com/aurora-is-near/aurora-engine.git", tag = "3.6.3", features = ["std", "impl-serde"] }

anyhow = "1"
borsh = "1"
bs58 = "0.5"
clap = { version = "4", features = ["derive"] }
ethabi = "18"
hex = "0.4"
lazy_static = "1"
libsecp256k1 = { version = "0.7", features = ["std"] }
near-chain-configs = { version = "0.20", optional = true }
near-crypto = "0.20"
near-jsonrpc-client = "0.8"
near-jsonrpc-primitives = "0.20"
near-primitives = "0.20"
reqwest = { version = "0.11", features = ["json"] }
near-chain-configs = { version = "0.23", optional = true }
near-crypto = "0.23"
near-jsonrpc-client = "0.10"
near-jsonrpc-primitives = "0.23"
near-primitives = "0.23"
reqwest = { version = "0.12", features = ["json"] }
rand = "0.8"
rlp = "0.5"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = { version = "0.8", optional = true }
shadow-rs = "0.27"
shadow-rs = "0.29"
thiserror = "1"
tokio = { version = "1", features = ["full"] }

[build-dependencies]
shadow-rs = "0.27"
shadow-rs = "0.29"
Loading

0 comments on commit 35834ed

Please sign in to comment.