Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test: relayer -> its flow #17

Merged
merged 3 commits into from
Jan 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading