
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
@gotabit/react
Advanced tools
React provider and hooks for Gotabit.
import { GotabitProvider, useGotabitReact } from '@gotabit/react'
import { initializeConnectorWrapper } from '@gotabit/react'
import { KeplrWallet } from '@gotabit/wallet-keplr'
import { Walletconnect } from '@gotabit/wallet-walletconnect'
export const [walletconnectConnector, walletconnectHooks] =
initializeConnectorWrapper(() =>
Walletconnect.init('test', {
logger: 'debug',
relayUrl: 'wss://relay.gotabit.dev',
projectId: '2c921904d8ebc91517cd11c1cc4a267f',
metadata: {
name: 'Gotabit SDK WalletConnect test',
description: 'Gotabit SDK WalletConnect test',
url: 'https://sdk.gotabit.dev',
icons: [`https:\/\/res.gotabit.io\/svg\/icon.svg`],
},
}),
)
export const [keplrConnector, keplrHooks] = initializeConnectorWrapper(() =>
KeplrWallet.init('test'),
)
const {
useAccount: useKeplrAccount,
useActive: useKeplrActive,
useWallet: useKeplrWallet,
useDisconnect: useKeplrDisconnect,
} = keplrHooks
const {
useAccount: useWalletconnectAccount,
useActive: useWalletconnectActive,
useDisconnect: useWalletconnectDisconnect,
} = walletconnectHooks
function Card({ children }: { children: React.ReactNode }) {
return (
<div
style={{
padding: '16px',
margin: '24px',
border: '1px solid #000',
}}
>
{children}
</div>
)
}
function KeplrCard() {
const active = useKeplrActive()
const account = useKeplrAccount()
const wallet = useKeplrWallet()
const disconnect = useKeplrDisconnect()
const handleSwitch = (chain: 'main' | 'test') => {
wallet?.switchChain(chain)
}
return (
<Card>
<button onClick={keplrConnector}>connect keplr</button>
<button onClick={disconnect}>disconnect</button>
<p>active: {active ? 'true' : 'false'}</p>
<p>account: {account}</p>
<button onClick={() => handleSwitch('test')}>
Switch Keplr wallet to test
</button>
<button onClick={() => handleSwitch('main')}>
Switch Keplr wallet to main
</button>
</Card>
)
}
function WalletConnectCard() {
const active = useWalletconnectActive()
const account = useWalletconnectAccount()
const disconnect = useWalletconnectDisconnect()
return (
<Card>
<button onClick={walletconnectConnector}>connect walletconnect</button>
<p>active: {active ? 'true' : 'false'}</p>
<p>account: {account}</p>
<button onClick={disconnect}>disconnect</button>
</Card>
)
}
function SelectedState() {
const { active, accounts } = useGotabitReact()
return (
<Card>
<button>Current state</button>
<p>active: {active ? 'true' : 'false'}</p>
<p>account: {accounts?.[0]}</p>
</Card>
)
}
function App() {
return (
<GotabitProvider>
<SelectedState />
<KeplrCard />
<WalletConnectCard />
</GotabitProvider>
)
}
Code built with the help of these related projects:
FAQs
React provider and hooks for Gotabit
The npm package @gotabit/react receives a total of 18 weekly downloads. As such, @gotabit/react popularity was classified as not popular.
We found that @gotabit/react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.