Convert subscriber uuid to bytes
This commit is contained in:
parent
04b2eeb77a
commit
a63bbdd1c3
@ -38,9 +38,8 @@ const Thanks: React.FC = () => {
|
|||||||
throw new Error("Token has expired");
|
throw new Error("Token has expired");
|
||||||
}
|
}
|
||||||
|
|
||||||
const uuidBuffer = Buffer.from(decoded.subscriber_id.replace(/-/g, ''), 'hex');
|
const subscriberIdBytes = ethers.utils.toUtf8Bytes(decoded.subscriber_id)
|
||||||
|
const subscriberIdHash = ethers.utils.sha256(subscriberIdBytes);
|
||||||
const subscriberIdHash = ethers.utils.sha256(uuidBuffer);
|
|
||||||
|
|
||||||
navigate('/connect-wallet', {
|
navigate('/connect-wallet', {
|
||||||
state:{
|
state:{
|
||||||
|
Loading…
Reference in New Issue
Block a user