-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
210 lines (178 loc) · 6.49 KB
/
index.js
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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
const { getContract } = require("viem");
const {
getCoreContractAddress,
publicClient,
SERVICE_CONTEXT,
NOW_TIMESTAMP,
} = require("./constants");
const {
federatedAttestationsABI,
odisPaymentsABI,
stableTokenABI,
} = require("@celo/abis");
const { OdisUtils } = require("@celo/identity");
class SocialConnectIssuer {
walletClient;
authSigner;
federatedAttestationsContractAddress;
federatedAttestationsContract;
odisPaymentsContractAddress;
odisPaymentsContract;
stableTokenContractAddress;
stableTokenContract;
serviceContext;
initialized = false;
constructor(walletClient, authSigner) {
this.walletClient = walletClient;
this.authSigner = authSigner;
this.serviceContext =
OdisUtils.Query.getServiceContext(SERVICE_CONTEXT);
}
async initialize() {
this.federatedAttestationsContractAddress =
await getCoreContractAddress("FederatedAttestations");
this.federatedAttestationsContract = getContract({
address: this.federatedAttestationsContractAddress,
abi: federatedAttestationsABI,
// Needed for lookup
publicClient,
// Needed for registeration and de-registration
walletClient: this.walletClient,
});
this.odisPaymentsContractAddress = await getCoreContractAddress(
"OdisPayments"
);
this.odisPaymentsContract = getContract({
address: this.odisPaymentsContractAddress,
abi: odisPaymentsABI,
walletClient: this.walletClient,
});
this.stableTokenContractAddress = await getCoreContractAddress(
"StableToken"
);
this.stableTokenContract = getContract({
address: this.stableTokenContractAddress,
abi: stableTokenABI,
walletClient: this.walletClient,
});
this.initialized = true;
}
async #getObfuscatedId(plaintextId, identifierType) {
// TODO look into client side blinding
const { obfuscatedIdentifier } =
await OdisUtils.Identifier.getObfuscatedIdentifier(
plaintextId,
identifierType,
this.walletClient.account.address,
this.authSigner,
this.serviceContext
);
return obfuscatedIdentifier;
}
async #checkAndTopUpODISQuota() {
const remainingQuota = await this.checkODISQuota();
if (remainingQuota < 1) {
// TODO make threshold a constant
let approvalTxHash =
await this.stableTokenContract.write.increaseAllowance([
this.odisPaymentsContractAddress,
ONE_CENT_CUSD, // TODO we should increase by more
]);
let approvalTxReceipt =
await publicClient.waitForTransactionReceipt({
hash: approvalTxHash,
});
let odisPaymentTxHash =
await this.odisPaymentsContract.write.payInCUSD([
this.walletClient.account,
ONE_CENT_CUSD, // TODO we should increase by more
]);
let odisPaymentReceipt =
await publicClient.waitForTransactionReceipt({
hash: odisPaymentTxHash,
});
}
}
async getObfuscatedIdWithQuotaRetry(plaintextId, identifierType) {
if (this.initialized) {
try {
return await this.#getObfuscatedId(plaintextId, identifierType);
} catch {
await this.#checkAndTopUpODISQuota();
return this.#getObfuscatedId(plaintextId, identifierType);
}
}
throw new Error("SocialConnect instance not initialized");
}
async registerOnChainIdentifier(plaintextId, identifierType, address) {
if (this.initialized) {
const obfuscatedId = await this.getObfuscatedIdWithQuotaRetry(
plaintextId,
identifierType
);
const hash =
await this.federatedAttestationsContract.write.registerAttestationAsIssuer(
[
// TODO check if there are better code patterns for sending txs
obfuscatedId,
address,
NOW_TIMESTAMP,
]
);
const receipt = await publicClient.waitForTransactionReceipt({
hash,
});
return receipt;
}
throw new Error("SocialConnect instance not initialized");
}
async deregisterOnChainIdentifier(plaintextId, identifierType, address) {
if (this.initialized) {
const obfuscatedId = await this.getObfuscatedIdWithQuotaRetry(
plaintextId,
identifierType
);
const hash =
await this.federatedAttestationsContract.write.revokeAttestation(
[obfuscatedId, this.walletClient.account.address, address]
);
const receipt = await publicClient.waitForTransactionReceipt({
hash,
});
return receipt;
}
throw new Error("SocialConnect instance not initialized");
}
async checkODISQuota() {
if (this.initialized) {
const { remainingQuota } = await OdisUtils.Quota.getPnpQuotaStatus(
this.walletClient.account.address,
this.authSigner,
this.serviceContext
);
console.log("Remaining Quota", remainingQuota);
return remainingQuota;
}
throw new Error("SocialConnect instance not initialized");
}
async lookup(plaintextId, identifierType, issuerAddresses) {
if (this.initialized) {
const obfuscatedId = await this.getObfuscatedIdWithQuotaRetry(
plaintextId,
identifierType
);
const attestations =
await this.federatedAttestationsContract.read.lookupAttestations(
[obfuscatedId, issuerAddresses]
);
return {
accounts: attestations[1], // Viem returns data as is from contract not in JSON
obfuscatedId,
};
}
throw new Error("SocialConnect instance not initialized");
}
}
module.exports = {
SocialConnectIssuer,
};