Skip to content

Commit 905965d

Browse files
authored
Merge pull request #76 from bitfinity-network/upgrade_deps
update_deps
2 parents 0e3761b + e83a145 commit 905965d

3 files changed

Lines changed: 10 additions & 10 deletions

File tree

Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ include = ["src/**/*", "LICENSE", "README.md"]
2525
license = "MIT"
2626
name = "bitfinity-evm-sdk"
2727
repository = "https://github.com/bitfinity-network/bitfinity-evm-sdk"
28-
version = "0.6.2"
28+
version = "0.7.0"
2929

3030
[workspace.dependencies]
3131
anyhow = "1.0"
@@ -40,12 +40,12 @@ ethereum-types = "0.14"
4040
ethers-core = "2.0"
4141
hash-db = "0.16"
4242
hex = "0.4"
43-
ic-canister = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister", tag = "v0.9.x" }
44-
ic-canister-client = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister-client", tag = "v0.9.x" }
45-
ic-exports = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-exports", tag = "v0.9.x" }
46-
ic-stable-structures = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-stable-structures", tag = "v0.9.x" }
47-
ic-storage = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-storage", tag = "v0.9.x" }
48-
ic-log = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-log", tag = "v0.9.x" }
43+
ic-canister = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister", tag = "v0.10.x" }
44+
ic-canister-client = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-canister-client", tag = "v0.10.x" }
45+
ic-exports = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-exports", tag = "v0.10.x" }
46+
ic-stable-structures = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-stable-structures", tag = "v0.10.x" }
47+
ic-storage = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-storage", tag = "v0.10.x" }
48+
ic-log = { git = "https://github.com/bitfinity-network/canister-sdk", package = "ic-log", tag = "v0.10.x" }
4949
itertools = "0.11"
5050
jsonrpc-core = "18.0"
5151
log = "0.4"
@@ -60,7 +60,7 @@ sha2 = "0.10"
6060
sha3 = "0.10"
6161
thiserror = "1.0"
6262
tokio = { version = "1.24", features = ["macros", "rt"] }
63-
zip = "0.6.6"
63+
zip = "0.6"
6464
alloy-primitives = { version = "0.4", default-features = false }
6565

6666
[profile.dev]

src/register-evm-agent/src/cli.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ impl ReserveArgs {
7777

7878
info!("initializing agent...");
7979
let network = network_url(&self.network);
80-
let agent = init_agent(&self.identity, network).await?;
80+
let agent = init_agent(&self.identity, network, None).await?;
8181

8282
match ReservationService::new(
8383
agent,

src/register-evm-agent/src/transaction.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ impl SignTransactionArgs {
5858
pub async fn exec(&self) -> anyhow::Result<()> {
5959
info!("initializing agent...");
6060
let network = network_url(&self.network);
61-
let agent = init_agent(&self.identity, network).await?;
61+
let agent = init_agent(&self.identity, network, None).await?;
6262
let client = EvmCanisterClient::new(IcAgentClient::with_agent(self.evm, agent));
6363
let wallet = get_wallet(self.signing_key.as_str())?;
6464

0 commit comments

Comments
 (0)