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
Show file tree
Hide file tree
Changes from all 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
32 changes: 32 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# Include any files or directories that you don't want to be copied to your
# container here (e.g., local build artifacts, temporary files, etc.).
#
# For more help, visit the .dockerignore file reference guide at
# https://docs.docker.com/go/build-context-dockerignore/

**/.DS_Store
**/.classpath
**/.dockerignore
**/.env
**/.git
**/.gitignore
**/.project
**/.settings
**/.toolstarget
**/.vs
**/.vscode
**/*.*proj.user
**/*.dbmdl
**/*.jfm
**/charts
**/docker-compose*
**/compose.y*ml
**/Dockerfile*
**/node_modules
**/npm-debug.log
**/secrets.dev.yaml
**/values.dev.yaml
/bin
/target
LICENSE
README.md
Loading
Loading