Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix cursor bugs
  • Loading branch information
alexandratran committed Nov 11, 2025
commit 130ad9d63ea62c90b46e3b5673f2eccb838f1799
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ async function watchTransaction(txHash) {
return new Promise((resolve, reject) => {
const checkTransaction = async () => {
try {
const tx = await evmClient.request({
const tx = await provider.request({
method: "eth_getTransactionReceipt",
params: [txHash],
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ async function connectWallet() {
// Disconnect wallet
async function disconnectWallet() {
try {
await provider.terminate()
await evmClient.terminate()
} catch (err) {
console.error("Error with disconnecting:", err)
}
Expand Down