You're Invited:Meet the Socket Team at RSAC and BSidesSF 2026, March 23–26.RSVP
Socket
Book a DemoSign in
Socket

@dynamic-labs-connectors/xverse-starknet

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dynamic-labs-connectors/xverse-starknet

## Integrating with the Dynamic SDK

latest
npmnpm
Version
4.5.0
Version published
Maintainers
1
Created
Source

xverse-starknet

Integrating with the Dynamic SDK

Install the connector

npm install @dynamic-labs-connectors/xverse-starknet

Use the connector

To integrate with the Dynamic SDK, you just need to pass XverseStarknetWalletConnectors to the walletConnectors prop of the DynamicContextProvider component.

import { DynamicContextProvider } from '@dynamic-labs/sdk-react-core';
import { XverseStarknetWalletConnectors } from '@dynamic-labs-connectors/xverse-starknet';

const App = () => {
  return (
    <DynamicContextProvider
      settings={{
        environmentId: 'REPLACE-WITH-YOUR-ENVIRONMENT-ID',
        walletConnectors: [XverseStarknetWalletConnectors],
      }}
    >
      <DynamicWidget />
    </DynamicContextProvider>
  );
};

Building

Run nx build @dynamic-labs-connectors/xverse-starknet to build the library.

Running unit tests

Run nx test @dynamic-labs-connectors/xverse-starknet to execute the unit tests via Jest.

FAQs

Package last updated on 21 Oct 2025

Did you know?

Socket

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.

Install

Related posts