@opendatalabs/vana-sdk
Version:
A TypeScript library for interacting with Vana Network smart contracts.
10 lines (9 loc) • 471 B
TypeScript
/**
* Browser-specific platform adapters entry point
*
* This module provides browser-safe platform utilities without Node.js dependencies.
*/
export { BrowserPlatformAdapter } from "./platform/browser";
export type { VanaPlatformAdapter } from "./platform/interface";
export { createBrowserPlatformAdapter, createPlatformAdapterSafe, } from "./platform/browser-only";
export { detectPlatform, isPlatformSupported, getPlatformCapabilities, } from "./platform/utils";