Could not get result from torus nodes. Error occurred while getting current epoch

I am getting this error when trying to sign in to my web3 app.

What does it mean and how do I fix it. Its only just started occurring and not sure what ive changed if anything to make this happen.

My open login adapter

return new OpenloginAdapter({
			privateKeyProvider,
			loginSettings: {
				mfaLevel: "none",
			},
			adapterSettings: {
				clientId: process.env.NEXT_PUBLIC_WEB_3_AUTH_CLIENT_ID!,
				uxMode: "popup",
				whiteLabel: {
					appName: "",
					mode: "dark",
				},
				loginConfig: {
					jwt: {
						clientId: process.env.NEXT_PUBLIC_WEB_3_AUTH_CLIENT_ID!,
						verifier: process.env.NEXT_PUBLIC_WEB_3_AUTH_VERIFIER!,
						typeOfLogin: "jwt",
						name: "",
					},
				},
			},
		});

And how I connect to my verifier instance

			await web3AuthNoModal.connectTo(WALLET_ADAPTERS.OPENLOGIN, {
				loginProvider: "jwt",
				extraLoginOptions: {
					id_token: web3AuthToken, // in JWT Format
					verifierIdField: "sub", // same as your JWT Verifier ID
				},
			});

I have just checked to see if the token I am using is valid and using jwt.io with my private and public key it says its verified - so all I can assume its on web3auth side.

Screenshot 2024-05-04 at 10.46.18 AM

hi @chris2

Sorry for my late response. I hope you are doing well !

Can you share the version of the web3auth packages that you are using?

Thanks

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.