Verifying the proofs
The Verifier Contract
Network
Address
Using the Verifier
pragma solidity ^0.8.0;
import "../interface/IGeoLocationDataVerifier.sol";
IGeoLocationDataVerifier public verifier;
contract YourContractName {
IGeoLocationDataVerifier public verifier;
// Construct the contract using the official GeoStream Verifier address
constructor(address _verifier) {
verifier = IGeoLocationDataVerifier(_verifier);
}
// ...
}Last updated
Was this helpful?