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

fix: keystore mutex #17

Closed
wants to merge 28 commits into from
Closed
Changes from 2 commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
2e2204b
support getting pk from aws secrets manager
ConjunctiveNormalForm Aug 29, 2024
cb81ace
Merge pull request #2 from Uniswap/support-aws-pk
ConjunctiveNormalForm Aug 29, 2024
4777bb0
fix: error handling (#1)
zhongeric Aug 29, 2024
100a12d
add reference docker file
ConjunctiveNormalForm Aug 29, 2024
5457881
Merge pull request #3 from Uniswap/add-docker
ConjunctiveNormalForm Aug 29, 2024
b79efe4
fix: Dockerfile
ConjunctiveNormalForm Aug 29, 2024
bf4c460
Merge pull request #4 from Uniswap/ConjunctiveNormalForm-patch-1
ConjunctiveNormalForm Aug 29, 2024
d8ebd18
feat: private key store and getters/setters (#5)
zhongeric Aug 29, 2024
20c59aa
wait for 1 confirmation before releasing key
zhongeric Sep 3, 2024
91b2cc6
set from address
zhongeric Sep 3, 2024
1d8ddf1
fix tracing logs format
zhongeric Sep 3, 2024
19e3fd2
Merge pull request #6 from Uniswap/feat-wait-for-confirmations
ConjunctiveNormalForm Sep 3, 2024
8bf5b95
Merge pull request #7 from Uniswap/fix-log-format
ConjunctiveNormalForm Sep 4, 2024
d3ef7ff
apt-get -y
ConjunctiveNormalForm Sep 4, 2024
7012fe4
Merge pull request #8 from Uniswap/fix-dockerfile
ConjunctiveNormalForm Sep 4, 2024
9761119
log receipt
ConjunctiveNormalForm Sep 6, 2024
3e649d4
log order hash
ConjunctiveNormalForm Sep 6, 2024
a08e4f7
logging
ConjunctiveNormalForm Sep 6, 2024
b6686b4
mod stuff
ConjunctiveNormalForm Sep 6, 2024
818ae26
log four bytes
ConjunctiveNormalForm Sep 9, 2024
e6249ee
log parsed
ConjunctiveNormalForm Sep 9, 2024
0eba8cb
Merge pull request #9 from Uniswap/more-logging
ConjunctiveNormalForm Sep 9, 2024
ce181e2
more structured logs
ConjunctiveNormalForm Sep 9, 2024
26d58e2
Merge remote-tracking branch 'origin/main' into more-logging
ConjunctiveNormalForm Sep 9, 2024
e58c805
fix format
ConjunctiveNormalForm Sep 9, 2024
04b5568
cargo fmt
ConjunctiveNormalForm Sep 9, 2024
e099a80
Merge pull request #10 from Uniswap/more-logging
ConjunctiveNormalForm Sep 10, 2024
d31de2a
fix keystore and add tests
zhongeric Sep 11, 2024
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
9 changes: 8 additions & 1 deletion src/main.rs
Original file line number Diff line number Diff line change
@@ -86,7 +86,14 @@ async fn main() -> Result<()> {
.with_target("uniswapx_artemis", Level::INFO);

tracing_subscriber::registry()
.with(tracing_subscriber::fmt::layer())
.with(
tracing_subscriber::fmt::layer()
// this needs to be set to false, otherwise ANSI color codes will
// show up in a confusing manner in CloudWatch logs.
.with_ansi(false)
// remove the name of the function from every log entry
.with_target(false),
)
.with(filter)
.init();