Skip to content

Commit

Permalink
fix: binancew3w provider
Browse files Browse the repository at this point in the history
Signed-off-by: Gregory Hill <[email protected]>
  • Loading branch information
gregdhill committed Sep 18, 2024
1 parent 0ef5c49 commit 9be1e67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sats-wagmi/src/connectors/unisat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ declare global {
unisat: UniSatBase & UniSatExt;
};
binancew3w: {
unisat: UniSatBase;
bitcoin: UniSatBase;
};
}
}
Expand Down Expand Up @@ -111,7 +111,7 @@ class UnisatConnector extends SatsConnector {
case 'bitkeep':
return window?.bitkeep?.unisat || undefined;
case 'binancew3w':
return window?.binancew3w?.unisat || undefined;
return window?.binancew3w?.bitcoin || undefined;
case 'unisat':
return window?.unisat || undefined;
}
Expand Down

0 comments on commit 9be1e67

Please sign in to comment.