Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
Bisht13 committed Oct 21, 2024
1 parent 2b725ab commit bd9374d
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 6 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ packages/nft_relayer/logs
sql_database.db
.sqlx
.ic.pem
config.json

# Relayer
packages/relayer/sendgrid.env
Expand Down
2 changes: 1 addition & 1 deletion packages/relayer/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ CHAIN_ID=11155111 # Chain ID of the testnet.

SMTP_SERVER=

PROVER_ADDRESS="https://zkemail--email-auth-prover-v1-3-0-flask-app.modal.run"
PROVER_ADDRESS="https://zkemail--email-auth-prover-v1-5-0-flask-app.modal.run"

DATABASE_URL= "postgres://test@localhost/emailauth_test"
RELAYER_EMAIL_ADDR=
Expand Down
4 changes: 1 addition & 3 deletions packages/relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,7 @@ serde_json = "1.0.68"
tiny_http = "0.12.0"
lettre = { version = "0.10.4", features = ["tokio1", "tokio1-native-tls"] }
ethers = { version = "2.0.10", features = ["abigen"] }
# relayer-utils = { version = "0.3.7", git = "https://github.com/zkemail/relayer-utils.git" }
relayer-utils = { rev = "6fb85e6", git = "https://github.com/zkemail/relayer-utils.git" }
# relayer-utils = { path="../../../relayer-utils" }
relayer-utils = { version = "0.4.0", git = "https://github.com/zkemail/relayer-utils.git" }
futures = "0.3.28"
sqlx = { version = "=0.7.3", features = ["postgres", "runtime-tokio"] }
regex = "1.10.2"
Expand Down
4 changes: 2 additions & 2 deletions packages/relayer/src/modules/mail.rs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pub async fn handle_email_event(event: EmailAuthEvent) -> Result<(), EmailError>
account_eth_addr, command, account_code, request_id
);

let subject = "Email Recovery: Acceptance Request".to_string();
let subject = "ZK Email Recovery: Acceptance Request".to_string();

// Prepare data for HTML rendering
let render_data = serde_json::json!({
Expand Down Expand Up @@ -217,7 +217,7 @@ pub async fn handle_email_event(event: EmailAuthEvent) -> Result<(), EmailError>
account_eth_addr, request_id
);

let subject = "Email Recovery: Recovery Request".to_string();
let subject = "ZK Email Recovery: Recovery Request".to_string();

// Prepare data for HTML rendering
let render_data = serde_json::json!({
Expand Down

0 comments on commit bd9374d

Please sign in to comment.