Interested in stablecoins? We’ve released a comprehensive playbook for fintechs and builders exploring digital dollars.
Build with the tools you know and love
We have SDKs and libraries for everything you need and we're constantly adding support for more.

Install our SDK in minutes!
2
Install the Dynamic NPM package
This takes a few seconds.
3
Set up your React snippet and customize
Once you set up your snippet, you can further customize things within your developer dashboard.
npm i viem @dynamic-labs/sdk-react-core @dynamic-labs/ethereum
>
import {
DynamicContextProvider,
DynamicWidget,
} from "@dynamic-labs/sdk-react-core";
import { EthereumWalletConnectors } from "@dynamic-labs/ethereum";
export default function App() {
return (
<DynamicContextProvider
settings={{
// Find your environment id at https://app.dynamic.xyz/dashboard/developer
environmentId: "REPLACE-WITH-YOUR-ENVIRONMENT-ID",
walletConnectors: [EthereumWalletConnectors],
}}
>
<DynamicWidget />
</DynamicContextProvider>
);
}
npm i @dynamic-labs/viem-extension@alpha @dynamic-labs/client@alpha @dynamic-labs/react-native-extension@alpha @dynamic-labs/react-hooks@alpha react-native-webview expo-web-browser expo-linking expo-secure-store
>
import { createClient } from "@dynamic-labs/client";
import { ReactNativeExtension } from "@dynamic-labs/react-native-extension";
import { ViemExtension } from "@dynamic-labs/viem-extension";
export const dynamicClient = createClient({
// Find your environment id at https://app.dynamic.xyz/dashboard/developer
environmentId: "REPLACE-WITH-YOUR-ENVIRONMENT-ID", // Optional:
appLogoUrl: "https://demo.dynamic.xyz/favicon-32x32.png",
appName: "Dynamic Demo",
})
.extend(ReactNativeExtension())
.extend(ViemExtension());
export function App() {
return (
<>
<dynamicClient.reactNative.WebView /> <SafeAreaView>
<Text>Hello, world!</Text>
</SafeAreaView>
</>
);
}
flutter pub add dynamic_sdk dynamic_sdk_web3dart
>
import 'package:dynamic_sdk/dynamic_sdk.dart';
void main() {
WidgetsFlutterBinding.ensureInitialized();
DynamicSDK.init(
props: ClientProps(
// Find your environment id at https://app.dynamic.xyz/dashboard/developer
environmentId: 'REPLACE-WITH-YOUR-ENVIRONMENT-ID', // Optional:
appLogoUrl: 'https://demo.dynamic.xyz/favicon-32x32.png',
appName: 'Dynamic Demo',
),
);
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Flutter Demo',
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: Stack(
children: [
// Make sure the SDK is ready before using it
StreamBuilder<bool?>(
stream: DynamicSDK.instance.sdk.readyChanges,
builder: (context, snapshot) {
final sdkReady = snapshot.data ?? false;
return sdkReady
? const MyHomePage(title: 'Flutter Demo Home Page')
: const SizedBox.shrink();
},
),
// DynamicSDK widget must be available all the time
DynamicSDK.instance.dynamicWidget,
],
),
);
}
}
import DynamicSwiftSDK
let config = DynamicClientConfig(
environmentId: "<your env id>"
)
let dynamicClient = createDynamicClient(config: config)
// Authenticate a user
let otpVerification: OTPVerification = try await sendEmailOtp(
client: dynamicClient,
email: userEmail
)
let authenticatedUser: SdkUser = try await verifyOtp(
otpVerification: otpVerification,
verificationToken: otpCode
)
// Create user's wallet
let accountAddress = try await createWalletAccount(client: dynamicClient)
Build anywhere without friction
One SDK, infinite possibilities
Learn more
Chains
All of the tools that high-throughput chains need. Built for networks that prioritize security, interoperability, and scale.
Learn more
Stablecoin Payments
Our SDK takes care of the complexity, so you can stay focused on building secure and seamless payment flows.
Learn more
Consumer Apps
Dynamic’s embedded wallets let you onboard both experienced crypto users and newcomers instantly.
Learn more
Bridges
Abstract away wallet complexity, unify user sessions, and support bridges with robust security & chain support.
Learn more
Marketplaces
Build and scale marketplaces with fast user onboarding, embedded wallets, multi-wallet linking, and support for every major chain.
And more!
RWAs, Gaming, DeFi, and anything you can imagine.