Skip to content

Commit

Permalink
fix: use TAP as the name in the receipt EIP-712 domain (#451)
Browse files Browse the repository at this point in the history
We identified yesterday that this is what is used in the TAP contracts.
We'll need to update the indexer side as well.
  • Loading branch information
Jannis authored and Theodus committed Dec 11, 2023
1 parent 3ba1e08 commit aff6fb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graph-gateway/src/receipts.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ impl ReceiptSigner {
Self {
signer,
domain: Eip712Domain {
name: Some("Scalar TAP".into()),
name: Some("TAP".into()),
version: Some("1".into()),
chain_id: Some(chain_id),
verifying_contract: Some(verifier),
Expand Down

0 comments on commit aff6fb2

Please sign in to comment.