Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
6fbe545
migrate metamask connector to new sdk
adonesky1 Jan 7, 2026
159a350
package update
adonesky1 Jan 7, 2026
67013a6
wip
adonesky1 Jan 7, 2026
8d67eaf
more working
adonesky1 Jan 8, 2026
52bafcb
more working
adonesky1 Jan 8, 2026
288a667
Fix metamask connector
jiexi Jan 20, 2026
114cfbd
use connect-evm 0.3.0
jiexi Jan 22, 2026
17e1c44
fix package lock
jiexi Jan 22, 2026
054ad3f
adopt ConnectEvm.status change
jiexi Jan 22, 2026
f3ce613
Merge remote-tracking branch 'origin' into ad/migrate-metamask-connector
adonesky1 Jan 23, 2026
ea7e070
update package-lock.json
adonesky1 Jan 23, 2026
dda7b97
connect-evm bump
adonesky1 Jan 23, 2026
8e4a2c8
package-lock
jiexi Jan 23, 2026
0eac6bb
Merge remote-tracking branch 'origin' into ad/migrate-metamask-connector
adonesky1 Jan 23, 2026
b9c977a
cleanup
adonesky1 Jan 23, 2026
24e210d
more cleanup
adonesky1 Jan 23, 2026
5379c92
bump connect-evm 0.4.1
jiexi Jan 27, 2026
87da4b7
remove timeout hack
jiexi Jan 27, 2026
49ba588
bump connect-evm to 0.5.0
jiexi Mar 4, 2026
e56eb7f
Fix hex chain id usage
jiexi Mar 4, 2026
02da6c9
add iconUrl support
jiexi Mar 4, 2026
b2dacdf
expose UI options
jiexi Mar 4, 2026
76625eb
add display_uri
jiexi Mar 4, 2026
efd18ff
make sure no UI is shown
jiexi Mar 4, 2026
36479eb
revert this before merge
jiexi Mar 4, 2026
0ba1302
bump to connect-evm 0.8.0
jiexi Mar 16, 2026
42f1f7f
restore modalMode
jiexi Mar 16, 2026
142903b
Merge remote-tracking branch 'origin/master' into ad/migrate-metamask…
jiexi Mar 31, 2026
ed384ca
fix build issue
jiexi Mar 31, 2026
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
16 changes: 4 additions & 12 deletions demo/react-app-no-modal/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

269 changes: 2 additions & 267 deletions demo/vue-app-new/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions demo/vue-app-new/src/utils/constants.ts
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this needs to be undone before merge again

Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@ const TESTNET_RPC = import.meta.env.VITE_APP_SOLANA_TESTNET_RPC;
const DEVNET_RPC = import.meta.env.VITE_APP_SOLANA_DEVNET_RPC;

function rpcUrlToWsUrl(rpcUrl: string) {
if (!rpcUrl) throw new Error("Please configure https endpoint for solana rpc");
return rpcUrl.replace("https://", "wss://");
// if (!rpcUrl) throw new Error("Please configure https endpoint for solana rpc");
// return rpcUrl.replace("https://", "wss://");
return rpcUrl;
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

WebSocket URL conversion commented out, wsTarget gets wrong protocol

Medium Severity

The rpcUrlToWsUrl function has had its validation and URL conversion logic commented out and now just returns the input URL unchanged. This means the wsTarget fields in all three Solana network configurations (mainnet, testnet, devnet) will contain https:// URLs instead of wss:// WebSocket URLs. The function name still implies a protocol conversion that no longer happens. This looks like a temporary debugging change that was accidentally included in the commit.

Fix in Cursor Fix in Web

}

export const SOLANA_SUPPORTED_NETWORKS = {
Expand Down
1 change: 1 addition & 0 deletions demo/vue-app-new/vite.config.mts
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this needs to be undone before merge again

Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export default defineConfig(({ mode }) => {
mode,
server: {
port: 8080,
host: true,
},
plugins: [vue()],
resolve: {
Expand Down
Loading