ParaPortSDK calculates whether funds are missing on the destination chain and creates a long-lived TeleportSession for the user.session:created, session:updated, session:completed, session:failed) are emitted through a typed event bus.XCMBridge leverages @paraspell/sdk to simulate routes, estimate fees on both endpoints, and dry-run transfers before proposing them.expected, exact, only) so integrators can decide how aggressive the auto-top-up should be.BalanceService fetches transferable balances across all configured chains, re-encoding addresses per SS58 format automatically.waitForFunds uses exponential backoff (p-retry) to watch balances until the destination amount is ready or a timeout occurs.@paraport/vue exposes a single <Paraport> component with an integrated layout, theming via CSS variables, and event callbacks.@paraport/sdk mounts that component into any DOM target, making it easy to add auto-teleport to static pages or other frameworks.@paraport/react wraps the SDK in a hook-friendly component, managing mount/unmount and prop updates for you.ParaPortSDK directly for headless integrations or advanced control. All types (TeleportSession, Quote, TeleportEventPayload) are exported for reuse.blockExplorerOf, getRouteChains, and convertToBigInt help with formatting, routing checks, and parameter handling.LoggerService) lets you raise or lower verbosity per environment.@paraport/static provides Chains, Assets, and curated RPC endpoint lists (PROVIDERS) so you can bootstrap without hunting for infrastructure.InvalidTeleportParamsError, InvalidSessionError, SDKInitializationError) give immediate feedback when integrations misconfigure the SDK.retrySession helper so users can attempt the flow again without reloading the page.TeleportDetails.events) and transaction list, which you can consume for analytics or custom UI.eventemitter3, so subscribing/unsubscribing is cheap and you can bridge events into your own state library.Ready to go deeper into how auto-teleporting works under the hood?
Deep Dive into Auto-Teleport