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: switch to relay webhooks #339

Merged
merged 30 commits into from
Feb 12, 2024
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
91d8ea5
Register webhook and renew all subscriptions on start
chris13524 Jan 26, 2024
6c1a172
fix: use relay webhooks
chris13524 Jan 26, 2024
bc8c5ab
chore: remove tungstenite
chris13524 Jan 26, 2024
fc9bfcc
fix: remove instances of websocket
chris13524 Jan 26, 2024
323a5fc
chore: comment
chris13524 Jan 26, 2024
764f7f4
fix: increase startup timeout
chris13524 Jan 27, 2024
af4e557
chore: relay HTTP client -> relay client
chris13524 Jan 27, 2024
3ac8f7a
fix: further increase socket connect timeout
chris13524 Jan 27, 2024
055c906
fix: increase Postgres connection limit
chris13524 Jan 27, 2024
b95a17c
fix: max 1 connection
chris13524 Jan 27, 2024
bb9af9d
fix: bump max connections
chris13524 Jan 27, 2024
a92ecb5
fix: verify aud
chris13524 Jan 29, 2024
c0029da
fix: verify iss
chris13524 Jan 29, 2024
cb431b0
fix: restore topic unsubscribe
chris13524 Jan 29, 2024
4773abd
chore: test invalid JWT
chris13524 Jan 29, 2024
5aaf9cd
chore: tf docs
chris13524 Jan 29, 2024
bda0e03
chore: test webhook verification
chris13524 Jan 29, 2024
879b44b
chore: test webhook registration
chris13524 Jan 30, 2024
7f849ed
chore: update comments
chris13524 Jan 30, 2024
980eaee
chore: wip batchReceive
chris13524 Jan 30, 2024
a753a0f
chore: fmt
chris13524 Jan 30, 2024
68c9b36
fix: rewrite deployment test
chris13524 Jan 30, 2024
1953773
fix: remove message from mailbox
chris13524 Feb 1, 2024
90ea1db
Merge branch 'main' of https://github.com/WalletConnect/notify-server…
chris13524 Feb 8, 2024
d4d93c8
fix: avoid duplicate webhook registrations
chris13524 Feb 8, 2024
109713c
fix: update to proper spec
chris13524 Feb 8, 2024
630f4b9
feat: batch_receive batcher service
chris13524 Feb 9, 2024
08c24ac
fix: tweaks, fix test
chris13524 Feb 10, 2024
375efd9
chore: better comment
chris13524 Feb 10, 2024
8159fa3
chore: use tagged versions
chris13524 Feb 12, 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
Prev Previous commit
chore: use tagged versions
  • Loading branch information
chris13524 committed Feb 12, 2024
commit 8159fa3d8787882791b7ab6a239621f2f4a50f3e
4 changes: 2 additions & 2 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -74,8 +74,8 @@ futures = "0.3.26"
futures-util = "0.3"
dashmap = "5.4.0"

relay_rpc = { git = "https://github.com/WalletConnect/WalletConnectRust.git", branch = "fix/events-is-array-match-specs", features = ["cacao"] }
relay_client = { git = "https://github.com/WalletConnect/WalletConnectRust.git", branch = "fix/events-is-array-match-specs" }
relay_rpc = { git = "https://github.com/WalletConnect/WalletConnectRust.git", tag = "v0.26.2", features = ["cacao"] }
relay_client = { git = "https://github.com/WalletConnect/WalletConnectRust.git", tag = "v0.26.2" }
x25519-dalek = { version = "2.0.0", features = ["static_secrets"] }
hkdf = "0.12.3"
sha2 = "0.10.6"
2 changes: 1 addition & 1 deletion rs-relay
Loading