|
@ -49,6 +49,11 @@ async function deposit(circuitname) { |
|
|
toastr.error("Please install/connect Metamask"); |
|
|
toastr.error("Please install/connect Metamask"); |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
if (window.ethereum.networkVersion!='5') { |
|
|
|
|
|
toastr.warning("Please switch to Göerli"); |
|
|
|
|
|
alert("Please switch to Göerli"); |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
document.getElementById("depositRes").innerHTML = `
|
|
|
document.getElementById("depositRes").innerHTML = `
|
|
|
Generating zkProof & making the deposit |
|
|
Generating zkProof & making the deposit |
|
|
`;
|
|
|
`;
|
|
@ -91,6 +96,7 @@ async function deposit(circuitname) { |
|
|
const time = end - start; |
|
|
const time = end - start; |
|
|
println("circuit " + circuitname + " took " + time + "ms to compute"); |
|
|
println("circuit " + circuitname + " took " + time + "ms to compute"); |
|
|
console.log(proof); |
|
|
console.log(proof); |
|
|
|
|
|
console.log("proof", JSON.stringify(proof)); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// send tx
|
|
|
// send tx
|
|
@ -151,6 +157,11 @@ async function withdraw(circuitname) { |
|
|
toastr.error("Please install/connect Metamask"); |
|
|
toastr.error("Please install/connect Metamask"); |
|
|
return; |
|
|
return; |
|
|
} |
|
|
} |
|
|
|
|
|
if (window.ethereum.networkVersion!='5') { |
|
|
|
|
|
toastr.warning("Please switch to Göerli"); |
|
|
|
|
|
alert("Please switch to Göerli"); |
|
|
|
|
|
return; |
|
|
|
|
|
} |
|
|
document.getElementById("withdrawRes").innerHTML = `
|
|
|
document.getElementById("withdrawRes").innerHTML = `
|
|
|
Generating zkProof & making the withdraw |
|
|
Generating zkProof & making the withdraw |
|
|
`;
|
|
|
`;
|
|
@ -269,6 +280,11 @@ async function connectMetamask() { |
|
|
if (!ethEnabled()) { |
|
|
if (!ethEnabled()) { |
|
|
toastr.warning("Please install Metamask to use miksi"); |
|
|
toastr.warning("Please install Metamask to use miksi"); |
|
|
alert("Please install MetaMask to use miksi"); |
|
|
alert("Please install MetaMask to use miksi"); |
|
|
|
|
|
return; |
|
|
|
|
|
} else if (window.ethereum.networkVersion!='5') { |
|
|
|
|
|
toastr.warning("Please switch to Göerli"); |
|
|
|
|
|
alert("Please switch to Göerli"); |
|
|
|
|
|
return; |
|
|
} else { |
|
|
} else { |
|
|
metamask = true; |
|
|
metamask = true; |
|
|
} |
|
|
} |
|
|