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

feat(sessions): irn client scaffolding #681

Merged
merged 7 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from 6 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
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@
!bin
!migrations
!assets
!irn
6 changes: 6 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,9 @@ export RPC_PROXY_POSTGRES_URI="postgres://postgres@localhost/postgres"
# export RPC_PROXY_RATE_LIMITING_MAX_TOKENS=100
# export RPC_PROXY_RATE_LIMITING_REFILL_INTERVAL_SEC=1
# export RPC_PROXY_RATE_LIMITING_REFILL_RATE=2

# Uncomment for using the IRN client
# export RPC_PROXY_IRN_NODE=127.0.0.1:3011
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I suggest using multiple IRN nodes, as a fall-back mechanism. One node can have a downtime even under normal conditions

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Makes sense. Good follow-up. Created it as #685

# export RPC_PROXY_IRN_KEY=base64_key
# export RPC_PROXY_IRN_NAMESPACE=namespace
# export RPC_PROXY_IRN_NAMESPACE_SECRET=namespace_secret
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[submodule "terraform/monitoring/grafonnet-lib"]
path = terraform/monitoring/grafonnet-lib
url = [email protected]:WalletConnect/grafonnet-lib.git
[submodule "irn"]
path = irn
url = [email protected]:WalletConnect/irn-node.git
Loading
Loading