Skip to content

Commit

Permalink
fix circuit id in set request
Browse files Browse the repository at this point in the history
  • Loading branch information
volodymyr-basiuk committed Nov 16, 2023
1 parent eb4c545 commit 86db4ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions on-chain-verification/scripts/set-request.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async function main() {
operator: Operators.LT,
slotIndex: 0,
value: [20020101, ...new Array(63).fill(0)], // for operators 1-3 only first value matters
circuitIds: ['credentialAtomicQueryMTPV2OnChain'],
circuitIds: ['credentialAtomicQuerySigV2OnChain'],
skipClaimRevocationCheck: false,
claimPathNotExists: 1
};
Expand All @@ -108,7 +108,7 @@ async function main() {
).toString();

// add the address of the contract just deployed
const ERC20VerifierAddress = "0x955072E24F35B137361254BC8B01aCdfB09dE2bC"
const ERC20VerifierAddress = "0xfb582f48136f079C0D03554954e081911Bfc3FA4"

let erc20Verifier = await hre.ethers.getContractAt("ERC20Verifier", ERC20VerifierAddress)

Expand Down

0 comments on commit 86db4ac

Please sign in to comment.