Skip to content

Commit

Permalink
test: test execute_task with ITS message
Browse files Browse the repository at this point in the history
Signed-off-by: Guilherme Felipe da Silva <[email protected]>
  • Loading branch information
frenzox committed Jan 21, 2025
1 parent a72dbcf commit 9535416
Show file tree
Hide file tree
Showing 7 changed files with 635 additions and 29 deletions.
42 changes: 27 additions & 15 deletions Cargo.lock

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

23 changes: 12 additions & 11 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,17 +80,18 @@ relayer-amplifier-state = { git = "https://github.com/eigerco/axelar-relayer-cor
core-common-serde-utils = { git = "https://github.com/eigerco/axelar-relayer-core.git", package = "common-serde-utils", rev = "7f84b8d" }

# Solana Gateway
axelar-solana-gateway = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460", features = ["no-entrypoint"] }
axelar-solana-its = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460", features = ["no-entrypoint"] }
axelar-solana-governance = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460", features = ["no-entrypoint"] }
gateway-event-stack = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460" }
axelar-solana-encoding = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460" }
axelar-solana-gas-service = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460", features = ["no-entrypoint"] }
axelar-solana-memo-program = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460", features = ["no-entrypoint"] }
axelar-solana-gateway-test-fixtures = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460" }
axelar-message-primitives = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460" }
axelar-executable = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460" }
its-instruction-builder = { git = "https://github.com/eigerco/solana-axelar.git", rev = "61b074d460" }
axelar-solana-gateway = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0", features = ["no-entrypoint"] }
axelar-solana-its = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0", features = ["no-entrypoint"] }
axelar-solana-governance = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0", features = ["no-entrypoint"] }
gateway-event-stack = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0" }
axelar-solana-encoding = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0" }
axelar-solana-gas-service = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0", features = ["no-entrypoint"] }
axelar-solana-memo-program = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0", features = ["no-entrypoint"] }
axelar-solana-gateway-test-fixtures = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0" }
axelar-message-primitives = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0" }
axelar-executable = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0" }
its-instruction-builder = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0" }
interchain-token-transfer-gmp = { git = "https://github.com/eigerco/solana-axelar.git", rev = "ee2b5b0" }

# CLI
clap = { version = "4", features = ["derive"] }
Expand Down
20 changes: 17 additions & 3 deletions crates/solana-gateway-task-processor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,25 @@ axelar-solana-gas-service.workspace = true
bincode.workspace = true

[dev-dependencies]
serde_json.workspace = true
mockall.workspace = true
async-trait.workspace = true
solana-transaction-status.workspace = true
axelar-solana-gateway-test-fixtures.workspace = true
axelar-solana-memo-program.workspace = true
base64.workspace = true
file-based-storage.workspace = true
mockall.workspace = true
pretty_assertions.workspace = true
rand.workspace = true
retrying-solana-http-sender.workspace = true
serde_json.workspace = true
solana-rpc-client-api.workspace = true
solana-rpc.workspace = true
solana-test-validator.workspace = true
solana-transaction-status.workspace = true
test-log.workspace = true
tokio.workspace = true
interchain-token-transfer-gmp.workspace = true



[lints]
workspace = true
Loading

0 comments on commit 9535416

Please sign in to comment.