npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@arthur2079/provider-okx

v1.1.0

Published

OKX Wallet integration for hub. [Homepage](https://www.okx.com/web3) | [Docs](https://www.okx.com/web3/build/docs)

Readme

OKX Wallet

OKX Wallet integration for hub.
Homepage | Docs

More about implementation status can be found here.

Implementation notes/limitations

Group

✅ Solana

  • Fully supported in this integration.
  • No known limitations.

⚠️ EVM

Supported networks :

  • Ethereum
  • BSC
  • Polygon
  • Fantom
  • Arbitrum
  • Optimism
  • Cronos
  • Boba
  • Gnosis
  • Moonbeam
  • Moonriver
  • Harmony
  • Avalanche C-Chain

⚠️ UTXO Chains

The wallet only supports bitcoin.

Feature

⚠️ Connect and AutoConnect

For Tron, connecting on page load — or disconnecting and reconnecting within the app — returns the first account you connected, not the account you last switched to. The OKX extension resets the Tron address in these cases and gives no way to recover the active one; it corrects itself only once you switch accounts in the wallet.

If you sign a transaction while that wrong account is selected, the OKX wallet rejects it with a "Transaction Unavailable" error.

⚠️ Disconnect

Disconnecting from evm also disconnects solana, tron, utxo and sui. However, only tron and sui receive the disconnect event message. solana and utxo will still appear as connected namespaces because they do not receive the disconnect event; they only disconnect after a page refresh. The disconnect function will not work for this wallet, as it attempts to invoke disconnect on the connect method for private key imported wallets. If the user disconnects the dApp from the wallet itself, we won't disconnect ourself. But we will get disconnected after refreshing the page. If the user connects the wallet to one account, switches to another account, and then disconnects one of the two from the wallet, the dApp automatically switches to the remaining account that wasn’t disconnected.

Here’s the updated Switch Account section with a concise mention that connection order affects switching accounts:


⚠️ Switch Account

Connection order also affects this behavior depending on which namespace was connected first, some account updates may not propagate correctly across other namespaces. As a result, previously connected namespaces will not update automatically and require a manual disconnect and reconnect to sync the correct account.

Additionally, calling connect on a namespace that was already connected does not return the address of the newly selected account. To avoid leaving the user in an inconsistent state, we invoke a full wallet disconnect when the user disconnects the wallet from the provider. An evm account switch might not be detected.


⚠️ Auto Connect

On auto connect in sui (e.g. page reload), the wallet reconnects to the account that was first connected, not the account the user last switched to. If the user connects one account, switches to another in the wallet, and the dApp later reconnects, the silent reconnect resolves the originally connected account rather than the currently active one. There is no client-side workaround, as the wallet exposes no way to read the active account at reconnect time.


More wallet information can be found in readme.md.