forked from zkemail/proof-of-twitter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ProofOfTwitter.sol
125 lines (104 loc) · 5.45 KB
/
ProofOfTwitter.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@zk-email/contracts/DKIMRegistry.sol";
import "@zk-email/contracts/utils/StringUtils.sol";
import "./utils/NFTSVG.sol";
import { Verifier } from "./Verifier.sol";
contract ProofOfTwitter is ERC721Enumerable {
using Counters for Counters.Counter;
using StringUtils for *;
using NFTSVG for *;
uint16 public constant bytesInPackedBytes = 31;
string constant domain = "x.com";
uint32 public constant pubKeyHashIndexInSignals = 0; // index of DKIM public key hash in signals array
uint32 public constant usernameIndexInSignals = 1; // index of first packed twitter username in signals array
uint32 public constant usernameLengthInSignals = 1; // length of packed twitter username in signals array
uint32 public constant addressIndexInSignals = 2; // index of ethereum address in signals array
Counters.Counter private tokenCounter;
DKIMRegistry dkimRegistry;
Verifier public immutable verifier;
mapping(uint256 => string) public tokenIDToName;
constructor(Verifier v, DKIMRegistry d) ERC721("VerifiedEmail", "VerifiedEmail") {
verifier = v;
dkimRegistry = d;
}
function tokenDesc(uint256 tokenId) public view returns (string memory) {
string memory twitter_username = tokenIDToName[tokenId];
address address_owner = ownerOf(tokenId);
string memory result = string(
abi.encodePacked("Twitter username", twitter_username, "is owned by", StringUtils.toString(address_owner))
);
return result;
}
function tokenURI(uint256 tokenId) public view override returns (string memory) {
string memory username = tokenIDToName[tokenId];
address owner = ownerOf(tokenId);
return NFTSVG.constructAndReturnSVG(username, tokenId, owner);
}
function _domainCheck(uint256[] memory headerSignals) public pure returns (bool) {
string memory senderBytes = StringUtils.convertPackedBytesToString(headerSignals, 18, bytesInPackedBytes);
string[2] memory domainStrings = ["verify@x.com", "info@x.com"];
return
StringUtils.stringEq(senderBytes, domainStrings[0]) || StringUtils.stringEq(senderBytes, domainStrings[1]);
// Usage: require(_domainCheck(senderBytes, domainStrings), "Invalid domain");
}
/// Mint a token proving twitter ownership by verifying proof of email
/// @param proof ZK proof of the circuit - a[2], b[4] and c[2] encoded in series
/// @param signals Public signals of the circuit. First item is pubkey_hash, next 3 are twitter username, the last one is etherum address
function mint(uint256[8] memory proof, uint256[3] memory signals) public {
// TODO no invalid signal check yet, which is fine since the zk proof does it
// Checks: Verify proof and check signals
// require(signals[0] == 1337, "invalid signals");
// public signals are the masked packed message bytes, and hash of public key.
// Check eth address committed to in proof matches msg.sender, to avoid replayability
// require(address(uint160(signals[addressIndexInSignals])) == msg.sender, "Invalid address");
// Check from/to email domains are correct [in this case, only from domain is checked]
// Right now, we just check that any email was received from anyone at Twitter, which is good enough for now
// We will upload the version with these domain checks soon!
// require(_domainCheck(headerSignals), "Invalid domain");
// Verify the DKIM public key hash stored on-chain matches the one used in circuit
bytes32 dkimPublicKeyHashInCircuit = bytes32(signals[pubKeyHashIndexInSignals]);
require(dkimRegistry.isDKIMPublicKeyHashValid(domain, dkimPublicKeyHashInCircuit), "invalid dkim signature");
// Veiry RSA and proof
require(
verifier.verifyProof(
[proof[0], proof[1]],
[[proof[2], proof[3]], [proof[4], proof[5]]],
[proof[6], proof[7]],
signals
),
"Invalid Proof"
);
// Extract the username chunks from the signals.
// Note that this is not relevant now as username can fit in one signal
// TODO: Simplify signal uint to string conversion
uint256[] memory usernamePack = new uint256[](usernameLengthInSignals);
for (uint256 i = usernameIndexInSignals; i < (usernameIndexInSignals + usernameLengthInSignals); i++) {
usernamePack[i - usernameIndexInSignals] = signals[i];
}
// Effects: Mint token
uint256 tokenId = tokenCounter.current() + 1;
// TODO: Change bytesInPackedBytes * usernameLengthInSignals -> usernameLengthInSignals
string memory messageBytes = StringUtils.convertPackedBytesToString(
usernamePack,
bytesInPackedBytes * usernameLengthInSignals,
bytesInPackedBytes
);
tokenIDToName[tokenId] = messageBytes;
_mint(msg.sender, tokenId);
tokenCounter.increment();
}
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal {
require(
from == address(0),
"Cannot transfer - VerifiedEmail is soulbound"
);
}
}