You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When a user tries to connect with the app via Walletconnect they receive a frontend error "Uncaught (in promise) DOMException: Failed to execute 'transaction' on 'IDBDatabase': One of the specified object stores was not found."
When we run the Next.js app locally, it works perfectly fine. We have cleared the cache and tried to use it in incognito but that didn't solve the issue.
Expected Behavior
It should show you the modal where u can choose a wallet to connect with.
Steps To Reproduce
Install the following packages:
"@web3-onboard/core": "^2.22.2",
"@web3-onboard/walletconnect": "^2.6.1",
Uncaught (in promise) DOMException: Failed to execute 'transaction' on 'IDBDatabase': One of the specified object stores was not found.
The code:
functioncreateStore(o, s) {
let a = indexedDB.open(o);
a.onupgradeneeded = ()=>a.result.createObjectStore(s);let u = promisifyRequest(a);return (o,a)=>u.then(u=>a(u.transaction(s, o).objectStore(s)))
}
functiondefaultGetStore() {
return u || (u = createStore("keyval-store", "keyval")),
u
}
Anything else?
No response
Sanity Check
If this is a build issue, I have included my build config. If this is a runtime issue, I have included reproduction steps and/or a Minimal, Reproducible Example.
The text was updated successfully, but these errors were encountered:
Current Behavior
When a user tries to connect with the app via Walletconnect they receive a frontend error "Uncaught (in promise) DOMException: Failed to execute 'transaction' on 'IDBDatabase': One of the specified object stores was not found."
When we run the Next.js app locally, it works perfectly fine. We have cleared the cache and tried to use it in incognito but that didn't solve the issue.
Expected Behavior
It should show you the modal where u can choose a wallet to connect with.
Steps To Reproduce
"@web3-onboard/core": "^2.22.2",
"@web3-onboard/walletconnect": "^2.6.1",
What package is effected by this issue?
@web3-onboard/walletconnect
Is this a build or a runtime issue?
Runtime
Package Version
2.6.1
Node Version
18.x
What browsers are you seeing the problem on?
No response
Relevant log output
Anything else?
No response
Sanity Check
The text was updated successfully, but these errors were encountered: