2023-06-20 22:25:25 +00:00
import * as utils from "https://unpkg.com/@waku/utils@0.0.8/bundle/bytes.js" ;
2023-04-27 23:33:25 +00:00
import {
createEncoder ,
createDecoder ,
waitForRemotePeer ,
2023-06-20 22:25:25 +00:00
createLightNode ,
} from "https://unpkg.com/@waku/sdk@0.0.16/bundle/index.js" ;
2023-04-27 23:33:25 +00:00
import { protobuf } from "https://taisukef.github.io/protobuf-es.js/dist/protobuf-es.js" ;
import {
create ,
2023-05-17 20:07:55 +00:00
IdentityCredential ,
2023-04-27 23:33:25 +00:00
RLNDecoder ,
RLNEncoder ,
RLNContract ,
2023-05-11 21:30:23 +00:00
} from "https://unpkg.com/@waku/rln@0.1.1/bundle/index.js" ;
2023-04-27 23:33:25 +00:00
import { ethers } from "https://unpkg.com/ethers@5.7.2/dist/ethers.esm.min.js" ;
const ContentTopic = "/toy-chat/2/luzhou/proto" ;
// Protobuf
const ProtoChatMessage = new protobuf . Type ( "ChatMessage" )
. add ( new protobuf . Field ( "timestamp" , 1 , "uint64" ) )
. add ( new protobuf . Field ( "nick" , 2 , "string" ) )
. add ( new protobuf . Field ( "text" , 3 , "bytes" ) ) ;
2023-05-17 20:07:55 +00:00
const rlnDeployBlk = 3193048 ;
const rlnAddress = "0x9C09146844C1326c2dBC41c451766C7138F88155" ;
2023-04-27 23:33:25 +00:00
const SIGNATURE _MESSAGE =
"The signature of this message will be used to generate your RLN credentials. Anyone accessing it may send messages on your behalf, please only share with the RLN dApp" ;
run ( )
. then ( ( ) => {
console . log ( "Successfully started application." ) ;
} )
. catch ( ( err ) => {
console . error ( "Failed at starting application with " , err . message ) ;
} ) ;
async function run ( ) {
const ui = initUI ( ) ;
const rln = await initRLN ( ui ) ;
await initWaku ( ui , rln ) ;
}
async function initRLN ( ui ) {
const result = {
encoder : undefined ,
rlnInstance : undefined ,
2023-05-11 21:30:23 +00:00
contract : undefined ,
2023-04-27 23:33:25 +00:00
} ;
const provider = new ethers . providers . Web3Provider ( window . ethereum , "any" ) ;
ui . setRlnStatus ( "WASM Blob download in progress..." ) ;
const rlnInstance = await create ( ) ;
ui . setRlnStatus ( "WASM Blob download in progress... done!" ) ;
2023-05-11 21:30:23 +00:00
const rlnContract = new RLNContract (
rlnInstance , {
2023-04-27 23:33:25 +00:00
address : rlnAddress ,
provider : provider . getSigner ( ) ,
} ) ;
2023-05-11 21:30:23 +00:00
result . contract = rlnContract ;
2023-04-27 23:33:25 +00:00
// Wallet logic
window . ethereum . on ( "accountsChanged" , ui . setAccount ) ;
window . ethereum . on ( "chainChanged" , ( chainId ) => {
const id = parseInt ( chainId , 16 ) ;
2023-05-17 20:07:55 +00:00
ui . disableIfNotSepolia ( id ) ;
2023-04-27 23:33:25 +00:00
} ) ;
ui . onConnectWallet ( async ( ) => {
try {
const accounts = await provider . send ( "eth_requestAccounts" , [ ] ) ;
ui . setAccount ( accounts ) ;
const network = await provider . getNetwork ( ) ;
2023-05-17 20:07:55 +00:00
ui . disableIfNotSepolia ( network . chainId ) ;
2023-04-27 23:33:25 +00:00
} catch ( e ) {
console . log ( "No web3 provider available" , e ) ;
}
} ) ;
ui . onRetrieveDetails ( async ( ) => {
const filter = rlnContract . contract . filters . MemberRegistered ( ) ;
ui . disableRetrieveButton ( ) ;
await rlnContract . fetchMembers ( rlnInstance , { fromBlock : rlnDeployBlk } ) ;
ui . enableRetrieveButton ( ) ;
rlnContract . subscribeToMembers ( rlnInstance ) ;
const last = rlnContract . members . at ( - 1 ) ;
if ( last ) {
ui . setLastMember ( last . index , last . pubkey ) ;
}
// make sure we have subscriptions to keep updating last item
rlnContract . contract . on ( filter , ( _pubkey , _index , event ) => {
ui . setLastMember ( event . args . index , event . args . pubkey ) ;
} ) ;
} ) ;
let signature ;
let membershipId ;
2023-05-17 20:07:55 +00:00
let credentials ;
2023-04-27 23:33:25 +00:00
2023-05-17 20:07:55 +00:00
ui . onManualImport ( ( membershipId , credentials ) => {
2023-04-27 23:33:25 +00:00
result . encoder = new RLNEncoder (
createEncoder ( {
ephemeral : false ,
contentTopic : ContentTopic ,
} ) ,
rlnInstance ,
membershipId ,
2023-05-17 20:07:55 +00:00
credentials
2023-04-27 23:33:25 +00:00
) ;
2023-05-17 20:07:55 +00:00
ui . setMembershipInfo ( membershipId , credentials ) ;
2023-04-27 23:33:25 +00:00
ui . enableDialButton ( ) ;
} ) ;
ui . onWalletImport ( async ( ) => {
const signer = provider . getSigner ( ) ;
signature = await signer . signMessage ( SIGNATURE _MESSAGE ) ;
2023-05-17 20:07:55 +00:00
credentials = await rlnInstance . generateSeededIdentityCredential ( signature ) ;
2023-04-27 23:33:25 +00:00
2023-05-17 20:07:55 +00:00
const idCommitment = ethers . utils . hexlify ( credentials . IDCommitment ) ;
2023-04-27 23:33:25 +00:00
rlnContract . members . forEach ( ( m ) => {
if ( m . pubkey . _hex === idCommitment ) {
membershipId = m . index . toString ( ) ;
}
} ) ;
if ( membershipId ) {
result . encoder = new RLNEncoder (
createEncoder ( {
ephemeral : false ,
contentTopic : ContentTopic ,
} ) ,
rlnInstance ,
membershipId ,
2023-05-17 20:07:55 +00:00
credentials
2023-04-27 23:33:25 +00:00
) ;
}
2023-05-17 20:07:55 +00:00
ui . setMembershipInfo ( membershipId , credentials ) ;
2023-04-27 23:33:25 +00:00
const network = await provider . getNetwork ( ) ;
2023-05-17 20:07:55 +00:00
ui . enableRegisterButtonForSepolia ( network . chainId ) ;
2023-04-27 23:33:25 +00:00
} ) ;
ui . onRegister ( async ( ) => {
ui . setRlnStatus ( "Trying to register..." ) ;
const event = signature
2023-05-17 20:07:55 +00:00
? await rlnContract . registerWithSignature ( rlnInstance , signature )
: await rlnContract . registerWithKey ( credentials ) ;
2023-04-27 23:33:25 +00:00
// Update membershipId
membershipId = event . args . index . toNumber ( ) ;
console . log (
"Obtained index for current membership credentials" ,
membershipId
) ;
ui . setRlnStatus ( "Successfully registered." ) ;
2023-05-17 20:07:55 +00:00
ui . setMembershipInfo ( membershipId , credentials ) ;
2023-04-27 23:33:25 +00:00
ui . enableDialButton ( ) ;
} ) ;
return result ;
}
async function initWaku ( ui , rln ) {
ui . setWakuStatus ( "Creating Waku node." ) ;
const node = await createLightNode ( ) ;
ui . setWakuStatus ( "Starting Waku node." ) ;
await node . start ( ) ;
ui . setWakuStatus ( "Waku node started." ) ;
const verifyMessage = ( message ) => {
if ( message . proofState === "verifying..." ) {
try {
console . log ( "Verifying proof without roots" ) ;
console . time ( "proof_verify_timer" ) ;
2023-05-11 21:30:23 +00:00
const res = message . verify ( rln . contract . roots ( ) ) ;
2023-04-27 23:33:25 +00:00
console . timeEnd ( "proof_verify_timer" ) ;
console . log ( "proof verified without roots" , res ) ;
if ( res === undefined ) {
message . proofState = "no proof attached" ;
} else if ( res ) {
message . proofState = "verified." ;
} else {
message . proofState = "invalid!" ;
}
} catch ( e ) {
message . proofState = "Error encountered, check console" ;
console . error ( "Error verifying proof:" , e ) ;
}
console . log ( "Verifying proof with roots" , message . verify ( ) ) ;
}
} ;
const onFilterMessage = ( wakuMessage ) => {
const { timestamp , nick , text } = ProtoChatMessage . decode (
wakuMessage . payload
) ;
const time = new Date ( ) ;
time . setTime ( Number ( timestamp ) * 1000 ) ;
if ( wakuMessage . rateLimitProof ) {
console . log ( "Proof received:" , wakuMessage . rateLimitProof ) ;
}
wakuMessage . proofState = ! ! wakuMessage . rateLimitProof
? "verifying..."
: "no proof attached" ;
wakuMessage . msg = `
( $ { nick } )
< strong > $ { utils . bytesToUtf8 ( text ) } < / s t r o n g >
< i > [ $ { time . toISOString ( ) } ] < / i >
` ;
verifyMessage ( wakuMessage ) ;
ui . renderMessage ( wakuMessage ) ;
} ;
ui . onDial ( async ( ma ) => {
ui . setWakuStatus ( "Dialing peer." ) ;
// TODO(@weboko): move this fix into Waku.dial
const multiaddr = MultiformatsMultiaddr . multiaddr ( ma ) ;
await node . dial ( multiaddr , [ "filter" , "lightpush" ] ) ;
await waitForRemotePeer ( node , [ "filter" , "lightpush" ] ) ;
ui . setWakuStatus ( "Waku node connected." ) ;
const decoder = new RLNDecoder (
rln . rlnInstance ,
createDecoder ( ContentTopic )
) ;
await node . filter . subscribe ( decoder , onFilterMessage ) ;
ui . setWakuStatus ( "Waku node subscribed." ) ;
ui . enableChatButtonsIfNickSet ( ) ;
} ) ;
ui . onSendMessage ( async ( nick , text ) => {
const timestamp = new Date ( ) ;
const msg = ProtoChatMessage . create ( {
text ,
nick ,
timestamp : Math . floor ( timestamp . valueOf ( ) / 1000 ) ,
} ) ;
const payload = ProtoChatMessage . encode ( msg ) . finish ( ) ;
console . log ( "Sending message with proof..." ) ;
ui . setSendingStatus ( "sending..." ) ;
await node . lightPush . send ( rln . encoder , { payload , timestamp } ) ;
ui . setSendingStatus ( "sent!" ) ;
console . log ( "Message sent!" ) ;
ui . clearMessageArea ( ) ;
} ) ;
}
function initUI ( ) {
const statusSpan = document . getElementById ( "status" ) ;
// Blockchain Elements
const addressDiv = document . getElementById ( "address" ) ;
const connectWalletButton = document . getElementById ( "connect-wallet" ) ;
const latestMembershipSpan = document . getElementById ( "latest-membership-id" ) ;
const retrieveRLNDetailsButton = document . getElementById (
"retrieve-rln-details"
) ;
// Credentials Elements
const membershipIdInput = document . getElementById ( "membership-id" ) ;
2023-05-17 20:07:55 +00:00
const idSecretHashInput = document . getElementById ( "id-secret-hash" ) ;
2023-04-27 23:33:25 +00:00
const commitmentKeyInput = document . getElementById ( "commitment-key" ) ;
2023-06-20 22:25:25 +00:00
const idTrapdoorInput = document . getElementById ( "id-trapdoor" ) ;
const idNullifierInput = document . getElementById ( "id-nullifier" ) ;
2023-04-27 23:33:25 +00:00
const importManually = document . getElementById ( "import-manually-button" ) ;
const importFromWalletButton = document . getElementById (
"import-from-wallet-button"
) ;
const idDiv = document . getElementById ( "id" ) ;
2023-05-17 20:07:55 +00:00
const secretHashDiv = document . getElementById ( "secret-hash" ) ;
2023-04-27 23:33:25 +00:00
const commitmentDiv = document . getElementById ( "commitment" ) ;
2023-05-17 20:07:55 +00:00
const trapdoorDiv = document . getElementById ( "trapdoor" ) ;
const nullifierDiv = document . getElementById ( "nullifier" ) ;
2023-04-27 23:33:25 +00:00
const registerButton = document . getElementById ( "register-button" ) ;
// Waku Elements
const statusDiv = document . getElementById ( "waku-status" ) ;
const remoteMultiAddrInput = document . getElementById ( "remote-multiaddr" ) ;
const dialButton = document . getElementById ( "dial" ) ;
const nicknameInput = document . getElementById ( "nick-input" ) ;
const textInput = document . getElementById ( "textInput" ) ;
const sendButton = document . getElementById ( "sendButton" ) ;
const sendingStatusSpan = document . getElementById ( "sending-status" ) ;
const messagesList = document . getElementById ( "messagesList" ) ;
// set initial state
idDiv . innerText = "not registered yet" ;
registerButton . disabled = true ;
importManually . disabled = true ;
textInput . disabled = true ;
sendButton . disabled = true ;
dialButton . disabled = true ;
retrieveRLNDetailsButton . disabled = true ;
nicknameInput . disabled = true ;
// monitor & enable buttons if needed
membershipIdInput . onchange = enableManualImportIfNeeded ;
2023-05-17 20:07:55 +00:00
idSecretHashInput . onchange = enableManualImportIfNeeded ;
2023-04-27 23:33:25 +00:00
commitmentKeyInput . onchange = enableManualImportIfNeeded ;
2023-05-17 20:07:55 +00:00
idNullifierInput . onchange = enableManualImportIfNeeded ;
idTrapdoorInput . onchange = enableManualImportIfNeeded ;
2023-04-27 23:33:25 +00:00
function enableManualImportIfNeeded ( ) {
const isValuesPresent =
2023-05-17 20:07:55 +00:00
idSecretHashInput . value &&
2023-04-27 23:33:25 +00:00
commitmentKeyInput . value &&
2023-05-17 20:07:55 +00:00
idNullifierInput . value &&
idTrapdoorInput . value &&
2023-04-27 23:33:25 +00:00
membershipIdInput . value ;
if ( isValuesPresent ) {
importManually . disabled = false ;
}
}
nicknameInput . onchange = enableChatIfNeeded ;
nicknameInput . onblur = enableChatIfNeeded ;
function enableChatIfNeeded ( ) {
if ( nicknameInput . value ) {
textInput . disabled = false ;
sendButton . disabled = false ;
}
}
return {
// UI for RLN
setRlnStatus ( text ) {
statusSpan . innerText = text ;
} ,
2023-05-17 20:07:55 +00:00
setMembershipInfo ( id , credential ) {
2023-04-27 23:33:25 +00:00
idDiv . innerText = id || "not registered yet" ;
2023-05-17 20:07:55 +00:00
secretHashDiv . innerText = utils . bytesToHex ( credential . IDSecretHash ) ;
commitmentDiv . innerText = utils . bytesToHex ( credential . IDCommitment ) ;
nullifierDiv . innerText = utils . bytesToHex ( credential . IDNullifier ) ;
trapdoorDiv . innerText = utils . bytesToHex ( credential . IDTrapdoor ) ;
2023-04-27 23:33:25 +00:00
} ,
setLastMember ( index , pubkey ) {
try {
const idCommitment = ethers . utils . zeroPad (
ethers . utils . arrayify ( pubkey ) ,
32
) ;
const indexInt = index . toNumber ( ) ;
console . debug (
"IDCommitment registered in tree" ,
idCommitment ,
indexInt
) ;
latestMembershipSpan . innerHTML = indexInt ;
} catch ( err ) {
console . error ( err ) ; // TODO: the merkle tree can be in a wrong state. The app should be disabled
}
} ,
2023-05-17 20:07:55 +00:00
disableIfNotSepolia ( chainId ) {
if ( ! isSepolia ( chainId ) ) {
window . alert ( "Switch to Sepolia" ) ;
2023-04-27 23:33:25 +00:00
registerButton . disabled = true ;
this . disableRetrieveButton ( ) ;
} else {
this . enableRetrieveButton ( ) ;
}
} ,
enableRetrieveButton ( ) {
retrieveRLNDetailsButton . disabled = false ;
} ,
disableRetrieveButton ( ) {
retrieveRLNDetailsButton . disabled = true ;
} ,
2023-05-17 20:07:55 +00:00
enableRegisterButtonForSepolia ( chainId ) {
registerButton . disabled = isSepolia ( chainId ) ? false : true ;
2023-04-27 23:33:25 +00:00
} ,
setAccount ( accounts ) {
addressDiv . innerText = accounts . length ? accounts [ 0 ] : "" ;
} ,
onConnectWallet ( fn ) {
connectWalletButton . addEventListener ( "click" , async ( ) => {
await fn ( ) ;
importFromWalletButton . disabled = false ;
} ) ;
} ,
onRetrieveDetails ( fn ) {
retrieveRLNDetailsButton . addEventListener ( "click" , async ( ) => {
await fn ( ) ;
} ) ;
} ,
onManualImport ( fn ) {
importManually . addEventListener ( "click" , ( ) => {
2023-05-17 20:07:55 +00:00
const idTrapdoor = utils . hexToBytes ( idTrapdoorInput . value ) ;
const idNullifier = utils . hexToBytes ( idNullifierInput . value ) ;
2023-04-27 23:33:25 +00:00
const idCommitment = utils . hexToBytes ( commitmentKeyInput . value ) ;
2023-05-17 20:07:55 +00:00
const idSecretHash = utils . hexToBytes ( idSecretHashInput . value ) ;
2023-04-27 23:33:25 +00:00
const membershipId = membershipIdInput . value ;
2023-06-20 22:25:25 +00:00
const credentials = new IdentityCredential (
idTrapdoor ,
idNullifier ,
idSecretHash ,
idCommitment
) ;
2023-04-27 23:33:25 +00:00
2023-05-17 20:07:55 +00:00
fn ( membershipId , credentials ) ;
2023-04-27 23:33:25 +00:00
} ) ;
} ,
onWalletImport ( fn ) {
importFromWalletButton . addEventListener ( "click" , async ( ) => {
await fn ( ) ;
} ) ;
} ,
onRegister ( fn ) {
registerButton . addEventListener ( "click" , async ( ) => {
try {
registerButton . disabled = true ;
await fn ( ) ;
registerButton . disabled = false ;
} catch ( err ) {
alert ( err ) ;
registerButton . disabled = false ;
}
} ) ;
} ,
// UI for Waku
setWakuStatus ( text ) {
statusDiv . innerText = text ;
} ,
setSendingStatus ( text ) {
sendingStatusSpan . innerText = text ;
} ,
renderMessage ( message ) {
messagesList . innerHTML += ` <li> ${ message . msg } - [epoch: ${ message . epoch } , proof: ${ message . proofState } ]</li> ` ;
} ,
enableDialButton ( ) {
dialButton . disabled = false ;
} ,
enableChatButtonsIfNickSet ( ) {
if ( nicknameInput . value ) {
textInput . disabled = false ;
sendButton . disabled = false ;
}
} ,
onDial ( fn ) {
dialButton . addEventListener ( "click" , async ( ) => {
const multiaddr = remoteMultiAddrInput . value ;
if ( ! multiaddr ) {
this . setWakuStatus ( "Error: No multiaddr provided." ) ;
return ;
}
await fn ( multiaddr ) ;
nicknameInput . disabled = false ;
} ) ;
} ,
clearMessageArea ( ) {
textInput . value = null ;
setTimeout ( ( ) => {
this . setSendingStatus ( "" ) ;
} , 5000 ) ;
} ,
onSendMessage ( fn ) {
sendButton . addEventListener ( "click" , async ( ) => {
const nick = nicknameInput . value ;
const text = utils . utf8ToBytes ( textInput . value ) ;
await fn ( nick , text ) ;
} ) ;
} ,
} ;
}
2023-05-17 20:07:55 +00:00
function isSepolia ( id ) {
return id === 11155111 ;
2023-04-27 23:33:25 +00:00
}