Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
ahramy committed Jan 23, 2025
1 parent d012ffb commit 3afbffd
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 17 deletions.
26 changes: 13 additions & 13 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ alloy-sol-types = { version = "0.8.19", default-features = false, features = [
"std",
] }
cfg-if = { version = "1.0", default-features = false }
example = { version = "^0.1.0", path = "contracts/example" }
goldie = { version = "0.5.0", default-features = false }
hex = { version = "0.4", default-features = false }
paste = { version = "1.0", default-features = false }
Expand All @@ -28,6 +27,7 @@ stellar-axelar-gateway = { version = "^0.1.0", path = "contracts/stellar-axelar-
stellar-axelar-operators = { version = "^0.1.0", path = "contracts/stellar-axelar-operators" }
stellar-axelar-std = { version = "^0.1.0", path = "packages/stellar-axelar-std", features = ["derive"] }
stellar-axelar-std-derive = { version = "^0.1.0", path = "packages/stellar-axelar-std-derive" }
stellar-example = { version = "^0.1.0", path = "contracts/stellar-example" }
stellar-interchain-token = { version = "^0.1.0", path = "contracts/stellar-interchain-token" }
stellar-interchain-token-service = { version = "^0.1.0", path = "contracts/stellar-interchain-token-service" }

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "example"
name = "stellar-example"
version = "0.1.0"
edition = { workspace = true }

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
use example::event::{ExecutedEvent, TokenReceivedEvent};
use example::{Example, ExampleClient};
use soroban_sdk::testutils::{Address as _, AuthorizedFunction, AuthorizedInvocation};
use soroban_sdk::token::{self, StellarAssetClient};
use soroban_sdk::{vec, Address, Bytes, BytesN, Env, IntoVal, String, Symbol};
Expand All @@ -13,6 +11,8 @@ use stellar_axelar_std::address::AddressExt;
use stellar_axelar_std::traits::BytesExt;
use stellar_axelar_std::types::Token;
use stellar_axelar_std::{auth_invocation, events};
use stellar_example::event::{ExecutedEvent, TokenReceivedEvent};
use stellar_example::{Example, ExampleClient};
use stellar_interchain_token_service::event::TrustedChainSetEvent;
use stellar_interchain_token_service::testutils::INTERCHAIN_TOKEN_WASM_HASH;
use stellar_interchain_token_service::{InterchainTokenService, InterchainTokenServiceClient};
Expand Down

0 comments on commit 3afbffd

Please sign in to comment.