Skip to content

Commit b293ccb

Browse files
authored
Introduce CCIP urls in response (#30)
1 parent e7e9fc1 commit b293ccb

File tree

21 files changed

+84
-44
lines changed

21 files changed

+84
-44
lines changed

server/Cargo.lock

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ utoipa = { version = "4.1.0", features = ["axum_extras"] }
3030
utoipa-swagger-ui = { version = "4.0.0", features = ["axum"] }
3131
redis = { version = "0.23.0", features = ["connection-manager", "tokio-comp"] }
3232
ethers-ccip-read = { git = "https://github.com/ensdomains/ethers-ccip-read", branch = "main" }
33-
tower-http = { version = "0.4.1", features = ["cors", "tracing", "trace"] }
33+
tower-http = { version = "0.4.4", features = ["cors", "tracing", "trace"] }
3434
rand = "0.8.5"
3535
chrono = "0.4.31"
3636
ethers-contract = "2.0.9"

shared/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

shared/src/models/multicoin/decoding/binance.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,3 @@ impl MulticoinDecoder for BinanceDecoder {
1212
})
1313
}
1414
}
15-
16-
// TODO: tests

shared/src/models/multicoin/decoding/bitcoin_cash.rs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use super::{MulticoinDecoder, MulticoinDecoderError, p2pkh::P2PKHDecoder, p2sh::P2SHDecoder};
1+
use super::{p2pkh::P2PKHDecoder, p2sh::P2SHDecoder, MulticoinDecoder, MulticoinDecoderError};
22

33
pub struct BitcoinCashDecoder {}
44

@@ -15,5 +15,3 @@ impl MulticoinDecoder for BitcoinCashDecoder {
1515
Err(MulticoinDecoderError::InvalidStructure(String::new()))
1616
}
1717
}
18-
19-
// TODO: tests

shared/src/models/multicoin/decoding/dogecoin.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,3 @@ impl MulticoinDecoder for DogecoinDecoder {
1111
}
1212
}
1313
}
14-
15-
// TODO: tests

shared/src/models/multicoin/decoding/hedera.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,3 @@ impl MulticoinDecoder for HederaDecoder {
1515
Ok(format!("{shard}.{realm}.{account}"))
1616
}
1717
}
18-
19-
// TODO: tests

shared/src/models/multicoin/decoding/litecoin.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,3 @@ impl MulticoinDecoder for LitecoinDecoder {
2727
Err(MulticoinDecoderError::InvalidStructure(String::new()))
2828
}
2929
}
30-
31-
// TODO: tests

shared/src/models/multicoin/decoding/monacoin.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,3 @@ impl MulticoinDecoder for MonacoinDecoder {
1111
}
1212
}
1313
}
14-
15-
// TODO: tests

shared/src/models/multicoin/decoding/monero.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,3 @@ impl MulticoinDecoder for MoneroDecoder {
88
Err(MulticoinDecoderError::NotSupported)
99
}
1010
}
11-
12-
// TODO: tests

0 commit comments

Comments
 (0)