-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support base-sepolia lookups for kyc sbts
- Loading branch information
1 parent
4f9733e
commit 54bc8f2
Showing
5 changed files
with
101 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
export default [ | ||
"function balanceOf(address) view returns (uint256)", | ||
"function getApproved(uint256) view returns (address)", | ||
"function getIdentifier(address,bytes32) pure returns (bytes32)", | ||
"function getSBT(address,bytes32) view returns (tuple(uint256,uint256[],bool))", | ||
"function isApprovedForAll(address,address) view returns (bool)", | ||
"function name() view returns (string)", | ||
"function owner() view returns (address)", | ||
"function ownerOf(uint256) view returns (address)", | ||
"function renounceOwnership()", | ||
"function revokeSBT(address,bytes32)", | ||
"function sbtOwners(bytes32) view returns (uint256, bool)", | ||
"function setSBT(bytes32 circuitId, address sbtReceiver, uint expiration, uint nullifier, uint[] calldata publicValues)", | ||
"function supportsInterface(bytes4) view returns (bool)", | ||
"function symbol() view returns (string)", | ||
"function tokenURI(uint256) view returns (string)", | ||
"function transferOwnership(address)", | ||
"function usedNullifiers(uint256) view returns (bool)", | ||
"function getSBTByNullifier(uint256 nullifier) view returns (tuple(uint256 expiry, uint256[] publicValues, bool revoked) sbt)", | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters